test_getDepartments.py
837 Bytes
'''
Author: jipeigong 2017年7月19日17:53:38
'''
from atdd.MobileApiTest import MobileApiTest
class GetDepartments(MobileApiTest):
def setUp(self):
self.do_login()
#获取当前用户的所有上级部门
def test_getDepartments(self):
interfaceUrl = "/Integral/Api/Integral/Departments"
result = self.MobileApiTest(interfaceUrl)
#print(result)
return result
# 获取当前用户的所有上级部门的ID,以list格式返回
def member_dpID(self):
dpInfo = self.test_getDepartments()['result'] # list
dpIdList = []
for i in range(len(dpInfo)):
dpId = dpInfo[i]['dpId'].split() # 将字符串转化为数组
# 将dpId加入到dpIdList中
dpIdList[len(dpIdList):len(dpIdList)] = dpId
return dpIdList