forked from smartwalle/alipay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_test.go
60 lines (52 loc) · 1.59 KB
/
user_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
package alipay_test
import (
"testing"
"github.com/smartwalle/alipay/v3"
)
func TestClient_AgreementQuery(t *testing.T) {
t.Log("========== AgreementQuery ==========")
param := alipay.AgreementQuery{}
t.Log(param)
rsp, err := client.AgreementQuery(param)
if err != nil {
t.Fatal(err)
}
if rsp.IsFailure() {
t.Fatal(rsp.Msg, rsp.SubMsg)
}
t.Logf("%v", rsp)
}
func TestClient_AgreementPageSign(t *testing.T) {
t.Log("========== AgreementPageSign ==========")
param := alipay.AgreementPageSign{
ProductCode: "train",
ExternalAgreementNo: "sign1000",
}
rsp, err := client.AgreementPageSign(param)
if err != nil {
t.Fatal(err)
}
t.Log(rsp)
}
func TestClient_AgreementUnsign(t *testing.T) {
t.Log("========== AgreementUnsign ==========")
param := alipay.AgreementUnsign{
AgreementNo: "sign1000",
}
rsp, err := client.AgreementUnsign(param)
if err != nil {
t.Fatal(err)
}
if rsp.IsFailure() {
t.Fatal(rsp.Msg, rsp.SubMsg)
}
t.Logf("%v", rsp)
}
func TestClient_DecodePhoneNumber(t *testing.T) {
var payload = `{"response":"3UO4ElDwNFuhOg+3UVTlCaiHYgtPFis0EOEy/gBPRuCw1ZX4P5gNsbbATblw5LWfKsEpa5FuFwNUrz14E2Dr8Q==","sign":"N8T+WmCZk5ulYd32bS9uR9KFYkTojqKaYKVAi3HFEp/6RrFrSMoRzD5J29OHfghlxoOe6ZG5Hf2ZKaxdtxURgY04YhmPbygS/l1ECJDmB2yGsPPaTbFP/o20QdpPmFriAVOiWwQLbnVUzm0uwb33zx38YUhyg8L9Rw/q0ts7ZQbIooJXg4JpLQ7cpAScxilRg1JnsTzmClz+UQbOTatnl8gz9NqyTStuAUXecVEOGR/nHMkO53WFkJw3TgAYEdWMclORBUoylQ3O+n8Dkq0uBrWoNQnm7921GUZ9QbrZjcE+zbkoxBfR1jxA7Pp78Pyy6eTVcfyZVO/xQfliBBm5nQ=="}`
var mobile, err = client.DecodePhoneNumber(payload)
if err != nil {
t.Fatal(err)
}
t.Log(mobile)
}