test_source-total-list.py 4.06 KB
import json

from atdd.ATDDCase import ATDDCase
import unittest


def jsonBeautifull(data):
    return "业务处理错误\n" + json.dumps(data, indent=4)


# 积分来源统计接口
class ListBusinessStrategy(ATDDCase):
    def setUp(self):
        pass

    # 默认
    def test_source(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
        data = {
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 昨天全部应用
    def test_source1all(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
        data = {
            "beginTotalTime": 1501603200000,  # 2017-08-02
            "endTotalTime": 1501689599000  # 2017-08-02
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 近7天全部应用
    def test_source7all(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
        data = {
            "beginTotalTime": 1501171200000,  # 2017-07-28
            "endTotalTime": 1501689600000  # 2017-08-02
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 昨天应用未知
    def test_source1unkonw(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
        data = {
            "businessKey": "unknown",
            "beginTotalTime": 1501603200000,  # 2017-08-02
            "endTotalTime": 1501689599000  # 2017-08-02
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 昨天同事圈评论话题
    def test_source_1colleague_circle(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
        data = {
            "businessKey": "colleague_circle",
            "beginTotalTime": 1501603200000,  # 2017-08-02
            "endTotalTime": 1501689599000  # 2017-08-02
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 近7天同事圈评论话题
    def test_source_7colleague_circle(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
        data = {
            "businessKey": "colleague_circle",
            "beginTotalTime": 1500998400000,  # 2017-07-26
            "endTotalTime": 1501689599000  # 2017-08-02
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

    # 一年同事圈评论话题
    def test_source_1yearcolleague_circle(self):
        header_json = {"Content-Type": "application/json; charset=utf-8"}
        url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/source-total-list"
        data = {
            "businessKey": "colleague_circle",
            "beginTotalTime": 1451577600000,  # 2016-01-01
            "endTotalTime": 1501516800000  # 2017-08-01
        }
        print(url, json.dumps(data))
        result = self.post(url, None, json=data, headers=header_json)
        print(result.json())
        print(result)

if __name__ == '__main__':
    unittest.main()