當前位置: 首頁>>代碼示例>>Golang>>正文


Golang mocks.NewResponseWithStatus函數代碼示例

本文整理匯總了Golang中github.com/Azure/azure-sdk-for-go/Godeps/_workspace/src/github.com/Azure/go-autorest/autorest/mocks.NewResponseWithStatus函數的典型用法代碼示例。如果您正苦於以下問題:Golang NewResponseWithStatus函數的具體用法?Golang NewResponseWithStatus怎麽用?Golang NewResponseWithStatus使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了NewResponseWithStatus函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: TestClientPollAsNeededPollsForDuration

func TestClientPollAsNeededPollsForDuration(t *testing.T) {
	c := Client{}
	c.PollingMode = PollUntilDuration
	c.PollingDuration = 10 * time.Millisecond

	s := mocks.NewSender()
	s.EmitStatus("202 Accepted", http.StatusAccepted)
	c.Sender = s

	r := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)
	mocks.SetAcceptedHeaders(r)
	s.SetResponse(r)

	d1 := 10 * time.Millisecond
	start := time.Now()
	resp, _ := c.PollAsNeeded(r)
	d2 := time.Now().Sub(start)
	if d2 < d1 {
		t.Errorf("autorest: Client#PollAsNeeded did not poll for the expected duration -- expected %v, actual %v",
			d1.Seconds(), d2.Seconds())
	}

	Respond(resp,
		ByClosing())
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:25,代碼來源:client_test.go

示例2: TestResponseRequiresPollingReturnsFalseForUnexpectedStatusCodes

func TestResponseRequiresPollingReturnsFalseForUnexpectedStatusCodes(t *testing.T) {
	resp := mocks.NewResponseWithStatus("500 InternalServerError", http.StatusInternalServerError)
	mocks.SetAcceptedHeaders(resp)

	if ResponseRequiresPolling(resp) {
		t.Error("autorest: ResponseRequiresPolling did not return false when ignoring a status code")
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:8,代碼來源:autorest_test.go

示例3: TestNewPollingRequestLeavesBodyOpenWhenLocationHeaderIsMissing

func TestNewPollingRequestLeavesBodyOpenWhenLocationHeaderIsMissing(t *testing.T) {
	resp := mocks.NewResponseWithStatus("500 InternalServerError", http.StatusInternalServerError)

	NewPollingRequest(resp, NullAuthorizer{})
	if !resp.Body.(*mocks.Body).IsOpen() {
		t.Error("autorest: NewPollingRequest closed the http.Request Body when the Location header was missing")
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:8,代碼來源:autorest_test.go

示例4: TestGetPollingLocationReturnsEmptyStringForMissingLocation

func TestGetPollingLocationReturnsEmptyStringForMissingLocation(t *testing.T) {
	resp := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)

	l := GetPollingLocation(resp)
	if len(l) != 0 {
		t.Errorf("autorest: GetPollingLocation return a value without a Location header -- received %v", l)
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:8,代碼來源:autorest_test.go

示例5: TestNewPollingRequestDoesNotReturnARequestWhenLocationHeaderIsMissing

func TestNewPollingRequestDoesNotReturnARequestWhenLocationHeaderIsMissing(t *testing.T) {
	resp := mocks.NewResponseWithStatus("500 InternalServerError", http.StatusInternalServerError)

	req, _ := NewPollingRequest(resp, NullAuthorizer{})
	if req != nil {
		t.Error("autorest: NewPollingRequest returned an http.Request when the Location header was missing")
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:8,代碼來源:autorest_test.go

示例6: TestResponseRequiresPollingDefaultsToAcceptedStatusCode

func TestResponseRequiresPollingDefaultsToAcceptedStatusCode(t *testing.T) {
	resp := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)
	mocks.SetAcceptedHeaders(resp)

	if !ResponseRequiresPolling(resp) {
		t.Error("autorest: ResponseRequiresPolling failed to create a request for default 202 Accepted status code")
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:8,代碼來源:autorest_test.go

示例7: TestNewPollingRequestClosesTheResponseBody

func TestNewPollingRequestClosesTheResponseBody(t *testing.T) {
	resp := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)
	mocks.SetAcceptedHeaders(resp)

	NewPollingRequest(resp, NullAuthorizer{})
	if resp.Body.(*mocks.Body).IsOpen() {
		t.Error("autorest: NewPollingRequest failed to close the response body when creating a new request")
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:9,代碼來源:autorest_test.go

示例8: Do

func (s *Senders) Do(req *http.Request) (*http.Response, error) {
	if len(*s) == 0 {
		response := mocks.NewResponseWithStatus("", http.StatusInternalServerError)
		return response, fmt.Errorf("no sender for %q", req.URL)
	}
	sender := (*s)[0]
	*s = (*s)[1:]
	return sender.Do(req)
}
開發者ID:imoapps,項目名稱:juju,代碼行數:9,代碼來源:senders.go

示例9: TestClientIsPollingAllowed

func TestClientIsPollingAllowed(t *testing.T) {
	c := Client{PollingMode: PollUntilAttempts}
	r := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)

	err := c.IsPollingAllowed(r)
	if err != nil {
		t.Errorf("autorest: Client#IsPollingAllowed returned an error for an http.Response that requires polling (%v)", err)
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:9,代碼來源:client_test.go

示例10: TestClientIsPollingAllowedIgnoresDisabledForIgnoredStatusCode

func TestClientIsPollingAllowedIgnoresDisabledForIgnoredStatusCode(t *testing.T) {
	c := Client{PollingMode: PollUntilAttempts}
	r := mocks.NewResponseWithStatus("400 BadRequest", http.StatusBadRequest)

	err := c.IsPollingAllowed(r)
	if err != nil {
		t.Errorf("autorest: Client#IsPollingAllowed returned an error for an http.Response that requires polling (%v)", err)
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:9,代碼來源:client_test.go

示例11: TestClientIsPollingAllowedIgnoredPollingMode

func TestClientIsPollingAllowedIgnoredPollingMode(t *testing.T) {
	c := Client{PollingMode: DoNotPoll}
	r := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)

	err := c.IsPollingAllowed(r)
	if err == nil {
		t.Error("autorest: Client#IsPollingAllowed failed to return an error when polling is disabled")
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:9,代碼來源:client_test.go

示例12: TestGetPollingDelayReturnsDefaultDelayIfRetryHeaderIsMissing

func TestGetPollingDelayReturnsDefaultDelayIfRetryHeaderIsMissing(t *testing.T) {
	resp := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)

	d := GetPollingDelay(resp, DefaultPollingDelay)
	if d != DefaultPollingDelay {
		t.Errorf("autorest: GetPollingDelay failed to returned the default delay for a missing Retry-After header -- expected %v, received %v",
			DefaultPollingDelay, d)
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:9,代碼來源:autorest_test.go

示例13: TestGetPollingDelay

func TestGetPollingDelay(t *testing.T) {
	resp := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)
	mocks.SetAcceptedHeaders(resp)

	d := GetPollingDelay(resp, DefaultPollingDelay)
	if d != mocks.TestDelay {
		t.Errorf("autorest: GetPollingDelay failed to returned the expected delay -- expected %v, received %v", mocks.TestDelay, d)
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:9,代碼來源:autorest_test.go

示例14: TestGetPollingLocation

func TestGetPollingLocation(t *testing.T) {
	resp := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)
	mocks.SetAcceptedHeaders(resp)

	l := GetPollingLocation(resp)
	if len(l) == 0 {
		t.Errorf("autorest: GetPollingLocation failed to return Location header -- expected %v, received %v", mocks.TestURL, l)
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:9,代碼來源:autorest_test.go

示例15: TestNewPollingRequestProvidesTheURL

func TestNewPollingRequestProvidesTheURL(t *testing.T) {
	resp := mocks.NewResponseWithStatus("202 Accepted", http.StatusAccepted)
	mocks.SetAcceptedHeaders(resp)

	req, _ := NewPollingRequest(resp, NullAuthorizer{})
	if req.URL.String() != mocks.TestURL {
		t.Errorf("autorest: NewPollingRequest did not create an HTTP with the expected URL -- received %v, expected %v", req.URL, mocks.TestURL)
	}
}
開發者ID:kbxkb,項目名稱:azure-sdk-for-go,代碼行數:9,代碼來源:autorest_test.go


注:本文中的github.com/Azure/azure-sdk-for-go/Godeps/_workspace/src/github.com/Azure/go-autorest/autorest/mocks.NewResponseWithStatus函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。