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

40 lines
1.0 KiB
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-25 22:55:48 +01:00
"""
ID: issue-5681
ISSUE: 5681
TITLE: Result of boolean expression can not be concatenated with string literal
DESCRIPTION:
JIRA: CORE-5408
FBTEST: bugs.core_5408
2022-01-25 22:55:48 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
db = db_factory()
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
test_script = """
2021-04-26 20:07:00 +02:00
set list on;
select (true = true)|| 'aaa' as "(true=true) concat 'aaa'" from rdb$database;
select (true is true)|| 'aaa' as "(true is true) concat 'aaa'" from rdb$database;
select 'aaa' || (true = true) as "'aaa' concat (true = true)" from rdb$database;
select 'aaa' || (true is true) as "'aaa' concat (true is true)" from rdb$database;
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
act = isql_act('db', test_script)
2021-04-26 20:07:00 +02:00
2022-01-25 22:55:48 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
(true=true) concat 'aaa' TRUEaaa
(true is true) concat 'aaa' TRUEaaa
'aaa' concat (true = true) aaaTRUE
'aaa' concat (true is true) aaaTRUE
2021-12-22 20:23:11 +01:00
"""
2021-04-26 20:07:00 +02:00
@pytest.mark.version('>=4.0')
2022-01-25 22:55:48 +01:00
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout
2021-04-26 20:07:00 +02:00