package services import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "github.com/cloudfoundry-incubator/cf-test-helpers/generator" "github.com/cloudfoundry/cf-acceptance-tests/helpers" shelpers "github.com/cloudfoundry/cf-acceptance-tests/services/helpers" ) var _ = Describe("SSO Lifecycle", func() { var broker shelpers.ServiceBroker var config shelpers.OAuthConfig var apiEndpoint = helpers.LoadConfig().ApiEndpoint redirectUri := `http://example.com` BeforeEach(func() { broker = shelpers.NewServiceBroker(generator.RandomName(), helpers.NewAssets().ServiceBroker, context) broker.Push() broker.Service.DashboardClient.RedirectUri = redirectUri broker.Configure() config = shelpers.OAuthConfig{} config.ClientId = broker.Service.DashboardClient.ID config.ClientSecret = broker.Service.DashboardClient.Secret config.RedirectUri = redirectUri config.RequestedScopes = `openid,cloud_controller_service_permissions.read` shelpers.SetOauthEndpoints(apiEndpoint, &config)
package services import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/onsi/gomega/gbytes" . "github.com/onsi/gomega/gexec" "github.com/cloudfoundry-incubator/cf-test-helpers/cf" "github.com/cloudfoundry-incubator/cf-test-helpers/generator" "github.com/cloudfoundry/cf-acceptance-tests/helpers" shelpers "github.com/cloudfoundry/cf-acceptance-tests/services/helpers" ) var _ = Describe("Purging service offerings", func() { var broker shelpers.ServiceBroker BeforeEach(func() { broker = shelpers.NewServiceBroker(generator.RandomName(), helpers.NewAssets().ServiceBroker, context) broker.Push() broker.Configure() broker.Create() broker.PublicizePlans() }) AfterEach(func() { broker.Destroy() }) It("removes all instances and plans of the service, then removes the service offering", func() { instanceName := "purge-offering-instance"
package services import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" . "github.com/onsi/gomega/gexec" "github.com/cloudfoundry-incubator/cf-test-helpers/cf" "github.com/cloudfoundry-incubator/cf-test-helpers/generator" "github.com/cloudfoundry/cf-acceptance-tests/helpers" shelpers "github.com/cloudfoundry/cf-acceptance-tests/services/helpers" ) var _ = Describe("Service Broker Lifecycle", func() { var broker shelpers.ServiceBroker BeforeEach(func() { broker = shelpers.NewServiceBroker(generator.RandomName(), helpers.NewAssets().ServiceBroker, context) broker.Push() broker.Configure() }) It("confirms correct behavior in the lifecycle of a service broker", func() { // Adding the service broker broker.Create() // Confirming the plans are not yet public plans := cf.Cf("marketplace").Wait(DEFAULT_TIMEOUT) Expect(plans).To(Exit(0)) output := plans.Out.Contents() Expect(output).NotTo(ContainSubstring(broker.Service.Name))