6 Star 3 Fork 0

张思聪/jiuyun

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dealer_test.py 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
wangqirui 提交于 2021-07-09 20:15 . 上传stock模块
from unittest import TestCase
import requests
# Create your tests here.
class dealerTest(TestCase):
base_url = 'http://127.0.0.1:8000'
def test_addDealer(self):
url = self.base_url + '/dealer/addDealer/'
json_data = {
'company': '陕西喊山酒业',
"address": '辛家庙',
'name': '伏虎',
'phone': '456',
'area': '雁塔',
'level': 'A',
'staff_id': '45f0a1f90df148e3a2693a5494db95a9',
'status': '正常'
}
resp = requests.post(url,data=json_data)
print(resp.text)
def test_findDealer(self):
url = self.base_url + "/dealer/findDealer/?dealer_id=cd712e7a613d47ff9e34e2472d7d0330"
resp = requests.get(url)
print(resp.text)
def test_alterDealer(self):
url = self.base_url + '/dealer/alterDealer/'
json_data = {
'dealer_id': '85ed432b8add47a0995395aa0159d3f4',
'company': '天上人间1',
"address": '立人科技园',
'name': '贾山',
'phone': '123',
'area': '高新',
'level': 'A',
'staff_id': '45f0a1f90df148e3a2693a5494db95a9',
'status': '正常'
}
resp = requests.put(url,data=json_data)
print(resp.text)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sicongzhang/jiuyun.git
[email protected]:sicongzhang/jiuyun.git
sicongzhang
jiuyun
jiuyun
master

搜索帮助