test_feedback_customer_disable.py
990 Bytes
import unittest
import urllib3
from commons.MySession import sy1
from commons.api.feedback_customer_disable import feedback_customer_disable
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
fcd = feedback_customer_disable()
import commons.ConfigDB as db
class test_feedback_customer_disable(unittest.TestCase):
"返还人禁用"
@classmethod
def setUpClass(cls):
pass
def setUp(self):
self.ids = db.mysql_selectOne("SELECT id FROM `dili_jmsf`.`feedback_customer` WHERE `status` = '1' ORDER BY `id` DESC LIMIT 1")[0]
# print("查询出返还人id", self.id)
def test_feedback_customer_disable_01(self):
url = fcd.url.replace("44", str(self.ids))
re = sy1.post(url=url, headers=fcd.header)
# print(re.headers)
# print(re.json())
self.assertTrue("操作成功" in str(re.json()))
@classmethod
def tearDownClass(cls):
pass
if __name__ == '__main__':
unittest.main()