2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
"""
|
|
|
|
ID: intfunc.string.ascii
|
|
|
|
TITLE: ASCII_CHAR( <number> )
|
|
|
|
DESCRIPTION:
|
|
|
|
Returns the ASCII character with the specified code. The argument to ASCII_CHAR must be
|
|
|
|
in the range 0 to 255. The result is returned in character set NONE.
|
|
|
|
FBTEST: functional.intfunc.string.ascii_01
|
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
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
|
|
|
act = isql_act('db', "select ASCII_CHAR( 065 ) from rdb$database;")
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
expected_stdout = """
|
|
|
|
ASCII_CHAR
|
2021-04-26 20:07:00 +02:00
|
|
|
==========
|
|
|
|
A
|
|
|
|
"""
|
|
|
|
|
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
|