mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-20 02:59:50 -06:00
55 lines
1.6 KiB
Python
55 lines
1.6 KiB
Python
import pymysql
|
|
import sys
|
|
|
|
QUERY_RESPONSE = [
|
|
{"create table test (pk int, `value` int, primary key(pk))": ()},
|
|
{"describe test": (
|
|
('pk', 'int', 'NO', 'PRI', 'NULL', ''),
|
|
('value', 'int', 'YES', '', 'NULL', '')
|
|
)},
|
|
{"insert into test (pk, `value`) values (0,0)": ()},
|
|
{"select * from test": ((0, 0),)},
|
|
{"select dolt_add('-A');": ((0,),)},
|
|
{"select dolt_commit('-m', 'my commit')": (('',),)},
|
|
{"select COUNT(*) FROM dolt_log": ((2,),)},
|
|
{"select dolt_checkout('-b', 'mybranch')": ((0,),)},
|
|
{"insert into test (pk, `value`) values (1,1)": ()},
|
|
{"select dolt_commit('-a', '-m', 'my commit2')": (('',),)},
|
|
{"select dolt_checkout('main')": ((0,),)},
|
|
{"select dolt_merge('mybranch')": ((0,),)},
|
|
{"select COUNT(*) FROM dolt_log": ((3,),)},
|
|
]
|
|
|
|
|
|
def main():
|
|
user = sys.argv[1]
|
|
port = int(sys.argv[2])
|
|
db = sys.argv[3]
|
|
|
|
connection = pymysql.connect(host="127.0.0.1",
|
|
port=port,
|
|
user=user,
|
|
db=db)
|
|
|
|
for query_response in QUERY_RESPONSE:
|
|
query = list(query_response.keys())[0]
|
|
exp_results = query_response[query]
|
|
with connection.cursor() as cursor:
|
|
cursor.execute(query)
|
|
results = cursor.fetchall()
|
|
if (results != exp_results) and ("dolt_commit" not in query):
|
|
print("Query:")
|
|
print(query)
|
|
print("Expected:")
|
|
print(exp_results)
|
|
print("Received:")
|
|
print(results)
|
|
exit(1)
|
|
|
|
connection.close()
|
|
|
|
exit(0)
|
|
|
|
|
|
main()
|