本文整理匯總了Golang中cf/configuration.ReadWriter.IsSSLDisabled方法的典型用法代碼示例。如果您正苦於以下問題:Golang ReadWriter.IsSSLDisabled方法的具體用法?Golang ReadWriter.IsSSLDisabled怎麽用?Golang ReadWriter.IsSSLDisabled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cf/configuration.ReadWriter
的用法示例。
在下文中一共展示了ReadWriter.IsSSLDisabled方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: NewRepositoryLocator
func NewRepositoryLocator(config configuration.ReadWriter, gatewaysByName map[string]net.Gateway) (loc RepositoryLocator) {
strategy := strategy.NewEndpointStrategy(config.ApiVersion())
authGateway := gatewaysByName["auth"]
cloudControllerGateway := gatewaysByName["cloud-controller"]
uaaGateway := gatewaysByName["uaa"]
loc.authRepo = NewUAAAuthenticationRepository(authGateway, config)
// ensure gateway refreshers are set before passing them by value to repositories
cloudControllerGateway.SetTokenRefresher(loc.authRepo)
uaaGateway.SetTokenRefresher(loc.authRepo)
tlsConfig := net.NewTLSConfig([]tls.Certificate{}, config.IsSSLDisabled())
loggregatorConsumer := consumer.New(config.LoggregatorEndpoint(), tlsConfig, nil)
loc.appBitsRepo = NewCloudControllerApplicationBitsRepository(config, cloudControllerGateway, app_files.ApplicationZipper{})
loc.appEventsRepo = NewCloudControllerAppEventsRepository(config, cloudControllerGateway, strategy)
loc.appFilesRepo = NewCloudControllerAppFilesRepository(config, cloudControllerGateway)
loc.appRepo = NewCloudControllerApplicationRepository(config, cloudControllerGateway)
loc.appSummaryRepo = NewCloudControllerAppSummaryRepository(config, cloudControllerGateway)
loc.appInstancesRepo = NewCloudControllerAppInstancesRepository(config, cloudControllerGateway)
loc.authTokenRepo = NewCloudControllerServiceAuthTokenRepository(config, cloudControllerGateway)
loc.curlRepo = NewCloudControllerCurlRepository(config, cloudControllerGateway)
loc.domainRepo = NewCloudControllerDomainRepository(config, cloudControllerGateway, strategy)
loc.endpointRepo = NewEndpointRepository(config, cloudControllerGateway)
loc.logsRepo = NewLoggregatorLogsRepository(config, loggregatorConsumer)
loc.organizationRepo = NewCloudControllerOrganizationRepository(config, cloudControllerGateway)
loc.passwordRepo = NewCloudControllerPasswordRepository(config, uaaGateway)
loc.quotaRepo = NewCloudControllerQuotaRepository(config, cloudControllerGateway)
loc.routeRepo = NewCloudControllerRouteRepository(config, cloudControllerGateway, loc.domainRepo)
loc.stackRepo = NewCloudControllerStackRepository(config, cloudControllerGateway)
loc.serviceRepo = NewCloudControllerServiceRepository(config, cloudControllerGateway)
loc.serviceBindingRepo = NewCloudControllerServiceBindingRepository(config, cloudControllerGateway)
loc.serviceBrokerRepo = NewCloudControllerServiceBrokerRepository(config, cloudControllerGateway)
loc.serviceSummaryRepo = NewCloudControllerServiceSummaryRepository(config, cloudControllerGateway)
loc.spaceRepo = NewCloudControllerSpaceRepository(config, cloudControllerGateway)
loc.userProvidedServiceInstanceRepo = NewCCUserProvidedServiceInstanceRepository(config, cloudControllerGateway)
loc.userRepo = NewCloudControllerUserRepository(config, uaaGateway, cloudControllerGateway)
loc.buildpackRepo = NewCloudControllerBuildpackRepository(config, cloudControllerGateway)
loc.buildpackBitsRepo = NewCloudControllerBuildpackBitsRepository(config, cloudControllerGateway, app_files.ApplicationZipper{})
return
}
示例2:
ctx = testcmd.NewContext("api", []string{})
requirementsFactory = &testreq.FakeReqFactory{}
})
JustBeforeEach(func() {
testcmd.RunCommand(NewApi(ui, config, endpointRepo), ctx, requirementsFactory)
})
It("prints out the api endpoint", func() {
testassert.SliceContains(ui.Outputs, testassert.Lines{
{"https://api.run.pivotal.io", "2.0"},
})
})
It("should not change the SSL setting in the config", func() {
Expect(config.IsSSLDisabled()).To(BeTrue())
})
})
Context("when the endpoint is not set in the config", func() {
It("prompts the user to set an endpoint", func() {
ui := callApi([]string{}, config, endpointRepo)
testassert.SliceContains(ui.Outputs, testassert.Lines{
{"No api endpoint set", fmt.Sprintf("use '%s api' to set an endpoint", cf.Name())},
})
})
})
})
Context("when the user provides the --skip-ssl-validation flag", func() {
示例3:
Describe("when the --skip-ssl-validation flag is provided", func() {
BeforeEach(func() {
Flags = append(Flags, "--skip-ssl-validation")
})
Describe("setting api endpoint is successful", func() {
BeforeEach(func() {
Config.SetSSLDisabled(false)
})
ItSucceeds()
ItShowsTheTarget()
It("stores the API endpoint and the skip-ssl flag", func() {
Expect(endpointRepo.UpdateEndpointReceived).To(Equal("https://api.the-server.com"))
Expect(Config.IsSSLDisabled()).To(BeTrue())
})
})
Describe("setting api endpoint failed", func() {
BeforeEach(func() {
Config.SetSSLDisabled(true)
endpointRepo.UpdateEndpointError = errors.New("API endpoint not found")
})
ItFails()
ItDoesntShowTheTarget()
It("clears the entire config", func() {
Expect(Config.ApiEndpoint()).To(BeEmpty())
Expect(Config.IsSSLDisabled()).To(BeFalse())