本文整理匯總了Golang中github.com/cloudfoundry/cli/cf/actors/fakes.FakeServicePlanActor類的典型用法代碼示例。如果您正苦於以下問題:Golang FakeServicePlanActor類的具體用法?Golang FakeServicePlanActor怎麽用?Golang FakeServicePlanActor使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了FakeServicePlanActor類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
"github.com/cloudfoundry/cli/cf/command_registry"
"github.com/cloudfoundry/cli/cf/configuration/core_config"
testcmd "github.com/cloudfoundry/cli/testhelpers/commands"
"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("disable-service-access command", func() {
var (
ui *testterm.FakeUI
actor *testactor.FakeServicePlanActor
requirementsFactory *testreq.FakeReqFactory
tokenRefresher *authenticationfakes.FakeAuthenticationRepository
configRepo core_config.Repository
deps command_registry.Dependency
)
updateCommandDependency := func(pluginCall bool) {
deps.Ui = ui
deps.RepoLocator = deps.RepoLocator.SetAuthenticationRepository(tokenRefresher)
deps.ServicePlanHandler = actor
deps.Config = configRepo
command_registry.Commands.SetCommand(command_registry.Commands.FindCommand("disable-service-access").SetDependency(deps, pluginCall))
}
BeforeEach(func() {
ui = &testterm.FakeUI{
Inputs: []string{"yes"},
示例2:
testapi "github.com/cloudfoundry/cli/cf/api/fakes"
testcmd "github.com/cloudfoundry/cli/testhelpers/commands"
"github.com/cloudfoundry/cli/testhelpers/configuration"
testreq "github.com/cloudfoundry/cli/testhelpers/requirements"
testterm "github.com/cloudfoundry/cli/testhelpers/terminal"
. "github.com/cloudfoundry/cli/cf/commands/serviceaccess"
. "github.com/cloudfoundry/cli/testhelpers/matchers"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("enable-service-access command", func() {
var (
ui *testterm.FakeUI
actor *testactor.FakeServicePlanActor
requirementsFactory *testreq.FakeReqFactory
tokenRefresher *testapi.FakeAuthenticationRepository
)
BeforeEach(func() {
ui = &testterm.FakeUI{}
actor = &testactor.FakeServicePlanActor{}
requirementsFactory = &testreq.FakeReqFactory{}
tokenRefresher = &testapi.FakeAuthenticationRepository{}
})
runCommand := func(args []string) bool {
cmd := NewEnableServiceAccess(ui, configuration.NewRepositoryWithDefaults(), actor, tokenRefresher)
return testcmd.RunCommand(cmd, args, requirementsFactory)
}