testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/cf/commands/application" "github.com/nttlabs/cli/cf/configuration/core_config" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("restart command", func() { var ( ui *testterm.FakeUI requirementsFactory *testreq.FakeReqFactory starter *testcmd.FakeApplicationStarter stopper *testcmd.FakeApplicationStopper config core_config.ReadWriter app models.Application ) BeforeEach(func() { ui = &testterm.FakeUI{} requirementsFactory = &testreq.FakeReqFactory{} starter = &testcmd.FakeApplicationStarter{} stopper = &testcmd.FakeApplicationStopper{} config = testconfig.NewRepositoryWithDefaults() app = models.Application{} app.Name = "my-app" app.Guid = "my-app-guid" })
"github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("space-users command", func() { var ( ui *testterm.FakeUI requirementsFactory *testreq.FakeReqFactory spaceRepo *testapi.FakeSpaceRepository userRepo *testapi.FakeUserRepository config core_config.ReadWriter ) BeforeEach(func() { config = testconfig.NewRepositoryWithDefaults() ui = &testterm.FakeUI{} requirementsFactory = &testreq.FakeReqFactory{} spaceRepo = &testapi.FakeSpaceRepository{} userRepo = &testapi.FakeUserRepository{} }) runCommand := func(args ...string) { testcmd.RunCommand(NewSpaceUsers(ui, config, spaceRepo, userRepo), args, requirementsFactory) }
testconfig "github.com/nttlabs/cli/testhelpers/configuration" testlogs "github.com/nttlabs/cli/testhelpers/logs" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("start command", func() { var ( ui *testterm.FakeUI defaultAppForStart = models.Application{} defaultInstanceResponses = [][]models.AppInstanceFields{} defaultInstanceErrorCodes = []string{"", ""} requirementsFactory *testreq.FakeReqFactory logsForTail []*logmessage.LogMessage logRepo *testapi.FakeLogsRepository ) getInstance := func(appGuid string) (instances []models.AppInstanceFields, apiErr error) { if len(defaultInstanceResponses) > 0 { instances = defaultInstanceResponses[0] if len(defaultInstanceResponses) > 1 { defaultInstanceResponses = defaultInstanceResponses[1:] } } if len(defaultInstanceErrorCodes) > 0 { errorCode := defaultInstanceErrorCodes[0] if len(defaultInstanceErrorCodes) > 1 {
"github.com/nttlabs/cli/cf/configuration/core_config" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("list-apps command", func() { var ( ui *testterm.FakeUI configRepo core_config.ReadWriter appSummaryRepo *testapi.FakeAppSummaryRepo requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = &testterm.FakeUI{} appSummaryRepo = &testapi.FakeAppSummaryRepo{} configRepo = testconfig.NewRepositoryWithDefaults() requirementsFactory = &testreq.FakeReqFactory{ LoginSuccess: true, TargetedSpaceSuccess: true, } }) runCommand := func() { cmd := NewListApps(ui, configRepo, appSummaryRepo)
"github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/cf/commands/domain" . "github.com/nttlabs/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("domains command", func() { var ( ui *testterm.FakeUI configRepo core_config.ReadWriter domainRepo *testapi.FakeDomainRepository requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = &testterm.FakeUI{} configRepo = testconfig.NewRepositoryWithDefaults() domainRepo = &testapi.FakeDomainRepository{} requirementsFactory = &testreq.FakeReqFactory{} }) runCommand := func(args ...string) { testcmd.RunCommand(NewListDomains(ui, configRepo, domainRepo), args, requirementsFactory) } Describe("requirements", func() {
testapi "github.com/nttlabs/cli/cf/api/fakes" . "github.com/nttlabs/cli/cf/commands/service" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("bind-service command", func() { var ( requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { requirementsFactory = &testreq.FakeReqFactory{} }) It("fails requirements when not logged in", func() { cmd := NewBindService(&testterm.FakeUI{}, testconfig.NewRepository(), &testapi.FakeServiceBindingRepo{}) testcmd.RunCommand(cmd, []string{"service", "app"}, requirementsFactory) Expect(testcmd.CommandDidPassRequirements).To(BeFalse()) }) Context("when logged in", func() { BeforeEach(func() {
"github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/cf/commands/service" . "github.com/nttlabs/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("update-user-provided-service test", func() { var ( ui *testterm.FakeUI configRepo core_config.ReadWriter serviceRepo *testapi.FakeUserProvidedServiceInstanceRepo requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = &testterm.FakeUI{} serviceRepo = &testapi.FakeUserProvidedServiceInstanceRepo{} configRepo = testconfig.NewRepositoryWithDefaults() requirementsFactory = &testreq.FakeReqFactory{} }) runCommand := func(args ...string) { cmd := NewUpdateUserProvidedService(ui, configRepo, serviceRepo) testcmd.RunCommand(cmd, args, requirementsFactory) }
"github.com/nttlabs/cli/cf/errors" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" "github.com/nttlabs/cli/testhelpers/configuration" . "github.com/nttlabs/cli/testhelpers/matchers" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("update-space-quota command", func() { var ( ui *testterm.FakeUI quotaRepo *fakes.FakeSpaceQuotaRepository requirementsFactory *testreq.FakeReqFactory quota models.SpaceQuota quotaPaidService models.SpaceQuota ) runCommand := func(args ...string) bool { cmd := NewUpdateSpaceQuota(ui, configuration.NewRepositoryWithDefaults(), quotaRepo) return testcmd.RunCommand(cmd, args, requirementsFactory) } BeforeEach(func() { ui = &testterm.FakeUI{} quotaRepo = &fakes.FakeSpaceQuotaRepository{} requirementsFactory = &testreq.FakeReqFactory{} })
"github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/cf/commands/route" . "github.com/nttlabs/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("create-route command", func() { var ( ui *testterm.FakeUI routeRepo *testapi.FakeRouteRepository requirementsFactory *testreq.FakeReqFactory config core_config.ReadWriter ) BeforeEach(func() { ui = &testterm.FakeUI{} routeRepo = &testapi.FakeRouteRepository{} requirementsFactory = &testreq.FakeReqFactory{} config = testconfig.NewRepositoryWithDefaults() }) runCommand := func(args ...string) { testcmd.RunCommand(NewCreateRoute(ui, config, routeRepo), args, requirementsFactory) } Describe("requirements", func() {
"github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/cf/commands/service" . "github.com/nttlabs/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("rename-service command", func() { var ( ui *testterm.FakeUI config core_config.ReadWriter serviceRepo *testapi.FakeServiceRepo requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = &testterm.FakeUI{} config = testconfig.NewRepositoryWithDefaults() serviceRepo = &testapi.FakeServiceRepo{} requirementsFactory = &testreq.FakeReqFactory{} }) runCommand := func(args ...string) { testcmd.RunCommand(NewRenameService(ui, config, serviceRepo), args, requirementsFactory) } Describe("requirements", func() {
. "github.com/nttlabs/cli/cf/commands/service" "github.com/nttlabs/cli/cf/configuration/core_config" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("marketplace command", func() { var ui *testterm.FakeUI var requirementsFactory *testreq.FakeReqFactory var config core_config.ReadWriter var serviceRepo *testapi.FakeServiceRepo var fakeServiceOfferings []models.ServiceOffering BeforeEach(func() { serviceRepo = &testapi.FakeServiceRepo{} ui = &testterm.FakeUI{} requirementsFactory = &testreq.FakeReqFactory{ApiEndpointSuccess: true} fakeServiceOfferings = []models.ServiceOffering{ models.ServiceOffering{ Plans: []models.ServicePlanFields{ models.ServicePlanFields{Name: "service-plan-a"}, models.ServicePlanFields{Name: "service-plan-b"}, },
testapi "github.com/nttlabs/cli/cf/api/fakes" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/cf/commands/route" . "github.com/nttlabs/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("delete-orphaned-routes command", func() { var routeRepo *testapi.FakeRouteRepository var reqFactory *testreq.FakeReqFactory BeforeEach(func() { routeRepo = &testapi.FakeRouteRepository{} reqFactory = &testreq.FakeReqFactory{} }) It("fails requirements when not logged in", func() { callDeleteOrphanedRoutes("y", []string{}, reqFactory, routeRepo) Expect(testcmd.CommandDidPassRequirements).To(BeFalse()) }) Context("when logged in successfully", func() { BeforeEach(func() { reqFactory.LoginSuccess = true
"github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("auth command", func() { var ( ui *testterm.FakeUI cmd Authenticate config core_config.ReadWriter repo *testapi.FakeAuthenticationRepository requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = &testterm.FakeUI{} config = testconfig.NewRepositoryWithDefaults() requirementsFactory = &testreq.FakeReqFactory{} repo = &testapi.FakeAuthenticationRepository{ Config: config, AccessToken: "my-access-token", RefreshToken: "my-refresh-token", } cmd = NewAuthenticate(ui, config, repo) })
testapi "github.com/nttlabs/cli/cf/api/fakes" "github.com/nttlabs/cli/cf/commands/buildpack" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("ListBuildpacks", func() { var ( ui *testterm.FakeUI buildpackRepo *testapi.FakeBuildpackRepository requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = &testterm.FakeUI{} buildpackRepo = &testapi.FakeBuildpackRepository{} requirementsFactory = &testreq.FakeReqFactory{} }) RunCommand := func(args ...string) { cmd := buildpack.NewListBuildpacks(ui, buildpackRepo) testcmd.RunCommand(cmd, args, requirementsFactory) } It("fails requirements when login fails", func() {
"github.com/nttlabs/cli/cf/configuration/core_config" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("rename-space command", func() { var ( ui *testterm.FakeUI configRepo core_config.ReadWriter requirementsFactory *testreq.FakeReqFactory spaceRepo *testapi.FakeSpaceRepository ) BeforeEach(func() { ui = new(testterm.FakeUI) configRepo = testconfig.NewRepositoryWithDefaults() requirementsFactory = &testreq.FakeReqFactory{LoginSuccess: true, TargetedOrgSuccess: true} spaceRepo = &testapi.FakeSpaceRepository{} }) var callRenameSpace = func(args []string) { cmd := NewRenameSpace(ui, configRepo, spaceRepo) testcmd.RunCommand(cmd, args, requirementsFactory) }
"github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("set-space-role command", func() { var ( ui *testterm.FakeUI requirementsFactory *testreq.FakeReqFactory spaceRepo *testapi.FakeSpaceRepository userRepo *testapi.FakeUserRepository configRepo core_config.ReadWriter ) BeforeEach(func() { configRepo = testconfig.NewRepositoryWithDefaults() accessToken, err := testconfig.EncodeAccessToken(core_config.TokenInfo{Username: "******"}) Expect(err).NotTo(HaveOccurred()) configRepo.SetAccessToken(accessToken) ui = &testterm.FakeUI{} requirementsFactory = &testreq.FakeReqFactory{} spaceRepo = &testapi.FakeSpaceRepository{} userRepo = &testapi.FakeUserRepository{} })
"github.com/nttlabs/cli/cf/errors" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("events command", func() { var ( requirementsFactory *testreq.FakeReqFactory eventsRepo *testapi.FakeAppEventsRepository ui *testterm.FakeUI ) const TIMESTAMP_FORMAT = "2006-01-02T15:04:05.00-0700" BeforeEach(func() { eventsRepo = new(testapi.FakeAppEventsRepository) requirementsFactory = &testreq.FakeReqFactory{LoginSuccess: true, TargetedSpaceSuccess: true} ui = new(testterm.FakeUI) }) runCommand := func(args ...string) { configRepo := testconfig.NewRepositoryWithDefaults() cmd := NewEvents(ui, configRepo, eventsRepo) testcmd.RunCommand(cmd, args, requirementsFactory)
testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/cf/commands/application" . "github.com/nttlabs/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("stop command", func() { var ( ui *testterm.FakeUI app models.Application appRepo *testApplication.FakeApplicationRepository requirementsFactory *testreq.FakeReqFactory config core_config.ReadWriter ) BeforeEach(func() { ui = &testterm.FakeUI{} config = testconfig.NewRepositoryWithDefaults() appRepo = &testApplication.FakeApplicationRepository{} requirementsFactory = &testreq.FakeReqFactory{} }) runCommand := func(args ...string) { testcmd.RunCommand(NewStop(ui, config, appRepo), args, requirementsFactory) }
"github.com/nttlabs/cli/cf/configuration/core_config" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("unset-org-role command", func() { var ( ui *testterm.FakeUI userRepo *testapi.FakeUserRepository configRepo core_config.ReadWriter requirementsFactory *testreq.FakeReqFactory ) runCommand := func(args ...string) { cmd := NewUnsetOrgRole(ui, configRepo, userRepo) testcmd.RunCommand(cmd, args, requirementsFactory) } BeforeEach(func() { ui = &testterm.FakeUI{} userRepo = &testapi.FakeUserRepository{} requirementsFactory = &testreq.FakeReqFactory{} configRepo = testconfig.NewRepositoryWithDefaults() })
"github.com/nttlabs/cli/cf/configuration/core_config" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("unmap-route command", func() { var ( ui *testterm.FakeUI configRepo core_config.ReadWriter routeRepo *testapi.FakeRouteRepository requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = new(testterm.FakeUI) configRepo = testconfig.NewRepositoryWithDefaults() routeRepo = new(testapi.FakeRouteRepository) requirementsFactory = new(testreq.FakeReqFactory) }) runCommand := func(args ...string) { cmd := NewUnmapRoute(ui, configRepo, routeRepo) testcmd.RunCommand(cmd, args, requirementsFactory) }
"github.com/nttlabs/cli/cf/configuration/core_config" "github.com/nttlabs/cli/cf/models" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("update-zone command", func() { var ( requirementsFactory *testreq.FakeReqFactory zoneRepo *testapi.FakeZoneRepository ui *testterm.FakeUI configRepo core_config.ReadWriter ) BeforeEach(func() { requirementsFactory = &testreq.FakeReqFactory{} zoneRepo = &testapi.FakeZoneRepository{} ui = &testterm.FakeUI{} configRepo = testconfig.NewRepositoryWithDefaults() }) var runCommand = func(args ...string) { cmd := zone.NewUpdateZone(ui, configRepo, zoneRepo) testcmd.RunCommand(cmd, args, requirementsFactory) }
testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/cf/commands/application" . "github.com/nttlabs/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("env command", func() { var ( ui *testterm.FakeUI app models.Application appRepo *testApplication.FakeApplicationRepository configRepo core_config.ReadWriter requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = &testterm.FakeUI{} app = models.Application{} app.Name = "my-app" appRepo = &testApplication.FakeApplicationRepository{} appRepo.ReadReturns.App = app configRepo = testconfig.NewRepositoryWithDefaults() requirementsFactory = &testreq.FakeReqFactory{LoginSuccess: true} })
. "github.com/onsi/ginkgo" . "github.com/onsi/gomega" testcmd "github.com/nttlabs/cli/testhelpers/commands" testconfig "github.com/nttlabs/cli/testhelpers/configuration" testreq "github.com/nttlabs/cli/testhelpers/requirements" testterm "github.com/nttlabs/cli/testhelpers/terminal" . "github.com/nttlabs/cli/testhelpers/matchers" ) var _ = Describe("target command", func() { var ( orgRepo *fake_org.FakeOrganizationRepository spaceRepo *testapi.FakeSpaceRepository requirementsFactory *testreq.FakeReqFactory config core_config.ReadWriter ui *testterm.FakeUI ) BeforeEach(func() { ui = new(testterm.FakeUI) orgRepo = new(fake_org.FakeOrganizationRepository) spaceRepo = new(testapi.FakeSpaceRepository) requirementsFactory = new(testreq.FakeReqFactory) config = testconfig.NewRepositoryWithDefaults() requirementsFactory.ApiEndpointSuccess = true }) var callTarget = func(args []string) { cmd := NewTarget(ui, config, orgRepo, spaceRepo)