1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
#!/usr/bin/env python
from lib.messages import print_error, print_info, print_ok, print_report
from lib.messages import print_usage_error, print_warning
from lib.tests import get_logs_path, run_tests
from optparse import OptionParser
from os import path
try:
from psycopg2 import connect
except:
print_error(
"psycopg2 library not available, please install it before usage!")
exit(1)
DEFAULT_TDS_VERSION="7.1"
def parse_options():
"""Parse and validate options. Returns a dict with all the options."""
usage = "%prog <arguments>"
description = ('Run PostgreSQL tests from sql files')
parser = OptionParser(usage=usage, description=description)
parser.add_option('--postgres_server', action='store',
help='PostgreSQL server')
parser.add_option('--postgres_port', action='store',
help='PostgreSQL TCP port')
parser.add_option('--postgres_database', action='store',
help='Database name')
parser.add_option('--postgres_schema', action='store',
help='Schema to use (and create if needed)')
parser.add_option('--postgres_username', action='store',
help='Username to connect')
parser.add_option('--postgres_password', action='store',
help='Passord to connect')
parser.add_option('--mssql_server', action='store',
help='MSSQL/Azure server')
parser.add_option('--mssql_port', action='store',
help='MSSQL/Azure TCP port')
parser.add_option('--mssql_database', action='store',
help='Database name')
parser.add_option('--mssql_schema', action='store',
help='Schema to use (and create if needed)')
parser.add_option('--mssql_username', action='store',
help='Username to connect')
parser.add_option('--mssql_password', action='store',
help='Passord to connect')
parser.add_option('--azure', action="store_true", default=False,
help='If present, will connect as Azure, otherwise as '
'standard MSSQL')
parser.add_option('--debugging', action="store_true", default=False,
help='If present, will pause after backend PID and before '
'launching tests (so gdb can be attached. It will also '
'display contextual SQL queries')
parser.add_option('--unattended_debugging', action="store_true", default=False,
help='Same as --debugging, but without pausing and printing '
'PostgreSQL logs at the end (useful for CI)')
parser.add_option('--tds_version', action="store", default=DEFAULT_TDS_VERSION,
help='Specifies th TDS protocol version, default="%s"'%DEFAULT_TDS_VERSION)
(options, args) = parser.parse_args()
# Check for test parameters
if (options.postgres_server is None or
options.postgres_port is None or
options.postgres_database is None or
options.postgres_schema is None or
options.postgres_username is None or
options.postgres_password is None or
options.mssql_server is None or
options.mssql_port is None or
options.mssql_database is None or
options.mssql_schema is None or
options.mssql_username is None or
options.mssql_password is None):
print_error("Insufficient parameters, check help (-h)")
exit(4)
else:
if options.azure is True:
options.mssql_username = '%s@%s' % (options.mssql_username,
options.mssql_server.split('.')[0])
return(options)
def main():
try:
args = parse_options()
except Exception as e:
print_usage_error(path.basename(__file__), e)
exit(2)
try:
conn = connect(host=args.postgres_server, user=args.postgres_username,
password=args.postgres_password,
database=args.postgres_database,
port=args.postgres_port)
if args.debugging or args.unattended_debugging:
curs = conn.cursor()
curs.execute("SELECT pg_backend_pid()")
print("Backend PID = %d"%curs.fetchone()[0])
if not args.unattended_debugging:
print("Press any key to launch tests.")
raw_input()
replaces = {'@PSCHEMANAME': args.postgres_schema,
'@PUSER': args.postgres_username,
'@MSERVER': args.mssql_server,
'@MPORT': args.mssql_port,
'@MUSER': args.mssql_username,
'@MPASSWORD': args.mssql_password,
'@MDATABASE': args.mssql_database,
'@MSCHEMANAME': args.mssql_schema,
'@TDSVERSION' : args.tds_version}
tests = run_tests('tests/postgresql/*.sql', conn, replaces, 'postgresql',
args.debugging, args.unattended_debugging)
print_report(tests['total'], tests['ok'], tests['errors'])
logs = get_logs_path(conn, 'postgresql')
if (tests['errors'] != 0 or args.unattended_debugging) and not args.debugging:
for fpath in logs:
print_info("=========== Content of %s ===========" % fpath)
with open(fpath, "r") as f:
print(f.read())
if tests['errors'] != 0:
exit(5)
else:
exit(0)
except Exception as e:
print_error(e)
exit(3)
if __name__ == "__main__":
main()
|