Skip to content

Commit 939f7b4

Browse files
committed
excel ddt requests
0 parents  commit 939f7b4

22 files changed

+2083
-0
lines changed

__init__.py

Whitespace-only changes.

__pycache__/__init__.cpython-36.pyc

123 Bytes
Binary file not shown.

case/__init__.py

Whitespace-only changes.
1.35 KB
Binary file not shown.

case/demo_api.xlsx

10.7 KB
Binary file not shown.

case/test_api.py

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# coding:utf-8
2+
import unittest
3+
import ddt
4+
import os
5+
import requests
6+
from excelddtdriver.common import base_api
7+
from excelddtdriver.common import readexcel
8+
from excelddtdriver.common import writeexcel
9+
10+
# 获取demo_api.xlsx路径
11+
curpath = os.path.dirname(os.path.realpath(__file__))
12+
testxlsx = os.path.join(curpath, "demo_api.xlsx")
13+
14+
# 复制demo_api.xlsx文件到report下
15+
report_path = os.path.join(os.path.dirname(curpath), "report")
16+
reportxlsx = os.path.join(report_path, "result.xlsx")
17+
18+
testdata = readexcel.ExcelUtil(testxlsx).dict_data()
19+
@ddt.ddt
20+
class Test_api(unittest.TestCase):
21+
@classmethod
22+
def setUpClass(cls):
23+
cls.s = requests.session()
24+
# 如果有登录的话,就在这里先登录了
25+
writeexcel.copy_excel(testxlsx, reportxlsx) # 复制xlsx
26+
27+
@ddt.data(*testdata)
28+
def test_api(self, data):
29+
# 先复制excel数据到report
30+
res = base_api.send_requests(self.s, data)
31+
32+
base_api.wirte_result(res, filename=reportxlsx)
33+
# 检查点 checkpoint
34+
check = data["checkpoint"]
35+
print("检查点->:%s"%check)
36+
# 返回结果
37+
res_text = res["text"]
38+
print("返回实际结果->:%s"%res_text)
39+
# 断言
40+
self.assertTrue(check in res_text)
41+
42+
if __name__ == "__main__":
43+
unittest.main()

0 commit comments

Comments
 (0)