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