mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
477 lines
38 KiB
Python
477 lines
38 KiB
Python
#coding:utf-8
|
|
#
|
|
# id: functional.gtcs.dsql_domain_12
|
|
# title: GTCS/tests/DSQL_DOMAIN_12. Verify result of INSERT DEFAULT VALUES into a table with domain fields when domains are defined with DEFAULT value.
|
|
# decription:
|
|
# Original test see in:
|
|
# https://github.com/FirebirdSQL/fbtcs/blob/master/GTCS/tests/DSQL_DOMAIN_12.script
|
|
#
|
|
# ::: NOTE :::
|
|
# Added domains with datatype that did appear only in FB 4.0: DECFLOAT and TIME[STAMP] WITH TIME ZONE. For this reason only FB 4.0+ can be tested.
|
|
#
|
|
# # Comment: This script will run level 1 testing, checking syntax of create
|
|
# # domain using datatype and default clauses, then creating a table
|
|
# # using the domain fields and inserting data to those fields,
|
|
# # allowing missing data to be supplied by the default definitions
|
|
# # for the domain.
|
|
#
|
|
#
|
|
# For some datatypes (float, double precision) we also verify ability to use boundary values for datatype itself.
|
|
# For character datatypes we use non-asci characters (currency signs: euro, cent, pound, yena).
|
|
#
|
|
# Currently following datatypes are NOT checked:
|
|
# blob sub_type text|binary
|
|
# long float;
|
|
# binary(20);
|
|
# varbinary(20);
|
|
#
|
|
# Checked on 4.0.0.1935.
|
|
#
|
|
# tracker_id:
|
|
# min_versions: ['4.0']
|
|
# versions: 4.0
|
|
# qmid: None
|
|
|
|
import pytest
|
|
from firebird.qa import db_factory, isql_act, Action
|
|
|
|
# version: 4.0
|
|
# resources: None
|
|
|
|
substitutions_1 = [('[ \t]+', ' '), ('F16_BLOB_ID.*', '')]
|
|
|
|
init_script_1 = """"""
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
test_script_1 = """
|
|
set bail on;
|
|
set list on;
|
|
set blob all;
|
|
|
|
create domain dom12_01 as smallint default -32768;
|
|
create domain dom12_02 as int default -2147483648;
|
|
create domain dom12_03 as bigint default -9223372036854775807;
|
|
--create domain dom12_03 as bigint default -9223372036854775808; -- currently raises error 'numeric overflow', see CORE-6291
|
|
create domain dom12_04 as date default '31.12.9999';
|
|
create domain dom12_05 as time default '23:59:59.999';
|
|
create domain dom12_06 as time with time zone default '11:11:11.111 Indian/Cocos';
|
|
create domain dom12_07 as timestamp default '01.01.0001 00:00:01.001';
|
|
create domain dom12_08 as timestamp with time zone default '21.12.2013 11:11:11.111 Indian/Cocos';
|
|
create domain dom12_09 as char(1) character set utf8 default '€';
|
|
create domain dom12_10 as varchar(1) character set utf8 default '€';
|
|
-- https://en.wikipedia.org/wiki/ISO/IEC_8859-1,
|
|
-- see table "Languages with incomplete coverage",
|
|
-- column "Typical workaround" for Hungarian 'Ő':
|
|
create domain dom12_11 as nchar(1) default 'Ö' ;
|
|
create domain dom12_12 as numeric(2,2) default -327.68;
|
|
create domain dom12_13 as decimal(20,2) default -999999999999999999;
|
|
|
|
-- Online evaluation of expressions: https://www.wolframalpha.com
|
|
|
|
-- https://en.wikipedia.org/wiki/Single-precision_floating-point_format
|
|
-- (largest number less than one): 1 - power(2,-24)
|
|
create domain dom12_14 as float default 0.999999940395355224609375;
|
|
|
|
-- https://en.wikipedia.org/wiki/Double-precision_floating-point_format
|
|
-- Max Double: power(2,1023) * ( 1+(1-power(2,-52) )
|
|
create domain dom12_15 as double precision default 1.7976931348623157e308;
|
|
|
|
|
|
create domain dom12_16 as blob default
|
|
'
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
012345678901234567
|
|
';
|
|
|
|
create domain dom12_17 as boolean default false;
|
|
create domain dom12_18 as decfloat(16) default -9.999999999999999E+384;
|
|
create domain dom12_19 as decfloat default -9.999999999999999999999999999999999E6144;
|
|
commit;
|
|
|
|
recreate table test(
|
|
f01 dom12_01
|
|
,f02 dom12_02
|
|
,f03 dom12_03
|
|
,f04 dom12_04
|
|
,f05 dom12_05
|
|
,f06 dom12_06
|
|
,f07 dom12_07
|
|
,f08 dom12_08
|
|
,f09 dom12_09
|
|
,f00 dom12_10
|
|
,f11 dom12_11
|
|
,f12 dom12_12
|
|
,f13 dom12_13
|
|
,f14 dom12_14
|
|
,f15 dom12_15
|
|
,f16_blob_id dom12_16
|
|
,f17 dom12_17
|
|
,f18 dom12_18
|
|
,f19 dom12_19
|
|
);
|
|
commit;
|
|
insert into test default values;
|
|
set count on;
|
|
select * from test;
|
|
"""
|
|
|
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
expected_stdout_1 = """
|
|
F01 -32768
|
|
F02 -2147483648
|
|
F03 -9223372036854775807
|
|
F04 9999-12-31
|
|
F05 23:59:59.9990
|
|
F06 11:11:11.1110 Indian/Cocos
|
|
F07 0001-01-01 00:00:01.0010
|
|
F08 2013-12-21 11:11:11.1110 Indian/Cocos
|
|
F09 €
|
|
F00 €
|
|
F11 Ö
|
|
F12 -327.68
|
|
F13 -999999999999999999.00
|
|
F14 0.99999994
|
|
F15 1.797693134862316e+308
|
|
F16_BLOB_ID 80:0
|
|
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
|
012345678901234567
|
|
|
|
F17 <false>
|
|
F18 -9.999999999999999E+384
|
|
F19 -9.999999999999999999999999999999999E+6144
|
|
|
|
Records affected: 1
|
|
"""
|
|
|
|
@pytest.mark.version('>=4.0')
|
|
def test_1(act_1: Action):
|
|
act_1.expected_stdout = expected_stdout_1
|
|
act_1.execute()
|
|
assert act_1.clean_expected_stdout == act_1.clean_stdout
|
|
|