6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-23 05:53:06 +01:00
firebird-qa/tests/bugs/core_5495_test.py

64 lines
2.2 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
#
# id: bugs.core_5495
# title: New users or changed passwords in legacy authentication do not work in Firebird 4
2021-11-09 11:01:26 +01:00
# decription:
2021-04-26 20:07:00 +02:00
# Confirmed bug on WI-T4.0.0.546, got:
# Statement failed, SQLSTATE = 28000
# Your user name and password are not defined. Ask your database administrator <...>
# Used config:
# AuthServer = Legacy_Auth,Srp
# AuthClient = Legacy_Auth,Srp,Win_Sspi
# WireCrypt = Disabled
# UserManager = Srp, Legacy_UserManager
# Checked on WI-T4.0.0.549 - works fine.
2021-11-09 11:01:26 +01:00
#
# [pcisar] 3.11.2021 This test fails with 4.0, even with specified config
# Although user is created, the connect as user tmp$c5495 fails (unknown user)
#
2021-04-26 20:07:00 +02:00
# tracker_id: CORE-5495
# min_versions: ['4.0']
# versions: 4.0
# qmid: None
import pytest
2021-12-19 22:25:36 +01:00
from firebird.qa import db_factory, isql_act, Action, user_factory, User
2021-04-26 20:07:00 +02:00
# version: 4.0
# resources: None
substitutions_1 = [('TCPv.*', 'TCP')]
init_script_1 = """"""
db_1 = db_factory(sql_dialect=3, init=init_script_1)
test_script_1 = """
set list on;
set bail on;
connect '$(DSN)' user tmp$c5495 password '123';
2021-11-09 11:01:26 +01:00
--select mon$user,mon$remote_address,mon$remote_protocol,mon$client_version,mon$remote_version,mon$auth_method from mon$attachments
select mon$user,mon$remote_protocol,mon$auth_method from mon$attachments
2021-04-26 20:07:00 +02:00
where mon$attachment_id=current_connection;
commit;
connect '$(DSN)' user SYSDBA password 'masterkey';
commit;
2021-12-19 22:25:36 +01:00
"""
2021-04-26 20:07:00 +02:00
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
expected_stdout_1 = """
MON$USER TMP$C5495
MON$REMOTE_PROTOCOL TCP
MON$AUTH_METHOD Legacy_Auth
2021-12-19 22:25:36 +01:00
"""
test_user_1 = user_factory('db_1', name='tmp$c5495', password='123', plugin='Legacy_UserManager')
2021-04-26 20:07:00 +02:00
@pytest.mark.version('>=4.0')
2021-12-19 22:25:36 +01:00
def test_1(act_1: Action, test_user_1: User):
2021-04-26 20:07:00 +02:00
act_1.expected_stdout = expected_stdout_1
act_1.execute()
2021-12-22 20:23:11 +01:00
assert act_1.clean_stdout == act_1.clean_expected_stdout
2021-04-26 20:07:00 +02:00