order_update.py 1.82 KB
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()