mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-23 14:03:06 +01:00
44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: functional.intfunc.cast.08
|
|
# title: CAST CHAR -> DATE
|
|
# decription: CAST CHAR -> DATE
|
|
# Be careful about date format on FB server !
|
|
# Universal format is not defined or not documented.
|
|
#
|
|
# Dependencies:
|
|
# CREATE DATABASE
|
|
# Basic SELECT
|
|
# tracker_id:
|
|
# min_versions: []
|
|
# versions: 1.0
|
|
# qmid: functional.intfunc.cast.cast_08
|
|
|
|
import pytest
|
|
from firebird.qa import db_factory, isql_act, Action
|
|
|
|
# version: 1.0
|
|
# resources: None
|
|
|
|
substitutions_1 = []
|
|
|
|
init_script_1 = """"""
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
test_script_1 = """SELECT CAST('28.1.2001' AS DATE) FROM rdb$Database;"""
|
|
|
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
expected_stdout_1 = """ CAST
|
|
===========
|
|
|
|
2001-01-28"""
|
|
|
|
@pytest.mark.version('>=1.0')
|
|
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
|
|
|