6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00
firebird-qa/tests/bugs/core_0480_test.py

39 lines
863 B
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-01-18 20:45:21 +01:00
"""
ID: issue-828
ISSUE: 828
TITLE: Foreign key relation VARCHAR <-> INT
DESCRIPTION:
JIRA: CORE-480
FBTEST: bugs.core_0480
2022-01-18 20:45:21 +01:00
"""
2021-04-26 20:07:00 +02:00
2022-01-18 20:45:21 +01:00
import pytest
from firebird.qa import *
2021-04-26 20:07:00 +02:00
2022-01-18 20:45:21 +01:00
init_script = """create table T1 (PK1 INTEGER, COL VARCHAR(10));
2021-04-26 20:07:00 +02:00
commit;"""
2022-01-18 20:45:21 +01:00
db = db_factory(init=init_script)
2021-04-26 20:07:00 +02:00
2022-01-18 20:45:21 +01:00
test_script = """create table T2 (PK2 INTEGER, FK1 VARCHAR(10), COL VARCHAR(10),
2021-04-26 20:07:00 +02:00
foreign key (FK1) references T1 (PK1));
"""
2022-01-18 20:45:21 +01:00
act = isql_act('db', test_script)
2021-04-26 20:07:00 +02:00
2022-01-18 20:45:21 +01:00
expected_stderr = """Statement failed, SQLSTATE = 42000
2021-04-26 20:07:00 +02:00
unsuccessful metadata update
-CREATE TABLE T2 failed
-could not find UNIQUE or PRIMARY KEY constraint in table T1 with specified columns
"""
@pytest.mark.version('>=3.0')
2022-01-18 20:45:21 +01:00
def test_1(act: Action):
act.expected_stderr = expected_stderr
act.execute()
assert act.clean_stderr == act.clean_expected_stderr
2021-04-26 20:07:00 +02:00