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_1930_test.py

239 lines
7.9 KiB
Python

#coding:utf-8
#
# id: bugs.core_1930
# title: Possible AV in engine if procedure was altered to have no outputs and dependent procedures was not recompiled
# decription:
# 26.01.2019: added separate code for 4.0 because more detailed exception text appeared there:
# ======
# unsuccessful metadata update
# -cannot delete
# -PARAMETER SP1.X
# -there are 1 dependencies
# =====
# Checked on:
# 3.0.5.33084: OK, 1.156s.
# 3.0.5.33097: OK, 1.016s.
# 4.0.0.1340: OK, 12.890s.
# 4.0.0.1410: OK, 16.156s.
#
# tracker_id: CORE-1930
# min_versions: ['2.5.0']
# versions: 3.0, 4.0
# qmid: None
import pytest
from firebird.qa import db_factory, isql_act, Action
# version: 3.0
# resources: None
substitutions_1 = [('Data source : Firebird::localhost:.*', 'Data source : Firebird::localhost:'), ('-At block line: [\\d]+, col: [\\d]+', '-At block line')]
init_script_1 = """"""
db_1 = db_factory(sql_dialect=3, init=init_script_1)
test_script_1 = """
set term ^;
create or alter procedure sp1 returns (x int) as
begin
x=1;
suspend;
end
^
create or alter procedure sp2 returns (x int) as
begin
select x from sp1 into :x;
suspend;
end
^
create or alter procedure sp3 returns (x int) as
begin
select x from sp2 into :x;
suspend;
end
^
commit
^
-- this is wrong but engine still didn't track procedure's fields dependencies
create or alter procedure sp1 as
begin
exit;
end
^
set term ;^
commit;
-- Here we create new attachment using specification of some non-null data in ROLE clause:
set term ^;
execute block as
declare c int;
begin
begin
c = rdb$get_context('SYSTEM', 'EXT_CONN_POOL_SIZE');
rdb$set_context('USER_SESSION', 'EXT_CONN_POOL_SUPPORT','1');
when any do
begin
end
end
execute statement 'create or alter procedure sp3 as begin execute procedure sp2; end'
on external 'localhost:' || rdb$get_context('SYSTEM', 'DB_NAME')
as user 'sysdba' password 'masterkey' role 'R1930';
end
^
commit
^
-- ||||||||||||||||||||||||||||
-- ###################################||| HQBird 3.x SS/SC |||##############################
-- ||||||||||||||||||||||||||||
-- If we check SS or SC and ExtConnPoolLifeTime > 0 (avaliable in HQbird 3.x) then current
-- DB (bugs.core_NNNN.fdb) will be 'captured' by firebird.exe process and fbt_run utility
-- will not able to drop this database at the final point of test.
-- Moreover, DB file will be hold until all activity in firebird.exe completed and AFTER this
-- we have to wait for <ExtConnPoolLifeTime> seconds after it (discussion and small test see
-- in the letter to hvlad and dimitr 13.10.2019 11:10).
-- This means that one need to kill all connections to prevent from exception on cleanup phase:
-- SQLCODE: -901 / lock time-out on wait transaction / object <this_test_DB> is in use
-- #############################################################################################
execute block as
begin
if ( rdb$get_context('USER_SESSION', 'EXT_CONN_POOL_SUPPORT') = '1' ) then
begin
-- HQbird is tested now:
-- execute statement 'delete from mon$attachments where mon$attachment_id != current_connection';
execute statement 'ALTER EXTERNAL CONNECTIONS POOL CLEAR ALL';
end
end
^
commit
^
"""
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
expected_stderr_1 = """
Statement failed, SQLSTATE = 42000
Execute statement error at isc_dsql_execute2 :
335544351 : unsuccessful metadata update
336397267 : CREATE OR ALTER PROCEDURE SP3 failed
335544569 : Dynamic SQL Error
335544850 : Output parameter mismatch for procedure SP2
Statement : create or alter procedure sp3 as begin execute procedure sp2; end
Data source : Firebird::localhost:C:\\MIX\\FIREBIRD\\QA\\FBT-REPO\\TMP\\C1930.FDB
-At block line: 3, col: 9
"""
@pytest.mark.version('>=3.0,<4.0')
def test_1(act_1: Action):
act_1.expected_stderr = expected_stderr_1
act_1.execute()
assert act_1.clean_expected_stderr == act_1.clean_stderr
# version: 4.0
# resources: None
substitutions_2 = [('Data source : Firebird::localhost:.*', 'Data source : Firebird::localhost:'), ('-At block line: [\\d]+, col: [\\d]+', '-At block line')]
init_script_2 = """"""
db_2 = db_factory(sql_dialect=3, init=init_script_2)
test_script_2 = """
set term ^;
create or alter procedure sp1 returns (x int) as
begin
x=1;
suspend;
end
^
create or alter procedure sp2 returns (x int) as
begin
select x from sp1 into :x;
suspend;
end
^
create or alter procedure sp3 returns (x int) as
begin
select x from sp2 into :x;
suspend;
end
^
commit
^
-- this is wrong but engine still didn't track procedure's fields dependencies
create or alter procedure sp1
as
begin
exit;
end
^
set term ;^
commit;
-- Here we create new attachment using specification of some non-null data in ROLE clause:
set term ^;
execute block as
begin
execute statement 'create or alter procedure sp3 as begin execute procedure sp2; end'
on external 'localhost:' || rdb$get_context('SYSTEM', 'DB_NAME')
as user 'sysdba' password 'masterkey' role 'R1930';
end
^
set term ;^
commit;
-- ||||||||||||||||||||||||||||
-- ###################################||| FB 4.0+, SS and SC |||##############################
-- ||||||||||||||||||||||||||||
-- If we check SS or SC and ExtConnPoolLifeTime > 0 (config parameter FB 4.0+) then current
-- DB (bugs.core_NNNN.fdb) will be 'captured' by firebird.exe process and fbt_run utility
-- will not able to drop this database at the final point of test.
-- Moreover, DB file will be hold until all activity in firebird.exe completed and AFTER this
-- we have to wait for <ExtConnPoolLifeTime> seconds after it (discussion and small test see
-- in the letter to hvlad and dimitr 13.10.2019 11:10).
-- This means that one need to kill all connections to prevent from exception on cleanup phase:
-- SQLCODE: -901 / lock time-out on wait transaction / object <this_test_DB> is in use
-- #############################################################################################
delete from mon$attachments where mon$attachment_id != current_connection;
commit;
"""
act_2 = isql_act('db_2', test_script_2, substitutions=substitutions_2)
expected_stderr_2 = """
Statement failed, SQLSTATE = 42000
unsuccessful metadata update
-cannot delete
-PARAMETER SP1.X
-there are 1 dependencies
Statement failed, SQLSTATE = 42000
Execute statement error at isc_dsql_execute2 :
335544351 : unsuccessful metadata update
336397267 : CREATE OR ALTER PROCEDURE SP3 failed
335544569 : Dynamic SQL Error
335544850 : Output parameter mismatch for procedure SP2
Statement : create or alter procedure sp3 as begin execute procedure sp2; end
Data source : Firebird::localhost:
-At block line
"""
@pytest.mark.version('>=4.0')
def test_2(act_2: Action):
act_2.expected_stderr = expected_stderr_2
act_2.execute()
assert act_2.clean_expected_stderr == act_2.clean_stderr