6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 21:43:06 +01:00
firebird-qa/tests/bugs/core_4928_test.py
2021-11-26 19:20:43 +01:00

124 lines
3.7 KiB
Python

#coding:utf-8
#
# id: bugs.core_4928
# title: It is not possible to save the connection information in the ON CONNECT trigger, if the connection is created by the gbak
# decription:
# tracker_id: CORE-4928
# min_versions: ['3.0']
# versions: 3.0
# qmid: None
import pytest
from pathlib import Path
from firebird.qa import db_factory, python_act, Action, temp_file
# version: 3.0
# resources: None
substitutions_1 = []
init_script_1 = """
recreate table att_log (
att_id int,
att_name varchar(255),
att_user varchar(255),
att_addr varchar(255),
att_prot varchar(255),
att_auth varchar(255),
att_dts timestamp default 'now'
);
commit;
set term ^;
create or alter trigger trg_connect active on connect as
begin
in autonomous transaction do
insert into att_log(att_id, att_name, att_user, att_addr, att_prot, att_auth)
select
mon$attachment_id,
mon$attachment_name,
mon$user,
mon$remote_address,
mon$remote_protocol,
mon$auth_method
from mon$attachments
where mon$remote_protocol starting with upper('TCP') and mon$user = upper('SYSDBA')
;
end
^
set term ;^
commit;
"""
db_1 = db_factory(sql_dialect=3, init=init_script_1)
# test_script_1
#---
# import os
# db_conn.close()
# fbk = os.path.join(context['temp_directory'],'tmp.core_4928.fbk')
# runProgram('gbak',['-b','-user',user_name,'-password',user_password,dsn,fbk])
# runProgram('gbak',['-rep','-user',user_name,'-password',user_password,fbk,dsn])
#
# sql='''
# set list on;
# select
# iif( att_id > 0, 1, 0) is_att_id_ok
# ,iif( att_name containing 'core_4928.fdb', 1, 0) is_att_name_ok
# ,iif( att_user = upper('SYSDBA'), 1, 0) is_att_user_ok
# ,iif( att_addr is not null, 1, 0) is_att_addr_ok
# ,iif( upper(att_prot) starting with upper('TCP'), 1, 0) is_att_prot_ok
# ,iif( att_auth is not null, 1, 0) is_att_auth_ok
# ,iif( att_dts is not null, 1, 0) is_att_dts_ok
# from att_log
# where att_id <> current_connection;
# '''
# runProgram('isql',[dsn,'-user',user_name,'-pas',user_password],sql)
#
# if os.path.isfile(fbk):
# os.remove(fbk)
#
#---
act_1 = python_act('db_1', substitutions=substitutions_1)
expected_stdout_1 = """
IS_ATT_ID_OK 1
IS_ATT_NAME_OK 1
IS_ATT_USER_OK 1
IS_ATT_ADDR_OK 1
IS_ATT_PROT_OK 1
IS_ATT_AUTH_OK 1
IS_ATT_DTS_OK 1
"""
fbk_file_1 = temp_file('tmp_core_4928.fbk')
@pytest.mark.version('>=3.0')
def test_1(act_1: Action, fbk_file_1: Path):
act_1.gbak(switches=['-b', act_1.db.dsn, str(fbk_file_1)])
act_1.reset()
# This was in original test, but it makes no sense as it overwites att_log content
# from backup that does not contain any data on v4.0.0.2496
# It's not important to test the issue anyway
#act_1.gbak(switches=['-rep', str(fbk_file_1), act_1.db.dsn])
#act_1.reset()
# Check
act_1.expected_stdout = expected_stdout_1
act_1.script = """
set list on;
select
iif(att_id > 0, 1, 0) is_att_id_ok,
iif(att_name containing 'test.fdb', 1, 0) is_att_name_ok,
iif(att_user = upper('SYSDBA'), 1, 0) is_att_user_ok,
iif(att_addr is not null, 1, 0) is_att_addr_ok,
iif(upper(att_prot) starting with upper('TCP'), 1, 0) is_att_prot_ok,
iif(att_auth is not null, 1, 0) is_att_auth_ok,
iif(att_dts is not null, 1, 0) is_att_dts_ok
from att_log
where att_id <> current_connection;
"""
act_1.execute()
assert act_1.clean_stdout == act_1.clean_expected_stdout