6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-23 05:53:06 +01:00
firebird-qa/tests/functional/intfunc/date/test_extract_02.py

38 lines
842 B
Python
Raw Normal View History

2021-04-26 20:07:00 +02:00
#coding:utf-8
2022-02-04 19:05:19 +01:00
"""
ID: intfunc.date.extract-02
ISSUE: 1805
TITLE: EXTRACT - MILLISECONDS
DESCRIPTION: Test the extract function with miliseconds
JIRA: CORE-1387
FBTEST: functional.intfunc.date.extract_02
"""
2021-04-26 20:07:00 +02:00
import pytest
from firebird.qa import db_factory, isql_act, Action
2022-02-04 19:05:19 +01:00
db = db_factory()
2021-04-26 20:07:00 +02:00
2022-02-04 19:05:19 +01:00
test_script = """select extract(millisecond from time '12:12:00.1111' ) as test from rdb$database;
select extract(millisecond from timestamp '2008-12-08 12:12:00.1111' ) as test from rdb$database;"""
2021-04-26 20:07:00 +02:00
2022-02-04 19:05:19 +01:00
act = isql_act('db', test_script)
2021-04-26 20:07:00 +02:00
2022-02-04 19:05:19 +01:00
expected_stdout = """
2021-04-26 20:07:00 +02:00
TEST
============
111.1
TEST
============
111.1
"""
2022-02-04 19:05:19 +01:00
@pytest.mark.version('>=3')
def test_1(act: Action):
act.expected_stdout = expected_stdout
act.execute()
assert act.clean_stdout == act.clean_expected_stdout