6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-23 14:03:06 +01:00
firebird-qa/tests/functional/generator/drop/test_03.py

42 lines
1.0 KiB
Python

#coding:utf-8
#
# id: functional.generator.drop.03
# title: DROP GENERATOR - generator does not exists
# decription: DROP GENERATOR - generator does not exists
#
# Dependencies:
# CREATE DATABASE
# tracker_id:
# min_versions: []
# versions: 3.0
# qmid: functional.generator.drop.drop_generator_03
import pytest
from firebird.qa import db_factory, isql_act, Action
# version: 3.0
# resources: None
substitutions_1 = []
init_script_1 = """"""
db_1 = db_factory(sql_dialect=3, init=init_script_1)
test_script_1 = """DROP GENERATOR test;"""
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
expected_stderr_1 = """Statement failed, SQLSTATE = 42000
unsuccessful metadata update
-DROP SEQUENCE TEST failed
-generator TEST is not defined
"""
@pytest.mark.version('>=3.0')
def test_1(act_1: Action):
act_1.expected_stderr = expected_stderr_1
act_1.execute()
assert act_1.clean_stderr == act_1.clean_expected_stderr