test_get_business_strategy.py
758 Bytes
import json
from atdd.ATDDCase import ATDDCase
import unittest
# 企业业务积分策略详情接口
class GetBbusinessStrategy(ATDDCase):
def setUp(self):
pass
# 同事圈
def test_get_business_strategy(self):
header_json = {"Content-Type": "application/json; charset=utf-8"}
url = self.uc_host + "/a/" + self.domain + "/" + self.app + "/qy/integral/get-business-strategy"
data = {
"eibsId": "",
"businessKey": "colleague_circle",
"businessAct": "comment"
}
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()