本文整理汇总了Golang中cf/models.Application.EnvironmentVars方法的典型用法代码示例。如果您正苦于以下问题:Golang Application.EnvironmentVars方法的具体用法?Golang Application.EnvironmentVars怎么用?Golang Application.EnvironmentVars使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cf/models.Application
的用法示例。
在下文中一共展示了Application.EnvironmentVars方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
callSetEnv(args, reqFactory, appRepo)
Expect(testcmd.CommandDidPassRequirements).To(BeFalse())
testcmd.CommandDidPassRequirements = true
reqFactory = &testreq.FakeReqFactory{Application: app, LoginSuccess: true, TargetedSpaceSuccess: false}
callSetEnv(args, reqFactory, appRepo)
Expect(testcmd.CommandDidPassRequirements).To(BeFalse())
})
It("TestRunWhenApplicationExists", func() {
app := models.Application{}
app.Name = "my-app"
app.Guid = "my-app-guid"
app.EnvironmentVars = map[string]string{"foo": "bar"}
reqFactory := &testreq.FakeReqFactory{Application: app, LoginSuccess: true, TargetedSpaceSuccess: true}
appRepo := &testapi.FakeApplicationRepository{}
args := []string{"my-app", "DATABASE_URL", "mysql://example.com/my-db"}
ui := callSetEnv(args, reqFactory, appRepo)
Expect(len(ui.Outputs)).To(Equal(3))
testassert.SliceContains(ui.Outputs, testassert.Lines{
{
"Setting env variable",
"DATABASE_URL",
"mysql://example.com/my-db",
"my-app",
"my-org",
"my-space",
示例2:
Expect(len(appRepo.CreateAppParams)).To(Equal(0))
})
})
})
Describe("re-pushing an existing app", func() {
var existingApp models.Application
BeforeEach(func() {
existingApp = models.Application{}
existingApp.Name = "existing-app"
existingApp.Guid = "existing-app-guid"
existingApp.Command = "unicorn -c config/unicorn.rb -D"
existingApp.EnvironmentVars = map[string]string{
"crazy": "pants",
"FOO": "NotYoBaz",
"foo": "manchu",
}
appRepo.ReadReturns.App = existingApp
appRepo.UpdateAppResult = existingApp
})
It("resets the app's buildpack when the -b flag is provided as 'default'", func() {
callPush("-b", "default", "existing-app")
Expect(*appRepo.UpdateParams.BuildpackUrl).To(Equal(""))
})
It("resets the app's command when the -c flag is provided as 'default'", func() {
callPush("-c", "default", "existing-app")
Expect(*appRepo.UpdateParams.Command).To(Equal(""))