久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

python操作mysql的應(yīng)用(重復(fù)運行注冊用戶的接口)

 印度阿三17 2022-08-19 發(fā)布于重慶
標(biāo)簽:cur python self sql 接口 user conn mysql def

1.comm里放置數(shù)據(jù)操作代碼

2.conftest.py里放置刪除用戶代碼

3.test_register.py里放置測試注冊用戶的代碼(運行注冊接口之前先從數(shù)據(jù)庫刪除注冊的賬號)

python操作mysql的應(yīng)用

----------------------------comm---------------------------------------
import pymysql

  dbinfo={

  "host":"192.16.8.x",

  "post":3306,

  "user":"root",

  "password":"xxxx",

  "database":"xxx"

  }

class DBopera:
    def __init__(self,dbinfo=dbinfo):
        self.conn = pymysql.connect(**dbinfo)
        self.cur = self.conn.cursor()
    def dbselect(self,sql):
        self.cur.execute(sql)
        result = self.cur.fetchall()
        print(result)
    def dbcommit(self,sql):
        self.cur.execute(sql)
        self.conn.commit()
    def dbclose(self):
        self.cur.close()
        self.conn.close()
-----------------------------------------------------------------------


------------------------------conftest.py------------------------------

import pytest
import pymysql
from comm import conn.DBopera

@pytest.fixture(params=["username1","username2"]
def delete_user(request):
  user = request.param
  db = DBopera()
  db.dbcommit(sql='delete from tablename where username = "%s";'%user)
  db.close()
  return user

-------------------------test_register.py------------------------------
import requests
def test_register(delete_user):
  url = "http://xxxx/register"
  body = {
  "username":delete_user,
  "password":"123456",
  "email":"[email protected]"
}
  r = requests.post(url,json=body)
  print(r.text())
  
  
  
標(biāo)簽:cur,python,self,sql,接口,user,conn,mysql,def
   

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約