本文整理汇总了Golang中github.com/cloudfoundry/bosh-agent/platform/fakes.FakePlatform.GetFileContentsFromCDROMContents方法的典型用法代码示例。如果您正苦于以下问题:Golang FakePlatform.GetFileContentsFromCDROMContents方法的具体用法?Golang FakePlatform.GetFileContentsFromCDROMContents怎么用?Golang FakePlatform.GetFileContentsFromCDROMContents使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/bosh-agent/platform/fakes.FakePlatform
的用法示例。
在下文中一共展示了FakePlatform.GetFileContentsFromCDROMContents方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
platform = fakeplatform.NewFakePlatform()
logger := boshlog.NewLogger(boshlog.LevelNone)
source = NewCDROMSettingsSource(settingsFileName, platform, logger)
})
Describe("PublicSSHKeyForUsername", func() {
It("returns an empty string", func() {
publicKey, err := source.PublicSSHKeyForUsername("fake-username")
Expect(err).ToNot(HaveOccurred())
Expect(publicKey).To(Equal(""))
})
})
Describe("Settings", func() {
It("returns settings read from the CDROM", func() {
platform.GetFileContentsFromCDROMContents = []byte(`{"agent_id": "123"}`)
settings, err := source.Settings()
Expect(err).ToNot(HaveOccurred())
Expect(platform.GetFileContentsFromCDROMPath).To(Equal("fake-settings-file-name"))
Expect(settings.AgentID).To(Equal("123"))
})
It("returns an error if reading from the CDROM fails", func() {
platform.GetFileContentsFromCDROMErr = errors.New("fake-read-disk-error")
_, err := source.Settings()
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("fake-read-disk-error"))
})