Commit b347ee10d46dfaac12982aeef6cff6aef370d489
Merge branch 'feature/jipeihong' into 'master'
add requirements.txt See merge request !14
Showing
12 changed files
with
43 additions
and
9 deletions
atdd/MobilePost.py
@@ -23,8 +23,7 @@ class MobilePost(ATDDCase): | @@ -23,8 +23,7 @@ class MobilePost(ATDDCase): | ||
23 | 23 | ||
24 | 24 | ||
25 | # 手机端接口模板 | 25 | # 手机端接口模板 |
26 | - def MobilePost(self, interfaceUrl, data=None, **options): | ||
27 | - | 26 | + def mobile_post(self, interfaceUrl, data=None, **options): |
28 | self.interfaceUrl = interfaceUrl | 27 | self.interfaceUrl = interfaceUrl |
29 | self.data = data | 28 | self.data = data |
30 | 29 | ||
@@ -36,7 +35,7 @@ class MobilePost(ATDDCase): | @@ -36,7 +35,7 @@ class MobilePost(ATDDCase): | ||
36 | self.assertEquals(0, errcode) | 35 | self.assertEquals(0, errcode) |
37 | return result | 36 | return result |
38 | 37 | ||
39 | - # 后端接口模板-异常判断 | 38 | + # 手机端接口模板-异常判断 |
40 | def MobilePostAbnormal(self, interfaceUrl, data=None, code=None, **options): | 39 | def MobilePostAbnormal(self, interfaceUrl, data=None, code=None, **options): |
41 | self.interfaceUrl = interfaceUrl | 40 | self.interfaceUrl = interfaceUrl |
42 | self.data = data | 41 | self.data = data |
requirements.txt
0 → 100644
1 | +argh==0.26.2 | ||
2 | +asn1crypto==0.22.0 | ||
3 | +certifi==2017.4.17 | ||
4 | +cffi==1.10.0 | ||
5 | +chardet==3.0.4 | ||
6 | +colorama==0.3.9 | ||
7 | +coverage==4.4.1 | ||
8 | +cryptography==1.9 | ||
9 | +idna==2.5 | ||
10 | +ndg-httpsclient==0.4.2 | ||
11 | +nose==1.3.7 | ||
12 | +nose2==0.6.5 | ||
13 | +pathtools==0.1.2 | ||
14 | +py==1.4.34 | ||
15 | +pyasn1==0.2.3 | ||
16 | +pycparser==2.18 | ||
17 | +pyOpenSSL==17.1.0 | ||
18 | +pytest==3.1.3 | ||
19 | +PyYAML==3.12 | ||
20 | +reload==0.9 | ||
21 | +requests==2.18.1 | ||
22 | +six==1.10.0 | ||
23 | +urllib3==1.21.1 | ||
24 | +watchdog==0.8.3 |
tests/Staff_Management/AdminSettings/test_jobSetting.py renamed to tests/Staff_Management/AdminSettings/Job_setting/test_jobSetting.py
tests/Staff_Management/AdminSettings/public_adminSettings.py renamed to tests/Staff_Management/AdminSettings/Public/public_adminSettings.py
tests/Staff_Management/AdminSettings/test_roleSetting.py renamed to tests/Staff_Management/AdminSettings/Role_setting/test_roleSetting.py
tests/Staff_Management/AdminSettings/Synchronous_address_book/test_synchronous.py
0 → 100644
tests/Staff_Management/Invite/test_Invitation_authority.py
1 | -from atdd.PcPost import PcPost | ||
2 | -from tests.Staff_Management.AdminSettings.test_jobSetting import JobSetting | ||
3 | -from tests.Staff_Management.AdminSettings.test_roleSetting import RoleSetting | ||
4 | import random | 1 | import random |
5 | 2 | ||
3 | +from AdminSettings.Job_setting.test_jobSetting import JobSetting | ||
4 | +from AdminSettings.Role_setting.test_roleSetting import RoleSetting | ||
5 | +from atdd.PcPost import PcPost | ||
6 | + | ||
7 | + | ||
6 | class InvitationAuth(PcPost): | 8 | class InvitationAuth(PcPost): |
7 | 9 | ||
8 | interfaceUrl = "/Public/Apicp/ChooseMem/ConfirmChoose" | 10 | interfaceUrl = "/Public/Apicp/ChooseMem/ConfirmChoose" |
tests/Staff_Management/MemberList/JobList/get_jobid.py
@@ -17,7 +17,7 @@ class JobId(PcPost): | @@ -17,7 +17,7 @@ class JobId(PcPost): | ||
17 | for i in range(len(resultlist)): # 通过序列索引进行遍历 len返回元素个数 | 17 | for i in range(len(resultlist)): # 通过序列索引进行遍历 len返回元素个数 |
18 | jobId = result['result']['list'][i]['jobId'].split() # 切片取出元素 | 18 | jobId = result['result']['list'][i]['jobId'].split() # 切片取出元素 |
19 | jobIdlist[len(jobIdlist):len(jobIdlist)] = jobId | 19 | jobIdlist[len(jobIdlist):len(jobIdlist)] = jobId |
20 | - # print(jobIdlist) | 20 | + print(jobIdlist) |
21 | return jobIdlist | 21 | return jobIdlist |
22 | 22 | ||
23 | def test_get_1jobid(self): | 23 | def test_get_1jobid(self): |
tests/Staff_Management/MemberList/JobList/test_delete_job.py
@@ -11,7 +11,9 @@ class DeleteJob(PcPost): | @@ -11,7 +11,9 @@ class DeleteJob(PcPost): | ||
11 | 11 | ||
12 | # 删除岗位 | 12 | # 删除岗位 |
13 | def test_deletejob(self): | 13 | def test_deletejob(self): |
14 | - jobId = JobId().test_get_1jobid() | 14 | + IDjob = JobId() |
15 | + IDjob.setUp() | ||
16 | + jobId = IDjob.test_get_1jobid() | ||
15 | data = { | 17 | data = { |
16 | 'jobId': jobId # 参数化 | 18 | 'jobId': jobId # 参数化 |
17 | } | 19 | } |
tests/Staff_Management/Organization/public_org.py
@@ -7,6 +7,7 @@ class PulbicOrg(PcPost): | @@ -7,6 +7,7 @@ class PulbicOrg(PcPost): | ||
7 | 7 | ||
8 | # 获取顶级部门的ID | 8 | # 获取顶级部门的ID |
9 | def get_top_org(self): | 9 | def get_top_org(self): |
10 | + self.do_login(self.host, self.mobile, self.psw, self.domain) | ||
10 | url = "/Contact/Apicp/Department/List" | 11 | url = "/Contact/Apicp/Department/List" |
11 | data = { | 12 | data = { |
12 | "_identifier": 'contact', | 13 | "_identifier": 'contact', |
@@ -18,6 +19,7 @@ class PulbicOrg(PcPost): | @@ -18,6 +19,7 @@ class PulbicOrg(PcPost): | ||
18 | 19 | ||
19 | # 查找某一个部门以及其子部门的dpId,以list格式返回 | 20 | # 查找某一个部门以及其子部门的dpId,以list格式返回 |
20 | def get_all_dpId(self,dpParentId): | 21 | def get_all_dpId(self,dpParentId): |
22 | + self.do_login(self.host, self.mobile, self.psw, self.domain) | ||
21 | data = { | 23 | data = { |
22 | "dpParentId":dpParentId | 24 | "dpParentId":dpParentId |
23 | } | 25 | } |
@@ -32,6 +34,7 @@ class PulbicOrg(PcPost): | @@ -32,6 +34,7 @@ class PulbicOrg(PcPost): | ||
32 | 34 | ||
33 | # 获取组织下的人员总数 | 35 | # 获取组织下的人员总数 |
34 | def get_org_user_total(self,dpParentId): | 36 | def get_org_user_total(self,dpParentId): |
37 | + self.do_login(self.host, self.mobile, self.psw, self.domain) | ||
35 | data = { | 38 | data = { |
36 | "dpParentId": dpParentId | 39 | "dpParentId": dpParentId |
37 | } | 40 | } |
@@ -41,6 +44,7 @@ class PulbicOrg(PcPost): | @@ -41,6 +44,7 @@ class PulbicOrg(PcPost): | ||
41 | 44 | ||
42 | # 随机取一个部门,返回部门ID | 45 | # 随机取一个部门,返回部门ID |
43 | def get_random_dptId(self): | 46 | def get_random_dptId(self): |
47 | + self.do_login(self.host, self.mobile, self.psw, self.domain) | ||
44 | top_Id = self.get_top_org() | 48 | top_Id = self.get_top_org() |
45 | dpId_all = self.get_all_dpId(top_Id) # 所有部门的dpId | 49 | dpId_all = self.get_all_dpId(top_Id) # 所有部门的dpId |
46 | x = random.randint(0, len(dpId_all) - 1) # 在所有部门中随机取一个部门 | 50 | x = random.randint(0, len(dpId_all) - 1) # 在所有部门中随机取一个部门 |
tests/Staff_Management/Organization/test_add_org.py
@@ -34,6 +34,9 @@ class AddOrg(PcPost): | @@ -34,6 +34,9 @@ class AddOrg(PcPost): | ||
34 | def test_add_mendian(self): | 34 | def test_add_mendian(self): |
35 | x = random.randint(0,1000) | 35 | x = random.randint(0,1000) |
36 | top_dpId = PulbicOrg().get_top_org() | 36 | top_dpId = PulbicOrg().get_top_org() |
37 | + # publicOrg = PulbicOrg() | ||
38 | + # publicOrg.setUp() | ||
39 | + # top_dpId = publicOrg.get_top_org() | ||
37 | data = { | 40 | data = { |
38 | "department_id": None, | 41 | "department_id": None, |
39 | "parent_id": top_dpId, # 顶级部门 | 42 | "parent_id": top_dpId, # 顶级部门 |
tests/Staff_Management/Organization/tets_edit_org.py
@@ -11,7 +11,7 @@ class EditOrg(PcPost): | @@ -11,7 +11,7 @@ class EditOrg(PcPost): | ||
11 | self.do_login(self.host, self.mobile, self.psw, self.domain) | 11 | self.do_login(self.host, self.mobile, self.psw, self.domain) |
12 | 12 | ||
13 | def test_edit_query(self): | 13 | def test_edit_query(self): |
14 | - # 随机取一个部门ID | 14 | + # 随机取一个部门ID,判断业务正确性 |
15 | dptId = PulbicOrg().get_random_dptId() | 15 | dptId = PulbicOrg().get_random_dptId() |
16 | 16 | ||
17 | data = { | 17 | data = { |