test_integralIndexList.py 1.04 KB
from atdd.ATDDCase import ATDDCase


# 查询积分明细列表/分页(积分首页使用)
class IntegralIndexList(ATDDCase):

    def setUp(self):
        pass

    def test_integralIndexList(self):
        app = "integral"
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + app + "/qy/integral/integralIndexList"
        data = {
            "memUid": self.jipeihong_uid,
            "miType": "mi_type1"
        }
        result = self.post(url, json=data, headers=header_json)
        print(url)
        print(result.json())

    # 积分/学分明细
    def test_detail(self):
        app = "integral"
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + app + "/qy/integral/detail"
        data = {
            "memUid": self.jipeihong_uid,
            "miType": "mi_type1"
        }
        result = self.post(url, json=data, headers=header_json)
        print(url)
        print(result.json())