order_update.py
1.82 KB
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
import unittest
import json
from atdd.ATDDCase import ATDDCase
class Update(ATDDCase):
def setUp(self):
pass
def test_order_update(self):
app = 'yuanquan'
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = "http://t-rst.vchangyi.com/s/qy/pay/callback" # 测试环境
# url = "http://restapi.99hr.com/s/qy/pay/callback" # 线上环境
data = {
# "enterprise": self.domain,
# "app": app,
"ordId": "47D048487F0000016F121DB71D51BCE8",
# "ordPayStatus": 2, # 支付状态
# "ordPayType": 3, # 支付方式
"ordTransactionNo": "SF2018032117073511000865",
"ordPayAmout": 10000000
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
def test_get(self):
app = 'yuanquan'
header_json = {"Content-Type": "application/json; charset=utf-8"}
# url = "http://t-rst.vchangyi.com/s/qy/pay/callback" # 测试环境
url = "http://restapi.99hr.com/b/C7B740560A69039F6A3653F6A294245F/qy/charge/get" # 线上环境
data = {
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
def test_order_add(self):
app = 'live'
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + '/b/' + self.domain + "/qy/order/add"
data = {
"enterprise": self.domain,
"app": app,
"ordPayStatus": 2,
}
print(url, json.dumps(data))
result = self.post(url, None, json=data, headers=header_json)
print(result.json())
if __name__ == '__main__':
unittest.main()