flagContext = flags.NewFlagContext(cmd.MetaData().Flags) err := flagContext.Parse("service-name", "-p", "provider-name") Expect(err).NotTo(HaveOccurred()) cmd.Requirements(factory, flagContext) ui.Inputs = []string{"n"} }) AfterEach(func() { configRepo.SetAPIVersion(origAPIVersion) }) It("tries to find the service offering by label and provider", func() { Expect(runCLIErr).NotTo(HaveOccurred()) Expect(serviceRepo.FindServiceOfferingByLabelAndProviderCallCount()).To(Equal(1)) name, provider := serviceRepo.FindServiceOfferingByLabelAndProviderArgsForCall(0) Expect(name).To(Equal("service-name")) Expect(provider).To(Equal("provider-name")) }) Context("when finding the service offering succeeds", func() { BeforeEach(func() { serviceOffering := models.ServiceOffering{} serviceOffering.GUID = "service-offering-guid" serviceRepo.FindServiceOfferingByLabelAndProviderReturns(serviceOffering, nil) ui.Inputs = []string{"n"} }) It("asks the user to confirm", func() { Expect(runCLIErr).NotTo(HaveOccurred()) Expect(ui.Outputs()).To(ContainSubstrings([]string{"WARNING"}))