Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
API-Automation
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
文鑫
API-Automation
Commits
7d034dfe
Commit
7d034dfe
authored
Jul 03, 2020
by
文鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete test_Source1.py
parent
f65632bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
45 deletions
+0
-45
TestCase/test_Source1.py
+0
-45
No files found.
TestCase/test_Source1.py
deleted
100644 → 0
View file @
f65632bc
# _*_ coding:utf-8 _*_
_author_
=
'wenxin'
_date_
=
'2020/6/11 11:03'
import
requests
import
allure
import
pytest
import
sys
sys
.
path
.
append
(
'../'
)
from
common
import
getSourceId
from
common.getData
import
DoExcelByPandas
@allure.feature
(
'数据源'
)
class
TestSource
():
parametrize
=
DoExcelByPandas
()
.
get_data_for_pytest
(
'../data/DataA_Source.xlsx'
,
'Sheet1'
)
@allure.title
(
'{story}'
)
@pytest.mark.parametrize
(
'id,url,data,story,method,severity,condition,except_result'
,
parametrize
)
def
test
(
self
,
id
,
url
,
data
,
story
,
method
,
severity
,
condition
,
except_result
):
# test开头的测试函数
url
=
url
#测试删除数据源接口
if
story
==
'删除mysql数据源'
or
story
==
'删除oracle数据源'
:
id
=
getSourceId
.
get_SourceId
(
data
)
#将数据源id拼接在url地址上
url
=
url
+
id
r
=
requests
.
post
(
url
=
url
)
#测试需要传递dataSourceId的接口
elif
'dataSourceId'
in
story
:
id
=
getSourceId
.
get_SourceId
(
data
)
url
=
url
+
id
r
=
requests
.
get
(
url
=
url
)
#测试post接口
elif
method
==
'post'
:
json
=
eval
(
data
)
#eval返回传入字符串的表达式的结果
r
=
requests
.
post
(
url
=
url
,
json
=
json
)
#测试get接口
elif
method
==
'get'
:
r
=
requests
.
get
(
url
=
url
)
response
=
r
.
json
()
# print (type(response[condition]))
assert
response
[
condition
]
==
str
(
except_result
)
if
__name__
==
'__main__'
:
pytest
.
main
([
'-s'
,
'test_Source.py'
])
#-s参数是为了显示用例的打印信息。 -q参数只显示结果,不显示过程
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