第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

模擬 API 時(shí)如何保證請求正確發(fā)生?

模擬 API 時(shí)如何保證請求正確發(fā)生?

Go
吃雞游戲 2022-10-17 10:13:38
假設(shè)我正在測試一個(gè)調(diào)用 Web 服務(wù)的功能,并且該服務(wù)被模擬為httptest.NewServerfunc TestSomeFeature(t *testing.T) {    server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {        w.WriteHeader(200)    }))    SomeFeature(server.URL, "foo")}func SomeFeature(host, a string) {    if a == "foo" {        http.Get(fmt.Sprintf("%v/foo", host))    }    if a == "bar" {        http.Get(fmt.Sprintf("%v/bar", host))    }}如何斷言服務(wù)器是使用正確的 url 調(diào)用的,/foo如果使用錯(cuò)誤的 url 調(diào)用或根本沒有調(diào)用它,則測試失???
查看完整描述

1 回答

?
慕標(biāo)5832272

TA貢獻(xiàn)1966條經(jīng)驗(yàn) 獲得超4個(gè)贊

你可以這樣做:


func TestSomeFeature(t *testing.T) {

    called := false

    server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {

        // assert that strings.Contains(r.RequestURI, "/foo") is true

        called = true

        w.WriteHeader(200)

    }))


    SomeFeature(server.URL, "foo")

    // assert that called is true

}


查看完整回答
反對 回復(fù) 2022-10-17
  • 1 回答
  • 0 關(guān)注
  • 102 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號