1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
package primaryip
import (
"context"
"testing"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/assert"
"github.com/hetznercloud/cli/internal/testutil"
"github.com/hetznercloud/hcloud-go/v2/hcloud"
)
func TestUpdate(t *testing.T) {
fx := testutil.NewFixture(t)
defer fx.Finish()
cmd := updateCmd.CobraCommand(context.Background(), fx.Client, fx.TokenEnsurer)
primaryip := &hcloud.PrimaryIP{ID: 13}
fx.ExpectEnsureToken()
fx.Client.PrimaryIPClient.EXPECT().
Get(
gomock.Any(),
"13",
).
Return(
primaryip,
&hcloud.Response{},
nil,
)
fx.Client.PrimaryIPClient.EXPECT().
Update(
gomock.Any(),
primaryip,
hcloud.PrimaryIPUpdateOpts{
Name: "foobar",
},
).
Return(
&hcloud.PrimaryIP{ID: 13, Name: "foobar"},
&hcloud.Response{},
nil,
)
out, err := fx.Run(cmd, []string{"13", "--name=foobar"})
expOut := "Primary IP 13 updated\n"
assert.NoError(t, err)
assert.Equal(t, expOut, out)
}
|