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

101 lines
2.9 KiB
Python

#coding:utf-8
#
# id: functional.gtcs.gtcs_proc_isql_12
# title: gtcs-proc-isql-12
# decription:
# Original test see in:
# https://github.com/FirebirdSQL/fbtcs/blob/master/GTCS/tests/PROC_ISQL_12.script
# SQL script for creating test database ('gtcs_sp1.fbk') and fill it with some data:
# https://github.com/FirebirdSQL/fbtcs/blob/master/GTCS/tests/PROCS_QA_INIT_ISQL.script
# Checked on: 4.0.0.1803 SS; 3.0.6.33265 SS; 2.5.9.27149 SC.
#
# tracker_id:
# min_versions: ['2.5.0']
# versions: 2.5
# qmid: None
import pytest
from firebird.qa import db_factory, isql_act, Action
# version: 2.5
# resources: None
substitutions_1 = [('=', ''), ('[ \t]+', ' ')]
init_script_1 = """"""
db_1 = db_factory(from_backup='gtcs_sp1.fbk', init=init_script_1)
test_script_1 = """
set bail on;
set term ^;
create procedure proc12 returns (a varchar(21), b integer) as
begin
for
select pname, avg(weight)
from p
group by pname
having avg(weight)> 16
into :a, :b
do
suspend;
end
^
set term ;^
execute procedure proc12;
set count on;
select 'point-1' msg, p.* from proc12 p;
select 'point-2' msg, max(p.b) from proc12 p;
select 'point-3' msg, p.b from proc12 p;
select 'point-4' msg, p.a,p.b from proc12 p order by b;
select 'point-5' msg, p.a, avg(p.b) from proc12 p group by a having avg(p.b) > 350;
select 'point-6' msg, p.a, avg(p.b) from proc12 p group by a;
select 'point-7' msg, p.a, p.b from proc12 p where b > (select avg(x.b) from proc12 x);
"""
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
expected_stdout_1 = """
A B
Bolt 17
MSG A B
point-1 Bolt 17
point-1 Cog 19
Records affected: 2
MSG MAX
point-2 19
Records affected: 1
MSG B
point-3 17
point-3 19
Records affected: 2
MSG A B
point-4 Bolt 17
point-4 Cog 19
Records affected: 2
Records affected: 0
MSG A AVG
point-6 Bolt 17
point-6 Cog 19
Records affected: 2
MSG A B
point-7 Cog 19
Records affected: 1
"""
@pytest.mark.version('>=2.5')
def test_1(act_1: Action):
act_1.expected_stdout = expected_stdout_1
act_1.execute()
assert act_1.clean_stdout == act_1.clean_expected_stdout