-
Notifications
You must be signed in to change notification settings - Fork 3
/
mch_test.go
68 lines (64 loc) · 1.73 KB
/
mch_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
// Copyright 2020 YBCZ, Inc. All rights reserved.
//
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file in the root of the source
// tree.
package wx
import (
"bytes"
"github.com/blusewang/wx/mch_api"
"io/ioutil"
"log"
"net/http"
"reflect"
"testing"
"time"
)
func TestMchAccount_NewMchReq(t *testing.T) {
log.SetFlags(log.Ltime | log.Lshortfile)
RegisterHook(func(req *http.Request, reqBody []byte, res *http.Response, startAt time.Time, stopAt time.Time, err error) {
log.Println(req, res, err)
raw, _ := ioutil.ReadAll(res.Body)
log.Println(string(raw))
res.Body = ioutil.NopCloser(bytes.NewReader(raw))
})
mch, err := NewMchAccount("", "", nil, nil, nil)
var data mch_api.PayProfitSharingRes
var body = mch_api.PayProfitSharingData{
TransactionId: "4200000531202004307536721907",
OutOrderNo: "TSF_216144_1065_ye7DvHdSed",
}
_ = body.SerReceivers([]mch_api.PayProfitSharingReceiver{
{
Type: "",
Account: "",
Amount: 10,
Description: "",
},
})
err = mch.NewMchReqWithApp(mch_api.PayProfitSharing, "wxbb4d55eb95f282f4").
Send(&body).
UseHMacSign().
UsePrivateCert().
Bind(&data).Do()
log.Println(err)
log.Println(data)
}
func TestMchAccount_OrderSign(t *testing.T) {
//var mch MchAccount
var data interface{} = &mch_api.PayUnifiedOrderRes{
MchBaseResponse: mch_api.MchBaseResponse{
ReturnCode: "ReturnCode",
ReturnMsg: "ReturnMsg",
},
MchBase: mch_api.MchBase{
MchId: "MchId",
AppId: "AppId",
},
PrepayId: "24wer",
}
vs := reflect.ValueOf(data).Elem()
log.Println(vs.Field(0))
vs.FieldByName("MchBase").FieldByName("MchId").Set(reflect.ValueOf("asdf"))
log.Println(vs.FieldByName("MchBase").FieldByName("MchId"))
}