login_func.py
6.5 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# Date: 2020/4/9 11:36
# @Author:bxh
# @file: login_func.py
import json
import time, datetime
def teardown_hook_sleep_N_secs(response,n_secs):
""" sleep n seconds after request """
if response.status_code == 200:
time.sleep(0.3)
else:
time.sleep(n_secs)
def teardown_hook_get_serialNo(response):
if response.status_code == 200:
jsondata = json.loads(response.text)
serialno =str(jsondata['data']['question']['serialNo'])
try:
with open('config/serialNo.txt','w+') as f:
f.write(serialno)
print('写入成功,serialno:{}'.format(serialno))
f.close()
except Exception as e:
print('写入失败', e)
return serialno
def teardown_hook_get_task_accesstoken(response):
if response.status_code == 200:
jsondata = json.loads(response.text)
access_token =jsondata['data']['accessToken']
try:
# 保存token到文件
with open('config/task_accessToken.csv','w+') as f:
f.write(access_token)
print('写入成功,access_token:{}'.format(access_token))
f.close()
except Exception as e:
print('写入失败', e)
return access_token
def get_task_accesstoken():
try:
# 保存token到文件
with open("config/task_accessToken.csv", 'r') as f:
accesstoken = f.read()
print('读取成功,accesstoken:{}'.format(accesstoken))
except Exception as e:
print('读取失败', e)
accesstoken = str(accesstoken)
return accesstoken
def teardown_hook_get_task_manager_accesstoken(response):
if response.status_code == 200:
jsondata = json.loads(response.text)
access_token =jsondata['data']['access']['accessToken']
try:
# 保存token到文件
with open('config/task_manager_accessToken.csv','w+') as f:
f.write(access_token)
print('写入成功,access_token:{}'.format(access_token))
f.close()
except Exception as e:
print('写入失败', e)
return access_token
def get_task_manager_accesstoken():
try:
# 保存token到文件
with open("config/task_manager_accessToken.csv", 'r') as f:
accesstoken = f.read()
print('读取成功,accesstoken:{}'.format(accesstoken))
except Exception as e:
print('读取失败', e)
accesstoken = str(accesstoken)
return accesstoken
def teardown_hook_get_authcode(response):
if response.status_code == 200:
jsondata = json.loads(response.text)
auth_code = jsondata['data']['authCode']
try:
# 保存token到文件
with open('config/authCode.csv','w') as f:
f.write(auth_code)
print('写入成功,authCode:{}'.format(auth_code))
f.close()
except Exception as e:
print('写入失败', e)
return auth_code
def get_authcode():
try:
with open('config/authCode.csv','r') as f:
authcode_value = f.read()
print('读取authcode_value成功:{}'.format(authcode_value))
f.close()
except Exception as e:
print('读取失败', e)
authcode_value = str(authcode_value)
return authcode_value
def get_serialNo():
try:
with open("config/serialNo.txt", 'r') as f:
serialno = f.read()
print('读取成功,serialno:{}'.format(serialno))
except Exception as e:
print('读取失败', e)
serialno = str(serialno)
return serialno
#————————————————————————————————————————————————————————————————————————————————————————————————————————————
#引用资源模块
def teardown_hook_get_resource_id(response):
global resource_id
resource_id = ''
if response.status_code ==200:
jsondata = json.loads(response.text)
resource_id = str(jsondata['data']['list'][0]['id'])
try:
with open("config/resource_id.txt", 'w+') as f:
f.write(resource_id)
print('写入成功,resource_id:{}'.format(resource_id))
except Exception as e:
print('写入失败', e)
return resource_id
def get_resource_id():
global resource_id
resource_id =''
try:
with open("config/resource_id.txt", 'r') as f:
resource_id = f.read()
print('读取成功,resource_id:{}'.format(resource_id))
except Exception as e:
print('读取失败', e)
resource_id = resource_id
return resource_id
def get_resource_id_to_int():
return int(get_resource_id())
def teardown_hook_get_resource_title(response):
global resource_title
resource_title = ''
if response.status_code ==200:
jsondata = json.loads(response.text)
resource_title = jsondata['data']['list'][0]['title']
try:
with open("config/resource_title.txt", 'w+') as f:
f.write(resource_title)
print('写入成功,resource_title:{}'.format(resource_title))
except Exception as e:
print('写入失败', e)
return resource_title
def get_resource_title():
global resource_title
resource_title = ''
try:
with open("config/resource_title.txt", 'r') as f:
resource_title = f.read()
print('读取成功,resource_id:{}'.format(resource_title))
except Exception as e:
print('读取失败', e)
resource_title = resource_title
return resource_title
def teardown_hook_get_resource_content(response):
global resource_content
resource_content = ''
if response.status_code ==200:
jsondata = json.loads(response.text)
resource_content = jsondata['data']['list'][0]['content']
try:
with open("config/resource_content.txt", 'w+') as f:
f.write(resource_content)
print('写入成功,authCode:{}'.format(resource_content))
except Exception as e:
print('写入失败', e)
return resource_content
def get_resource_content():
global resource_content
resource_content = ''
try:
with open("config/resource_content.txt", 'r') as f:
resource_content = f.read()
print('读取成功,resource_content:{}'.format(resource_content))
except Exception as e:
print('读取失败', e)
resource_content = resource_content
return resource_content