本文整理匯總了Golang中github.com/cloudfoundry/bosh-utils/http/fakes.FakeClient類的典型用法代碼示例。如果您正苦於以下問題:Golang FakeClient類的具體用法?Golang FakeClient怎麽用?Golang FakeClient使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了FakeClient類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
"net/http"
fakehttp "github.com/cloudfoundry/bosh-utils/http/fakes"
boshlog "github.com/cloudfoundry/bosh-utils/logger"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/cloudfoundry/bosh-utils/http"
)
var _ = Describe("RetryClient", func() {
Describe("Do", func() {
var (
retryClient Client
maxAttempts int
fakeClient *fakehttp.FakeClient
)
BeforeEach(func() {
fakeClient = fakehttp.NewFakeClient()
logger := boshlog.NewLogger(boshlog.LevelNone)
maxAttempts = 7
retryClient = NewRetryClient(fakeClient, uint(maxAttempts), 0, logger)
})
It("returns response from retryable request", func() {
fakeClient.SetMessage("fake-response-body")
fakeClient.StatusCode = 204
示例2:
. "github.com/cloudfoundry/bosh-utils/http"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
fakehttp "github.com/cloudfoundry/bosh-utils/http/fakes"
boshlog "github.com/cloudfoundry/bosh-utils/logger"
)
var _ = Describe("RequestRetryable", func() {
Describe("Attempt", func() {
var (
requestRetryable RequestRetryable
request *http.Request
fakeClient *fakehttp.FakeClient
)
BeforeEach(func() {
fakeClient = fakehttp.NewFakeClient()
logger := boshlog.NewLogger(boshlog.LevelNone)
request = &http.Request{
Body: ioutil.NopCloser(strings.NewReader("fake-request-body")),
}
requestRetryable = NewRequestRetryable(request, fakeClient, logger)
})
It("calls Do on the delegate", func() {
示例3:
"errors"
"io/ioutil"
"strings"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/cloudfoundry/bosh-davcli/client"
davconf "github.com/cloudfoundry/bosh-davcli/config"
fakehttp "github.com/cloudfoundry/bosh-utils/http/fakes"
)
var _ = Describe("Client", func() {
var (
fakeHTTPClient *fakehttp.FakeClient
config davconf.Config
client Client
)
BeforeEach(func() {
fakeHTTPClient = fakehttp.NewFakeClient()
client = NewClient(config, fakeHTTPClient)
})
Describe("Get", func() {
It("returns the response body from the given path", func() {
fakeHTTPClient.StatusCode = 200
fakeHTTPClient.SetMessage("response")
responseBody, err := client.Get("/")
Expect(err).NotTo(HaveOccurred())