用Python实现数据库的自动化测试(2)

发表于:2017-2-24 10:45

字体: | 上一篇 | 下一篇 | 我要投稿

 作者:方程无解    来源:51Testing软件测试网采编

  上一篇中我们分析了数据库测试的几种应用类型,不知道其他公司还有什么数据库应用测试类型,可以分享出来,大家一起探讨下测试方案。具体的案列代码我就不在这里贴出来了,这个和具体业务高度相关。这里贴两个MySQL, vertical数据库的连接和SQL 操作的类。大家以后应用可以直接用了。
  MySQL 数据库连接与SQL 操作
import MySQLdb,time,traceback,logging
class DBOperateAction:
def __init__(self,dbhost,dbaccount,dbpasswd,dbname,port=3306,charset="utf8"):
self.dbhost=dbhost
self.dbaccount=dbaccount
self.dbpasswd=dbpasswd
self.dbname=dbname
self.charset=charset
self.port=port
self.db_conn=""
self.db_cursor=""
def connect(self):
try:
self.db_conn=MySQLdb.connect(host=self.dbhost,user=self.dbaccount,passwd=self.dbpasswd,
db=self.dbname,port=self.port,charset=self.charset)
self.db_cursor=self.db_conn.cursor()
return True
except MySQLdb.OperationalError:
logging.error("Connect to "+self.dbhost+" Failed")
logging.exception("exception message:")
return False
def re_connect(self):
logging.error("connect to mysql server failed, reconnect")
try:
self.db_conn=MySQLdb.connect(host=self.dbhost,user=self.dbaccount,passwd=self.dbpasswd,
db=self.dbname,port=self.port,charset="utf8")
self.db_cursor=self.db_conn.cursor()
return True
except MySQLdb.OperationalError:
logging.error("Reconnect MySQL failed")
return False
def get_all_result(self,sql):
try:
logging.info("Execute sql: "+sql)
self.db_cursor.execute(sql)
self.db_conn.commit()
result=self.db_cursor.fetchall()
return result
except MySQLdb.OperationalError:
logging.exception("Execure SQL except"+sql)
for i in range(0,3):
time.sleep(5)
if self.re_connect():
logging.info("reconnect database successfully")
return False
def get_one_result(self,sql):
try:
logging.info("Execute sql: "+sql)
self.db_cursor.execute(sql)
self.db_conn.commit()
result=self.db_cursor.fetchone()
return result
except MySQLdb.OperationalError:
traceback.print_exc()
for i in range(0,3):
time.sleep(5)
if self.re_connect():
break
def close_connection(self):
self.db_conn.close()
  Vertica 数据库连接与SQL 操作. 需要注意的是, Vertical里面schema 和database 不个东西。在mysql里面schema和database 是一回事。
import vertica_python
class VerticaDBOperateAction:
def __init__(self,dbhost,dbaccount,dbpasswd,dbname,port=5433):
#self._conn_info=conn_info
self.connection=""
self.cursorcur =""
self.dbhost=dbhost
self.dbaccount=dbaccount
self.dbpasswd=dbpasswd
self.dbname=dbname
self.port=port
def connect(self):
try:
self.connection = vertica_python.connect(host=self.dbhost,user=self.dbaccount,password=self.dbpasswd,
database=self.dbname,port=self.port)
self.cursorcur=self.connection.cursor()
return True
except:
logging.exception("Connect vertica database error with address:"+self.dbhost)
logging.exception("exception message:")
return False
def get_all_result(self,sql):
'''''
:return: # [ [1, 'something'], [2, 'something_else'] ]
'''
self.cursorcur.execute(sql)
return self.cursorcur.fetchall()
def close_connection(self):
self.connection.close()
<pre code_snippet_id="2215959" snippet_file_name="blog_20170219_2_4304522"></pre>
<pre></pre>
相关文章
Python实现数据库的自动化测试(1)
《2023软件测试行业现状调查报告》独家发布~

关注51Testing

联系我们

快捷面板 站点地图 联系我们 广告服务 关于我们 站长统计 发展历程

法律顾问:上海兰迪律师事务所 项棋律师
版权所有 上海博为峰软件技术股份有限公司 Copyright©51testing.com 2003-2024
投诉及意见反馈:webmaster@51testing.com; 业务联系:service@51testing.com 021-64471599-8017

沪ICP备05003035号

沪公网安备 31010102002173号