test_add_org.py
1.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
# Author: jipeihong 2017年11月7日14:52:52
from atdd.PcPost import PcPost
import random
class AddOrg(PcPost):
interfaceUrl = "/contact/Apicp/Department/Save"
def setUp(self):
self.do_login(self.host, self.mobile, self.psw, self.domain)
def get_top_org(self):
url = "/Contact/Apicp/Department/List"
data = {
"_identifier": 'contact',
"limit": 99999
}
result = self.PcPost(url,data)
top_dpId = result['result']['list'][0]['dpId']
return top_dpId
def test_add_org(self):
x = random.randint(0,1000)
top_dpId = self.get_top_org()
data = {
"department_id": None,
"parent_id": top_dpId, # 顶级部门
"dp_name": "总部组织"+ str(x),
"is_all": 1,
"is_dept": 0,
"dpt_id": "755DD9820A69039F18591A29AC42531A", # 组织类型
"dp_serial_num": 1,
"dp_leader_uids[0]": self.jipeihong_uid
}
result = self.PcPost(self.interfaceUrl,data)
print(result)
return result