6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 21:43:06 +01:00

Added/Updated tests\bugs\core_6469_test.py: minor change: added forgotten upper() calls

This commit is contained in:
pavel-zotov 2024-08-03 09:36:52 +03:00
parent b17f7ce10c
commit 75f4c58a57

View File

@ -81,7 +81,7 @@ except KeyError as e:
db = db_factory() db = db_factory()
act = python_act('db') act = python_act('db', substitutions = [('[ \t]+', ' '), ])
tmp_role = role_factory('db', name='TMP$R6469') tmp_role = role_factory('db', name='TMP$R6469')
tmp_file = temp_file('c6469_tmp.sql') tmp_file = temp_file('c6469_tmp.sql')
@ -171,7 +171,9 @@ def run_script(act: Action, tmp_role: Role, tmp_file: Path):
connect '{THIS_COMPUTER_NAME}:{act.db.db_path}' role {tmp_role.name}; connect '{THIS_COMPUTER_NAME}:{act.db.db_path}' role {tmp_role.name};
select mon$user,mon$role,mon$auth_method from mon$attachments where mon$attachment_id = current_connection; select upper(mon$user) as mon_user, upper(mon$role) as mon_role, mon$auth_method as mon_auth
from mon$attachments
where mon$attachment_id = current_connection;
commit; commit;
set trusted role; set trusted role;
@ -185,10 +187,11 @@ def run_script(act: Action, tmp_role: Role, tmp_file: Path):
tmp_file.write_text(script) tmp_file.write_text(script)
act.expected_stdout = f""" act.expected_stdout = f"""
MON$USER {THIS_COMPUTER_NAME}\\{CURRENT_WIN_ADMIN.upper()} MON_USER {THIS_COMPUTER_NAME.upper()}\\{CURRENT_WIN_ADMIN.upper()}
MON$ROLE {tmp_role.name.upper()} MON_ROLE {tmp_role.name.upper()}
MON$AUTH_METHOD Mapped from Win_Sspi MON_AUTH Mapped from Win_Sspi
""" """
act.isql(switches=['-n', '-q'], input_file = tmp_file, connect_db = False, credentials = False, combine_output = True) act.isql(switches=['-n', '-q'], input_file = tmp_file, connect_db = False, credentials = False, combine_output = True)
assert act.clean_stdout == act.clean_expected_stdout assert act.clean_stdout == act.clean_expected_stdout
act.reset() act.reset()