func (resource ServiceInstancesSummaries) ToModels() []models.ServiceInstance { var instances []models.ServiceInstance for _, instanceSummary := range resource.ServiceInstances { applicationNames := resource.findApplicationNamesForInstance(instanceSummary.Name) planSummary := instanceSummary.ServicePlan servicePlan := models.ServicePlanFields{} servicePlan.Name = planSummary.Name servicePlan.GUID = planSummary.GUID offeringSummary := planSummary.ServiceOffering serviceOffering := models.ServiceOfferingFields{} serviceOffering.Label = offeringSummary.Label serviceOffering.Provider = offeringSummary.Provider serviceOffering.Version = offeringSummary.Version instance := models.ServiceInstance{} instance.Name = instanceSummary.Name instance.LastOperation.Type = instanceSummary.LastOperation.Type instance.LastOperation.State = instanceSummary.LastOperation.State instance.LastOperation.Description = instanceSummary.LastOperation.Description instance.ApplicationNames = applicationNames instance.ServicePlan = servicePlan instance.ServiceOffering = serviceOffering instances = append(instances, instance) } return instances }
func (repo CloudControllerServiceRepository) RenameService(instance models.ServiceInstance, newName string) (apiErr error) { body := fmt.Sprintf(`{"name":"%s"}`, newName) path := fmt.Sprintf("/v2/service_instances/%s?accepts_incomplete=true", instance.GUID) if instance.IsUserProvided() { path = fmt.Sprintf("/v2/user_provided_service_instances/%s", instance.GUID) } return repo.gateway.UpdateResource(repo.config.APIEndpoint(), path, strings.NewReader(body)) }
func (cmd *ShowService) populatePluginModel(serviceInstance models.ServiceInstance) { cmd.pluginModel.Name = serviceInstance.Name cmd.pluginModel.Guid = serviceInstance.GUID cmd.pluginModel.DashboardUrl = serviceInstance.DashboardURL cmd.pluginModel.IsUserProvided = serviceInstance.IsUserProvided() cmd.pluginModel.LastOperation.Type = serviceInstance.LastOperation.Type cmd.pluginModel.LastOperation.State = serviceInstance.LastOperation.State cmd.pluginModel.LastOperation.Description = serviceInstance.LastOperation.Description cmd.pluginModel.LastOperation.CreatedAt = serviceInstance.LastOperation.CreatedAt cmd.pluginModel.LastOperation.UpdatedAt = serviceInstance.LastOperation.UpdatedAt cmd.pluginModel.ServicePlan.Name = serviceInstance.ServicePlan.Name cmd.pluginModel.ServicePlan.Guid = serviceInstance.ServicePlan.GUID cmd.pluginModel.ServiceOffering.DocumentationUrl = serviceInstance.ServiceOffering.DocumentationURL cmd.pluginModel.ServiceOffering.Name = serviceInstance.ServiceOffering.Label }
deps commandregistry.Dependency ) updateCommandDependency := func(pluginCall bool) { deps.UI = ui deps.RepoLocator = deps.RepoLocator.SetServiceRepository(serviceRepo) deps.RepoLocator = deps.RepoLocator.SetServiceKeyRepository(serviceKeyRepo) deps.Config = config commandregistry.Commands.SetCommand(commandregistry.Commands.FindCommand("create-service-key").SetDependency(deps, pluginCall)) } BeforeEach(func() { ui = &testterm.FakeUI{} config = testconfig.NewRepositoryWithDefaults() serviceRepo = &apifakes.FakeServiceRepository{} serviceInstance := models.ServiceInstance{} serviceInstance.GUID = "fake-instance-guid" serviceInstance.Name = "fake-service-instance" serviceRepo.FindInstanceByNameReturns(serviceInstance, nil) serviceKeyRepo = apifakes.NewFakeServiceKeyRepo() requirementsFactory = new(requirementsfakes.FakeFactory) requirementsFactory.NewLoginRequirementReturns(requirements.Passing{}) requirementsFactory.NewTargetedSpaceRequirementReturns(requirements.Passing{}) serviceInstanceReq := new(requirementsfakes.FakeServiceInstanceRequirement) requirementsFactory.NewServiceInstanceRequirementReturns(serviceInstanceReq) serviceInstanceReq.GetServiceInstanceReturns(serviceInstance) }) var callCreateService = func(args []string) bool { return testcmd.RunCLICommand("create-service-key", args, requirementsFactory, updateCommandDependency, false, ui) }
_, err := repo.FindInstanceByName("my-service") Expect(testHandler).To(HaveAllRequestsCalled()) Expect(err).NotTo(HaveOccurred()) }) }) Describe("DeleteService", func() { It("deletes the service when no apps and keys are bound", func() { setupTestServer(apifakes.NewCloudControllerTestRequest(testnet.TestRequest{ Method: "DELETE", Path: "/v2/service_instances/my-service-instance-guid?accepts_incomplete=true&async=true", Response: testnet.TestResponse{Status: http.StatusOK}, })) serviceInstance := models.ServiceInstance{} serviceInstance.GUID = "my-service-instance-guid" err := repo.DeleteService(serviceInstance) Expect(testHandler).To(HaveAllRequestsCalled()) Expect(err).NotTo(HaveOccurred()) }) It("doesn't delete the service when apps are bound", func() { setupTestServer() serviceInstance := models.ServiceInstance{} serviceInstance.GUID = "my-service-instance-guid" serviceInstance.ServiceBindings = []models.ServiceBindingFields{ { URL: "/v2/service_bindings/service-binding-1-guid",
Describe("Execute", func() { BeforeEach(func() { err := flagContext.Parse("service-instance-name") Expect(err).NotTo(HaveOccurred()) cmd.Requirements(factory, flagContext) }) It("finds the instance by name in the service repo", func() { err := flagContext.Parse("service-instance-name", "-f") Expect(err).NotTo(HaveOccurred()) cmd.Execute(flagContext) Expect(serviceRepo.FindInstanceByNameCallCount()).To(Equal(1)) }) Context("when the instance can be found", func() { var serviceInstance models.ServiceInstance BeforeEach(func() { serviceInstance = models.ServiceInstance{} serviceInstance.Name = "service-instance-name" serviceRepo.FindInstanceByNameReturns(serviceInstance, nil) }) It("warns the user", func() { ui.Inputs = []string{"n"} cmd.Execute(flagContext) Eventually(func() []string { return ui.Outputs() }).Should(ContainSubstrings( []string{"WARNING"}, ))
func (cmd *UnbindRouteService) UnbindRoute(route models.Route, serviceInstance models.ServiceInstance) error { return cmd.routeServiceBindingRepo.Unbind(serviceInstance.GUID, route.GUID, serviceInstance.IsUserProvided()) }
"description":"The app space binding to service is taken: 7b959018-110a-4913-ac0a-d663e613cdea 346bf237-7eef-41a7-b892-68fb08068f09" }`), ), ) }) It("returns an error", func() { err := repo.Create("my-service-instance-guid", "my-app-guid", nil) Expect(err).To(HaveOccurred()) Expect(err.(errors.HTTPError).ErrorCode()).To(Equal("90003")) }) }) }) Describe("Delete", func() { var serviceInstance models.ServiceInstance BeforeEach(func() { serviceInstance.GUID = "my-service-instance-guid" }) Context("when binding does exist", func() { BeforeEach(func() { server.AppendHandlers( ghttp.CombineHandlers( ghttp.VerifyRequest("DELETE", "/v2/service_bindings/service-binding-2-guid"), ghttp.RespondWith(http.StatusOK, nil), ), ) serviceInstance.ServiceBindings = []models.ServiceBindingFields{
"code.cloudfoundry.org/cli/cf/requirements" "code.cloudfoundry.org/cli/cf/requirements/requirementsfakes" testcmd "code.cloudfoundry.org/cli/testhelpers/commands" testconfig "code.cloudfoundry.org/cli/testhelpers/configuration" testterm "code.cloudfoundry.org/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "code.cloudfoundry.org/cli/testhelpers/matchers" ) var _ = Describe("delete-service command", func() { var ( ui *testterm.FakeUI requirementsFactory *requirementsfakes.FakeFactory serviceRepo *apifakes.FakeServiceRepository serviceInstance models.ServiceInstance configRepo coreconfig.Repository deps commandregistry.Dependency ) updateCommandDependency := func(pluginCall bool) { deps.UI = ui deps.RepoLocator = deps.RepoLocator.SetServiceRepository(serviceRepo) deps.Config = configRepo commandregistry.Commands.SetCommand(commandregistry.Commands.FindCommand("delete-service").SetDependency(deps, pluginCall)) } BeforeEach(func() { ui = &testterm.FakeUI{ Inputs: []string{"yes"}, }
"code.cloudfoundry.org/cli/cf/requirements/requirementsfakes" testcmd "code.cloudfoundry.org/cli/testhelpers/commands" testconfig "code.cloudfoundry.org/cli/testhelpers/configuration" testterm "code.cloudfoundry.org/cli/testhelpers/terminal" . "code.cloudfoundry.org/cli/testhelpers/matchers" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("rename-service command", func() { var ( ui *testterm.FakeUI config coreconfig.Repository serviceRepo *apifakes.FakeServiceRepository requirementsFactory *requirementsfakes.FakeFactory deps commandregistry.Dependency serviceInstance models.ServiceInstance ) updateCommandDependency := func(pluginCall bool) { deps.UI = ui deps.RepoLocator = deps.RepoLocator.SetServiceRepository(serviceRepo) deps.Config = config commandregistry.Commands.SetCommand(commandregistry.Commands.FindCommand("rename-service").SetDependency(deps, pluginCall)) } BeforeEach(func() { ui = &testterm.FakeUI{} config = testconfig.NewRepositoryWithDefaults()
host, _, path, _ := routeRepo.FindArgsForCall(0) Expect(host).To(Equal("the-hostname")) Expect(path).To(Equal("/path")) }) }) Context("when the route can be found", func() { BeforeEach(func() { routeRepo.FindReturns(models.Route{GUID: "route-guid"}, nil) }) Context("when the service instance is not user-provided and requires route forwarding", func() { BeforeEach(func() { serviceInstance := models.ServiceInstance{ ServiceOffering: models.ServiceOfferingFields{ Requires: []string{"route_forwarding"}, }, } serviceInstance.ServicePlan = models.ServicePlanFields{ GUID: "service-plan-guid", } serviceInstanceRequirement.GetServiceInstanceReturns(serviceInstance) }) It("does not warn", func() { Expect(runCLIErr).NotTo(HaveOccurred()) Expect(ui.Outputs()).NotTo(ContainSubstrings( []string{"Bind cancelled"}, )) })
"code.cloudfoundry.org/cli/cf/models" . "code.cloudfoundry.org/cli/cf/requirements" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("ServiceInstanceRequirement", func() { var repo *apifakes.FakeServiceRepository BeforeEach(func() { repo = new(apifakes.FakeServiceRepository) }) Context("when a service instance with the given name can be found", func() { It("succeeds", func() { instance := models.ServiceInstance{} instance.Name = "my-service" instance.GUID = "my-service-guid" repo.FindInstanceByNameReturns(instance, nil) req := NewServiceInstanceRequirement("my-service", repo) err := req.Execute() Expect(err).NotTo(HaveOccurred()) Expect(repo.FindInstanceByNameArgsForCall(0)).To(Equal("my-service")) Expect(req.GetServiceInstance()).To(Equal(instance)) }) }) Context("when a service instance with the given name can't be found", func() { It("errors", func() {