var findServicePlanByDescriptionCallCount int serviceRepo.FindServicePlanByDescriptionStub = func(planDescription resources.ServicePlanDescription) (string, error) { findServicePlanByDescriptionCallCount++ if findServicePlanByDescriptionCallCount == 1 { return "v1-guid", nil } return "v2-guid", nil } serviceRepo.MigrateServicePlanFromV1ToV2Returns(1, nil) }) It("makes a request to migrate the v1 service instance", func() { testcmd.RunCLICommand("migrate-service-instances", args, requirementsFactory, updateCommandDependency, false, ui) v1PlanGUID, v2PlanGUID := serviceRepo.MigrateServicePlanFromV1ToV2ArgsForCall(0) Expect(v1PlanGUID).To(Equal("v1-guid")) Expect(v2PlanGUID).To(Equal("v2-guid")) }) It("finds the v1 service plan by its name, provider and service label", func() { testcmd.RunCLICommand("migrate-service-instances", args, requirementsFactory, updateCommandDependency, false, ui) expectedV1 := resources.ServicePlanDescription{ ServicePlanName: "v1-plan-name", ServiceProvider: "v1-provider-name", ServiceLabel: "v1-service-label", } Expect(serviceRepo.FindServicePlanByDescriptionArgsForCall(0)).To(Equal(expectedV1)) })