Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
backend_auto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
邓莹莹
backend_auto
Commits
65077b4d
Commit
65077b4d
authored
May 21, 2021
by
邓莹莹
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整base_request代码
parent
84b71198
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
34 deletions
+28
-34
base_request.py
in_common/base_request.py
+28
-34
No files found.
in_common/base_request.py
View file @
65077b4d
...
...
@@ -11,9 +11,7 @@ import path_setting
class
BaseRequest
:
params
=
{}
data
=
{}
@classmethod
def
format
(
cls
,
r
):
...
...
@@ -34,35 +32,10 @@ class BaseRequest:
if
r
is
None
:
r
=
self
.
r
.
json
()
return
jsonpath
(
r
,
path
)
'''
def get_cookie(self, req: dict):
host = self.api_load(path_setting.HOSTYAML_CONFIG)
print(host)
r = requests.request(
req['method'],
url=host['develop_host']['url'] + req['url'],
params=req['params'],
headers=req['headers'],
data=req['data'],
json=req['json']
)
dict = {}
for i in r.cookies:
dict[i.name] = i.value
headers = '_gtid={};sessionid={}'.format(dict["_gtid"], dict["sessionid"])
return headers
def read_header(self):
with open("../in_common/get_cookie.txt", 'r', encoding='utf-8') as f:
cookies = f.read()
headers = {"cookie": cookies}
return headers
'''
def
api_send
(
self
,
req
:
dict
):
host
=
self
.
api_load
(
path_setting
.
HOSTYAML_CONFIG
)
url_host
=
""
# 获取调用该方法的路径
import
inspect
ins_file
=
inspect
.
stack
()[
1
]
.
filename
...
...
@@ -89,10 +62,6 @@ class BaseRequest:
s
=
LoginFunction
()
.
get_session
()
# 调用具体case的url
print
(
req
[
'method'
])
print
(
url_host
+
req
[
'url'
])
print
(
req
.
get
(
'params'
))
print
(
req
.
get
(
'data'
))
r
=
s
.
request
(
req
[
'method'
],
url
=
url_host
+
req
[
'url'
],
...
...
@@ -109,8 +78,33 @@ class BaseRequest:
def
trace_id
(
self
):
return
''
.
join
(
random
.
sample
(
string
.
ascii_lowercase
+
string
.
digits
,
32
))
'''
def get_cookie(self, req: dict):
host = self.api_load(path_setting.HOSTYAML_CONFIG)
print(host)
r = requests.request(
req['method'],
url=host['develop_host']['url'] + req['url'],
params=req['params'],
headers=req['headers'],
data=req['data'],
json=req['json']
)
dict = {}
for i in r.cookies:
dict[i.name] = i.value
headers = '_gtid={};sessionid={}'.format(dict["_gtid"], dict["sessionid"])
return headers
def read_header(self):
with open("../in_common/get_cookie.txt", 'r', encoding='utf-8') as f:
cookies = f.read()
headers = {"cookie": cookies}
return headers
'''
if
__name__
==
'__main__'
:
# BaseRequest().api_load("../api/api.yaml")
# print(BaseApi().trace_id())
BaseRequest
()
.
a
()
print
(
BaseRequest
()
.
trace_id
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment