本文整理匯總了Golang中github.com/cloudfoundry/bosh-agent/infrastructure/fakes.FakeSettingsSource.PublicKeyErr方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeSettingsSource.PublicKeyErr方法的具體用法?Golang FakeSettingsSource.PublicKeyErr怎麽用?Golang FakeSettingsSource.PublicKeyErr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/bosh-agent/infrastructure/fakes.FakeSettingsSource
的用法示例。
在下文中一共展示了FakeSettingsSource.PublicKeyErr方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
SettingsValue: boshsettings.Settings{AgentID: "fake-settings-2"},
SettingsErr: errors.New("fake-settings-err-2"),
}
})
JustBeforeEach(func() {
var err error
source, err = NewMultiSettingsSource(source1, source2)
Expect(err).ToNot(HaveOccurred())
})
Describe("PublicSSHKeyForUsername", func() {
Context("when the first source returns public key", func() {
BeforeEach(func() {
source1.PublicKeyErr = nil
})
It("returns public key and public key error from the first source", func() {
publicKey, err := source.PublicSSHKeyForUsername("fake-username")
Expect(err).ToNot(HaveOccurred())
Expect(publicKey).To(Equal("fake-public-key-1"))
})
})
Context("when the second source returns public key", func() {
BeforeEach(func() {
source2.PublicKeyErr = nil
})
It("returns public key from the second source", func() {