"github.com/cloudfoundry/cli/cf/configuration/core_config" "github.com/cloudfoundry/cli/cf/models" testcmd "github.com/cloudfoundry/cli/testhelpers/commands" testconfig "github.com/cloudfoundry/cli/testhelpers/configuration" testreq "github.com/cloudfoundry/cli/testhelpers/requirements" testterm "github.com/cloudfoundry/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/cloudfoundry/cli/testhelpers/matchers" ) var _ = Describe("update-service-broker command", func() { var ( ui *testterm.FakeUI requirementsFactory *testreq.FakeReqFactory configRepo core_config.ReadWriter serviceBrokerRepo *testapi.FakeServiceBrokerRepo ) BeforeEach(func() { configRepo = testconfig.NewRepositoryWithDefaults() ui = &testterm.FakeUI{} requirementsFactory = &testreq.FakeReqFactory{} serviceBrokerRepo = &testapi.FakeServiceBrokerRepo{} }) runCommand := func(args ...string) bool { return testcmd.RunCommand(NewUpdateServiceBroker(ui, configRepo, serviceBrokerRepo), args, requirementsFactory) }
package actors_test import ( "github.com/cloudfoundry/cli/cf/actors" "github.com/cloudfoundry/cli/cf/api/fakes" "github.com/cloudfoundry/cli/cf/models" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Services", func() { var ( actor actors.ServiceActor brokerRepo *fakes.FakeServiceBrokerRepo serviceRepo *fakes.FakeServiceRepo servicePlanRepo *fakes.FakeServicePlanRepo servicePlanVisibilityRepo *fakes.FakeServicePlanVisibilityRepository orgRepo *fakes.FakeOrgRepository ) BeforeEach(func() { brokerRepo = &fakes.FakeServiceBrokerRepo{} serviceRepo = &fakes.FakeServiceRepo{} servicePlanRepo = &fakes.FakeServicePlanRepo{} servicePlanVisibilityRepo = &fakes.FakeServicePlanVisibilityRepository{} orgRepo = &fakes.FakeOrgRepository{} actor = actors.NewServiceHandler(brokerRepo, serviceRepo, servicePlanRepo, servicePlanVisibilityRepo, orgRepo) serviceBroker1 := models.ServiceBroker{Guid: "my-service-broker-guid", Name: "my-service-broker"} serviceBroker2 := models.ServiceBroker{Guid: "my-service-broker-guid2", Name: "my-service-broker2"}
. "github.com/cloudfoundry/cli/cf/commands/servicebroker" "github.com/cloudfoundry/cli/cf/configuration" "github.com/cloudfoundry/cli/cf/models" testcmd "github.com/cloudfoundry/cli/testhelpers/commands" testconfig "github.com/cloudfoundry/cli/testhelpers/configuration" . "github.com/cloudfoundry/cli/testhelpers/matchers" testreq "github.com/cloudfoundry/cli/testhelpers/requirements" testterm "github.com/cloudfoundry/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("delete-service-broker command", func() { var ( ui *testterm.FakeUI configRepo configuration.ReadWriter brokerRepo *testapi.FakeServiceBrokerRepo requirementsFactory *testreq.FakeReqFactory ) BeforeEach(func() { ui = &testterm.FakeUI{Inputs: []string{"y"}} brokerRepo = &testapi.FakeServiceBrokerRepo{} configRepo = testconfig.NewRepositoryWithDefaults() requirementsFactory = &testreq.FakeReqFactory{LoginSuccess: true} }) runCommand := func(args ...string) { cmd := NewDeleteServiceBroker(ui, configRepo, brokerRepo) testcmd.RunCommand(cmd, args, requirementsFactory) }
fake_service_builder "github.com/cloudfoundry/cli/cf/actors/service_builder/fakes" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Broker Builder", func() { var ( brokerBuilder broker_builder.BrokerBuilder serviceBuilder *fake_service_builder.FakeServiceBuilder brokerRepo *fakes.FakeServiceBrokerRepo serviceBroker1 models.ServiceBroker services models.ServiceOfferings service1 models.ServiceOffering service2 models.ServiceOffering service3 models.ServiceOffering publicServicePlan models.ServicePlanFields privateServicePlan models.ServicePlanFields ) BeforeEach(func() { brokerRepo = &fakes.FakeServiceBrokerRepo{} serviceBuilder = &fake_service_builder.FakeServiceBuilder{} brokerBuilder = broker_builder.NewBuilder(brokerRepo, serviceBuilder) serviceBroker1 = models.ServiceBroker{Guid: "my-service-broker-guid", Name: "my-service-broker"}
import ( "github.com/cloudfoundry/cli/cf/actors" "github.com/cloudfoundry/cli/cf/api/fakes" "github.com/cloudfoundry/cli/cf/models" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Services", func() { var ( actor actors.ServiceActor brokerRepo *fakes.FakeServiceBrokerRepo serviceRepo *fakes.FakeServiceRepo servicePlanRepo *fakes.FakeServicePlanRepo servicePlanVisibilityRepo *fakes.FakeServicePlanVisibilityRepository orgRepo *fakes.FakeOrgRepository serviceBroker1 models.ServiceBroker serviceBroker2 models.ServiceBroker ) BeforeEach(func() { brokerRepo = &fakes.FakeServiceBrokerRepo{} serviceRepo = &fakes.FakeServiceRepo{} servicePlanRepo = &fakes.FakeServicePlanRepo{} servicePlanVisibilityRepo = &fakes.FakeServicePlanVisibilityRepository{} orgRepo = &fakes.FakeOrgRepository{} actor = actors.NewServiceHandler(brokerRepo, serviceRepo, servicePlanRepo, servicePlanVisibilityRepo, orgRepo) serviceBroker1 = models.ServiceBroker{Guid: "my-service-broker-guid", Name: "my-service-broker"}
testconfig "github.com/cloudfoundry/cli/testhelpers/configuration" testreq "github.com/cloudfoundry/cli/testhelpers/requirements" testterm "github.com/cloudfoundry/cli/testhelpers/terminal" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "strings" . "github.com/cloudfoundry/cli/testhelpers/matchers" ) var _ = Describe("service-brokers command", func() { var ( ui *testterm.FakeUI config core_config.Repository repo *testapi.FakeServiceBrokerRepo requirementsFactory *testreq.FakeReqFactory deps command_registry.Dependency ) updateCommandDependency := func(pluginCall bool) { deps.Ui = ui deps.RepoLocator = deps.RepoLocator.SetServiceBrokerRepository(repo) deps.Config = config command_registry.Commands.SetCommand(command_registry.Commands.FindCommand("service-brokers").SetDependency(deps, pluginCall)) } BeforeEach(func() { ui = &testterm.FakeUI{} config = testconfig.NewRepositoryWithDefaults() repo = &testapi.FakeServiceBrokerRepo{}
package actors_test import ( "github.com/cloudfoundry/cli/cf/actors" "github.com/cloudfoundry/cli/cf/api/fakes" "github.com/cloudfoundry/cli/cf/models" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Services", func() { var ( actor actors.ServiceActor brokerRepo *fakes.FakeServiceBrokerRepo serviceRepo *fakes.FakeServiceRepo servicePlanRepo *fakes.FakeServicePlanRepo servicePlanVisibilityRepo *fakes.FakeServicePlanVisibilityRepository orgRepo *fakes.FakeOrgRepository ) BeforeEach(func() { brokerRepo = &fakes.FakeServiceBrokerRepo{} serviceRepo = &fakes.FakeServiceRepo{} servicePlanRepo = &fakes.FakeServicePlanRepo{} servicePlanVisibilityRepo = &fakes.FakeServicePlanVisibilityRepository{} orgRepo = &fakes.FakeOrgRepository{} actor = actors.NewServiceHandler(brokerRepo, serviceRepo, servicePlanRepo, servicePlanVisibilityRepo, orgRepo) }) Describe("Get Brokers with Dependencies", func() {