Golang:如何模拟/单元测试嵌套函数?

时间:2017-07-12 06:38:55

标签: unit-testing go net-http

我有一个在其他函数中被调用的函数。

send_api.go

 function *send_api*(client *http.Client,url string) map[string]string,error {
    //send api request and parse the response and return the dict 

    return dictmap
    for eg:{apple fruit}       
}

然后在 main()函数

中调用此函数
func *main()*{

  getmap :=send_api(client *http.Client,"test.com")
 }

good.go

func *get_dict_key*(key string) string,error {
   value,ok := get_map[key]
   if !ok {
          return fmt.Errorf("value is nil")
   }
   return value ,nil    
 }

function *good*(client *http.client, key string) {
 //get a dictionary value
 dcmap,err := get_dict_key("apple")
 if err != nil {
  panic(err)
  }
 value := dcmap[key]

 //use the value to do other processing
 }

unit_test

  func Test_good(t *testing.T) {
      Convey("AND quadra and conusl dcs are mapped",t, func() {
          mockResponses := send mock GET request to the URL and receive a response{"apple":"fruit"}
        }
        server, client := tools.TestClientServer(&mockResponses)
        defer server.Close()
        getMap := send_api(client.HTTPClient, "http://test")
        //At this point getMAP has value {'apple' 'fruit'}
        **q1.How to pass getMap value inside this get_dict_fkey function during testing?**
        value := get_dict_key("apple")
        good(client,"apple") #error:(value is nil)

Q1。 ** q1。如何在测试期间将getMap值传递给此get_dict_function?*

任何指针都会有帮助吗?

1 个答案:

答案 0 :(得分:2)

假设您在模拟http.Client时遇到困难,我想建议以下选项。

<强> 1。重构代码

您需要以这样的方式重构代码,即您可以将可模拟的依赖项传递给您要测试的函数。

例如,

重构func send_api(client *http.Client,url string) map[string]string,error以便它执行api请求并获取/解析数据,但是从中调用另一个函数,进行进一步处理(实际上你想要测试而不是http.Client部分)。

但是,使用这种方法,您可能无法测试端到端流程。但是你可以单独测试这些功能。

<强> 2。模拟http.Client

同样,您可能需要重构代码。可以找到一些相关文章here

更新:建议观看justforfunc #16: unit testing HTTP servers