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
|
package testutil
import (
"testing"
"github.com/golang/mock/gomock"
"github.com/spf13/cobra"
hcapi2_mock "github.com/hetznercloud/cli/internal/hcapi2/mock"
"github.com/hetznercloud/cli/internal/state"
)
// Fixture provides affordances for testing CLI commands.
type Fixture struct {
MockController *gomock.Controller
Client *hcapi2_mock.MockClient
ActionWaiter *state.MockActionWaiter
TokenEnsurer *state.MockTokenEnsurer
}
// NewFixture creates a new Fixture.
func NewFixture(t *testing.T) *Fixture {
ctrl := gomock.NewController(t)
return &Fixture{
MockController: ctrl,
Client: hcapi2_mock.NewMockClient(ctrl),
ActionWaiter: state.NewMockActionWaiter(ctrl),
TokenEnsurer: state.NewMockTokenEnsurer(ctrl),
}
}
// ExpectEnsureToken makes the mock TokenEnsurer expect a EnsureToken call.
func (f *Fixture) ExpectEnsureToken() {
f.TokenEnsurer.EXPECT().EnsureToken(gomock.Any(), gomock.Any()).Return(nil)
}
// Run runs the given cobra command with the given arguments and returns stdout output and a
// potential error.
func (f *Fixture) Run(cmd *cobra.Command, args []string) (string, error) {
cmd.SetArgs(args)
return CaptureStdout(cmd.Execute)
}
// Finish must be called after the test is finished, preferably via `defer` directly after
// creating the Fixture.
func (f *Fixture) Finish() {
f.MockController.Finish()
}
|