-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder_test.go
69 lines (57 loc) · 1.4 KB
/
order_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package wxgamevp
import (
"errors"
"github.com/birjemin/wxgamevp/utils"
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
"time"
)
func TestGetOrder(t *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
path := r.URL.EscapedPath()
if path != getOrderURI {
t.Fatalf("path is invalid: %s, %s'", getOrderURI, path)
}
if err := r.ParseForm(); err != nil {
t.Fatal(err)
}
queries := []string{"access_token"}
for _, v := range queries {
content := r.Form.Get(v)
if content == "" {
t.Fatalf("param %v can not be empty", v)
}
}
body, _ := ioutil.ReadAll(r.Body)
if string(body) == "" {
t.Fatal("body is empty")
}
w.WriteHeader(http.StatusOK)
raw := `{"errcode":0,"errmsg":"","payfororder":{"out_trade_no":"1000","order_no":"1001","openid":"1002","create_time":10,"amount":10,"status":10,"zone_id":"10","env":1,"pay_time":10}}`
if _, err := w.Write([]byte(raw)); err != nil {
t.Fatal(err)
}
}))
defer ts.Close()
httpClient := &utils.HTTPClient{
Client: &http.Client{
Timeout: 5 * time.Second,
},
}
order := Order{
AppID: "wx1234567",
OrderNo: "1001",
OutTradeNo: "1000",
AccessToken: "ACCESSTOKEN",
HTTPRequest: httpClient,
}
if ret, err := order.doGetOrder(ts.URL); err != nil {
t.Error(err)
} else {
if ret.ErrCode != 0 {
t.Error(errors.New("msg: " + ret.ErrMsg))
}
}
}