dswg47377 2019-03-30 00:13
浏览 357
已采纳

如何在golang中为我的测试用例正确创建模拟http.request?

I want to write a test case to verify my parameter parser function. The following is my sample code to mock a http.request

rawUrl := "http://localhost/search/content?query=test"

func createSearchRequest(rawUrl string) SearchRequest {
    api := NewWebService()

    req, err := http.NewRequest("POST", rawUrl, nil)
    if err != nil {
        logger.Fatal(err)
    }
    logger.Infof("%v", req)
    return api.searchRequest(req)
}

My web server use github.com/gorilla/mux as route

router := mux.NewRouter()

router.HandleFunc("/search/{query_type}", searchApiService.Search).Methods("GET")

But in my test case I cannot get {query_type} from mock http.request

func (api WebService) searchRequest(req *http.Request){
    // skip ....

    vars := mux.Vars(req)
    queryType := vars["query_type"]
    logger.Infof("queryType:%v", queryType)

    //skip ....
}

How can I get mux's path parameter in my test case?

  • 写回答

1条回答 默认 最新

  • dongyu5482 2019-03-30 07:48
    关注
    func TestMaincaller(t *testing.T) {
        r,_ := http.NewRequest("GET", "hello/1", nil)
        w := httptest.NewRecorder()
       //create a map of variable and set it into mux
        vars := map[string]string{
        "parameter_name": "parametervalue",
        }
    
       r = mux.SetURLVars(r, vars)
      callfun(w,r)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?