本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/stacks/fakes.FakeStackRepository.FindByNameReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeStackRepository.FindByNameReturns方法的具体用法?Golang FakeStackRepository.FindByNameReturns怎么用?Golang FakeStackRepository.FindByNameReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/stacks/fakes.FakeStackRepository
的用法示例。
在下文中一共展示了FakeStackRepository.FindByNameReturns方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Expect(testcmd.RunCliCommand("stack", []string{}, requirementsFactory, updateCommandDependency, false)).To(BeFalse())
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"FAILED"},
[]string{"Incorrect Usage.", "Requires stack name as argument"},
))
})
})
It("returns the stack guid when '--guid' flag is provided", func() {
stack1 := models.Stack{
Name: "Stack-1",
Description: "Stack 1 Description",
Guid: "Stack-1-GUID",
}
repo.FindByNameReturns(stack1, nil)
testcmd.RunCliCommand("stack", []string{"Stack-1", "--guid"}, requirementsFactory, updateCommandDependency, false)
Expect(len(ui.Outputs)).To(Equal(1))
Expect(ui.Outputs[0]).To(Equal("Stack-1-GUID"))
})
It("returns the empty string as guid when '--guid' flag is provided and stack doesn't exist", func() {
stack1 := models.Stack{
Name: "Stack-1",
Description: "Stack 1 Description",
Guid: "Stack-1-GUID",
}
repo.FindByNameReturns(stack1, nil)
示例2:
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Creating", "appname.foo.cf-app.com"},
[]string{"Binding", "appname.foo.cf-app.com"},
))
Expect(ui.Outputs).ToNot(ContainSubstrings([]string{"FAILED"}))
})
It("sets the app params from the flags", func() {
domainRepo.FindByNameInOrgDomain = []models.DomainFields{
models.DomainFields{
Name: "bar.cf-app.com",
Guid: "bar-domain-guid",
},
}
stackRepo.FindByNameReturns(models.Stack{
Name: "customLinux",
Guid: "custom-linux-guid",
}, nil)
callPush(
"-c", "unicorn -c config/unicorn.rb -D",
"-d", "bar.cf-app.com",
"-n", "my-hostname",
"-k", "4G",
"-i", "3",
"-m", "2G",
"-b", "https://github.com/heroku/heroku-buildpack-play.git",
"-s", "customLinux",
"-t", "1",
"-u", "port",
"--no-start",
"app-name",