var _ = Describe("service-access command", func() { var ( ui *testterm.FakeUI actor *testactor.FakeServiceActor requirementsFactory *testreq.FakeReqFactory serviceBroker1 models.ServiceBroker serviceBroker2 models.ServiceBroker authRepo *authenticationfakes.FakeAuthenticationRepository configRepo core_config.Repository deps command_registry.Dependency ) updateCommandDependency := func(pluginCall bool) { deps.Ui = ui deps.RepoLocator = deps.RepoLocator.SetAuthenticationRepository(authRepo) deps.ServiceHandler = actor deps.Config = configRepo command_registry.Commands.SetCommand(command_registry.Commands.FindCommand("service-access").SetDependency(deps, pluginCall)) } BeforeEach(func() { ui = &testterm.FakeUI{} actor = &testactor.FakeServiceActor{} requirementsFactory = &testreq.FakeReqFactory{LoginSuccess: true} authRepo = &authenticationfakes.FakeAuthenticationRepository{} configRepo = testconfig.NewRepositoryWithDefaults() }) runCommand := func(args ...string) bool { return testcmd.RunCliCommand("service-access", args, requirementsFactory, updateCommandDependency, false) }