test_Integral.py
2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/python
# coding=utf-8
'''
Author: jipeigong 2017年7月19日17:53:38
'''
from atdd.PcApiTest import PcApiTest
import os
class Integral(PcApiTest):
#登录
def setUp(self):
self.do_login(self.host, self.mobile, self.psw, self.domain)
# 上传等级icon接口
def test_UploadAtta(self):
interfaceUrl = "/Public/Apicp/Attachment/UploadAtta"
data = {
"atMediatype": 1,
"_identifier": "dengta"
}
file_path = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)) + '/Integral/data/image/icon.jpg'
files = {'file': ('icon.jpg', open(file_path, 'rb'), 'image/jpg')}
result = self.PcApiTest(interfaceUrl, data,files=files)
print(result)
return result
#积分查询>积分详情>基本信息接口
def test_searchIntegralDetail(self):
interfaceUrl = "/Integral/Apicp/Integral/Detail"
data = {
'memUid': 'C9E10E4A7F0000017B20C6105BF54EB5',
'miType': 'mi_type1'
}
print(type(data))
result = self.PcApiTest(interfaceUrl, data)
print(result)
return result
#用户积分列表接口
def test_IntegralMemberList(self):
interfaceUrl = "/Integral/Apicp/Integral/MemberList"
data = {
'memUsername': '小红红',
'dpId': 'BA1C76447F0000012B9DFD35B75ED2F7',
'miType':'mi_type0',
'page': None,
'limit': None
}
result = self.PcApiTest(interfaceUrl, data)
print(result)
return result
# 修改企业积分等级升级类型接口
def test_Modify_allpeoplecurrent(self):
interfaceUrl = "/Integral/Apicp/Level/UpdateUpgradeType"
data = {
'eilId': '318E60357F000001778E92F3BFD993C7',
'upgradeType': '2'
}
result = self.PcApiTest(interfaceUrl, data)
print(result)
print(self.host + "/" + self.domain + interfaceUrl)
# self.assertEqual("ok", result["errmsg"], msg=result["errmsg"])
return result