2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
#
|
2021-04-28 11:54:08 +02:00
|
|
|
# id: functional.intfunc.cast.03
|
2021-04-26 20:07:00 +02:00
|
|
|
# title: CAST Numeric -> DATE
|
|
|
|
# decription: Convert from number to date is not (yet) supported
|
|
|
|
#
|
|
|
|
# CAST Numeric -> DATE
|
|
|
|
#
|
|
|
|
# Dependencies:
|
|
|
|
# CREATE DATABASE
|
|
|
|
# Basic SELECT
|
|
|
|
# tracker_id:
|
|
|
|
# min_versions: []
|
|
|
|
# versions: 2.5
|
|
|
|
# qmid: functional.intfunc.cast.cast_03
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from firebird.qa import db_factory, isql_act, Action
|
|
|
|
|
|
|
|
# version: 2.5
|
|
|
|
# resources: None
|
|
|
|
|
|
|
|
substitutions_1 = []
|
|
|
|
|
|
|
|
init_script_1 = """"""
|
|
|
|
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
|
|
|
|
test_script_1 = """SELECT CAST(CAST(1.25001 AS INT) AS DATE) FROM rdb$Database;"""
|
|
|
|
|
|
|
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
|
|
|
|
expected_stdout_1 = """CAST
|
|
|
|
==========="""
|
|
|
|
expected_stderr_1 = '''Statement failed, SQLSTATE = 22018
|
|
|
|
|
|
|
|
conversion error from string "1"'''
|
|
|
|
|
|
|
|
@pytest.mark.version('>=2.5')
|
2021-04-28 11:54:08 +02:00
|
|
|
def test_03_1(act_1: Action):
|
2021-04-26 20:07:00 +02:00
|
|
|
act_1.expected_stdout = expected_stdout_1
|
|
|
|
act_1.expected_stderr = expected_stderr_1
|
|
|
|
act_1.execute()
|
|
|
|
assert act_1.clean_expected_stderr == act_1.clean_stderr
|
|
|
|
assert act_1.clean_expected_stdout == act_1.clean_stdout
|
|
|
|
|