本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/app_files/fakes.FakeAppFiles.CountFilesReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeAppFiles.CountFilesReturns方法的具体用法?Golang FakeAppFiles.CountFilesReturns怎么用?Golang FakeAppFiles.CountFilesReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/app_files/fakes.FakeAppFiles
的用法示例。
在下文中一共展示了FakeAppFiles.CountFilesReturns方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Describe("checking for bad flags", func() {
It("fails when a non-numeric start timeout is given", func() {
appRepo.ReadReturns.Error = errors.NewModelNotFoundError("App", "the-app")
callPush("-t", "FooeyTimeout", "my-new-app")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"FAILED"},
[]string{"Invalid", "timeout", "FooeyTimeout"},
))
})
})
Describe("displaying information about files being uploaded", func() {
It("displays information about the files being uploaded", func() {
app_files.CountFilesReturns(11)
zipper.ZipReturns(nil)
zipper.GetZipSizeReturns(6100000, nil)
actor.GatherFilesReturns([]resources.AppFileResource{resources.AppFileResource{Path: "path/to/app"}, resources.AppFileResource{Path: "bar"}}, nil)
curDir, err := os.Getwd()
Expect(err).NotTo(HaveOccurred())
callPush("appName")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Uploading", curDir},
[]string{"5.8M", "11 files"},
))
})
It("omits the size when there are no files being uploaded", func() {
示例2:
Describe("checking for bad flags", func() {
It("fails when a non-numeric start timeout is given", func() {
appRepo.ReadReturns(models.Application{}, errors.NewModelNotFoundError("App", "the-app"))
callPush("-t", "FooeyTimeout", "app-name")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"FAILED"},
[]string{"Invalid", "timeout", "FooeyTimeout"},
))
})
})
Describe("displaying information about files being uploaded", func() {
It("displays information about the files being uploaded", func() {
appfiles.CountFilesReturns(11)
zipper.ZipReturns(nil)
zipper.GetZipSizeReturns(6100000, nil)
actor.GatherFilesReturns([]resources.AppFileResource{resources.AppFileResource{Path: "path/to/app"}, resources.AppFileResource{Path: "bar"}}, true, nil)
curDir, err := os.Getwd()
Expect(err).NotTo(HaveOccurred())
callPush("appName")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Uploading", curDir},
[]string{"5.8M", "11 files"},
))
})
})