本文整理匯總了Golang中github.com/cloudfoundry/bosh-utils/httpclient/fakes.FakeHTTPClient.SetPostBehavior方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeHTTPClient.SetPostBehavior方法的具體用法?Golang FakeHTTPClient.SetPostBehavior怎麽用?Golang FakeHTTPClient.SetPostBehavior使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/bosh-utils/httpclient/fakes.FakeHTTPClient
的用法示例。
在下文中一共展示了FakeHTTPClient.SetPostBehavior方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
var (
fakeHTTPClient *fakehttpclient.FakeHTTPClient
agentClient agentclient.AgentClient
)
BeforeEach(func() {
logger := boshlog.NewLogger(boshlog.LevelNone)
fakeHTTPClient = fakehttpclient.NewFakeHTTPClient()
toleratedErrorCount := 2
agentClient = NewAgentClient("http://localhost:6305", "fake-uuid", 0, toleratedErrorCount, fakeHTTPClient, logger)
})
Describe("get_task", func() {
Context("when the http client errors", func() {
It("should retry", func() {
fakeHTTPClient.SetPostBehavior(`{"value":{"agent_task_id":"fake-agent-task-id","state":"running"}}`, 200, nil)
fakeHTTPClient.SetPostBehavior("", 0, errors.New("connection reset by peer"))
fakeHTTPClient.SetPostBehavior("", 0, errors.New("connection reset by peer"))
fakeHTTPClient.SetPostBehavior(`{"value":{"agent_task_id":"fake-agent-task-id","state":"running"}}`, 200, nil)
fakeHTTPClient.SetPostBehavior(`{"value":"stopped"}`, 200, nil)
err := agentClient.Stop()
Expect(err).ToNot(HaveOccurred())
})
Context("when the http client errors more times than the error retry count", func() {
It("should return the error", func() {
fakeHTTPClient.SetPostBehavior(`{"value":{"agent_task_id":"fake-agent-task-id","state":"running"}}`, 200, nil)
fakeHTTPClient.SetPostBehavior("", 0, errors.New("connection reset by peer 1"))
fakeHTTPClient.SetPostBehavior("", 0, errors.New("connection reset by peer 2"))
fakeHTTPClient.SetPostBehavior("", 0, errors.New("connection reset by peer 3"))
err := agentClient.Stop()
示例2:
"github.com/cloudfoundry/bosh-agent/agentclient"
"github.com/cloudfoundry/bosh-agent/settings"
fakehttpclient "github.com/cloudfoundry/bosh-utils/httpclient/fakes"
boshlog "github.com/cloudfoundry/bosh-utils/logger"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("CertManager", func() {
var (
fakeHTTPClient *fakehttpclient.FakeHTTPClient
agentClient agentclient.AgentClient
)
BeforeEach(func() {
logger := boshlog.NewLogger(boshlog.LevelNone)
fakeHTTPClient = fakehttpclient.NewFakeHTTPClient()
agentClient = NewAgentClient("http://localhost:6305", "fake-uuid", 0, 10, fakeHTTPClient, logger)
fakeHTTPClient.SetPostBehavior(`{"value":{"agent_task_id":"fake-agent-task-id","state":"running"}}`, 200, nil)
fakeHTTPClient.SetPostBehavior(`{"value":"updated"}`, 200, nil)
})
It("adds and registers new certs on a fresh machine", func() {
var cert string = "This certificate is the first one. It's more awesome than the other one.\n-----BEGIN CERTIFICATE-----\nMIIEJDCCAwygAwIBAgIJAO+CqgiJnCgpMA0GCSqGSIb3DQEBBQUAMGkxCzAJBgNV\nBAYTAkNBMRMwEQYDVQQIEwpTb21lLVN0YXRlMSIBAgIJAO+CqgiJnCgpMA0GCSqGSIb3DQEBBQUAMGkxCzAJBgNV\nBAYTAkNBMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQxIjAgBgNVBAMTGWR4MTkwLnRvci5waXZvdGFsbGFicy5EwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQxIjAgBgNVBAMTGWR4MTkwLnRvci5waXZvdGFsbGFicy5j\nb20wHhcNMTUwNTEzMTM1NjA2WhcNMjUwNTEwMTM1NjA2WjBpMQswCQYDVQQGEwJD\nQTETMBEGA1UECBMKU29tZGackAF\nqokoSBXzJCJTt2P681gyqBDr/hUYzqpoXUsOTRisScbEbaSv8hTiTeFJUMyNQAqn\nDtmvI8bXKxU=\n-----END CERTIFICATE-----\n"
updateSettings := settings.UpdateSettings{TrustedCerts: cert}
err := agentClient.UpdateSettings(updateSettings)
Expect(err).NotTo(HaveOccurred())
})
})