added common test executing ...
|
1 |
use strict; |
2 |
use warnings; |
|
3 | ||
4 |
use FindBin; |
|
5 |
$ENV{DBIX_CUSTOM_TEST_RUN} = 1 |
|
added run file
|
6 |
if -f "$FindBin::Bin/run/common-postgresql.run"; |
added common test executing ...
|
7 |
$ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'postgresql private test'; |
8 | ||
9 |
use DBIx::Custom; |
|
10 |
{ |
|
11 |
package DBIx::Custom; |
|
12 |
no warnings 'redefine'; |
|
cleanup
|
13 | |
test cleanup
|
14 |
my $date_typename = 'Date'; |
15 |
my $time_typename = 'Time'; |
|
16 |
my $datetime_typename = 'Timestamp'; |
|
17 | ||
18 |
sub date_typename { lc $date_typename } |
|
19 |
sub time_typename { lc $time_typename } |
|
20 |
sub datetime_typename { 'timestamp without time zone' } |
|
21 | ||
22 |
my $date_datatype = 91; |
|
23 |
my $time_datatype = 'Time'; |
|
24 |
my $datetime_datatype = 11; |
|
25 | ||
26 |
sub date_datatype { lc $date_datatype } |
|
27 |
sub time_datatype { lc $time_datatype } |
|
28 |
sub datetime_datatype { lc $datetime_datatype } |
|
cleanup
|
29 | |
test cleanup
|
30 |
has dsn => "dbi:Pg:dbname=dbix_custom"; |
31 |
has user => 'dbix_custom'; |
|
32 |
has password => 'dbix_custom'; |
|
update pod
|
33 |
has exclude_table => sub { |
added EXPERIMENTAL system_ta...
|
34 | |
35 |
return qr/^( |
|
36 |
pg_|column_|role_|view_|sql_ |
|
37 |
|applicable_roles |
|
38 |
|check_constraints |
|
39 |
|columns |
|
40 |
|constraint_column_usage |
|
41 |
|constraint_table_usage |
|
42 |
|data_type_privileges |
|
43 |
|domain_constraints |
|
44 |
|domain_udt_usage |
|
45 |
|domains |
|
46 |
|element_types |
|
47 |
|enabled_roles |
|
update pod
|
48 |
|information_schema |
added EXPERIMENTAL system_ta...
|
49 |
|information_schema_catalog_name |
50 |
|key_column_usage |
|
51 |
|parameters |
|
52 |
|referential_constraints |
|
53 |
|routine_privileges |
|
54 |
|routines |
|
55 |
|schemata |
|
56 |
|table_constraints |
|
57 |
|table_privileges |
|
58 |
|tables |
|
59 |
|triggered_update_columns |
|
60 |
|triggers |
|
61 |
|usage_privileges |
|
62 |
|views |
|
63 |
)/x |
|
64 |
}; |
|
added common test executing ...
|
65 |
|
66 |
sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255));' } |
|
cleanup test
|
67 |
sub create_table1_2 {'create table table1 (key1 varchar(255), key2 varchar(255), ' |
68 |
. 'key3 varchar(255), key4 varchar(255), key5 varchar(255));' } |
|
test cleanup
|
69 |
sub create_table1_type { "create table table1 (key1 $date_typename, key2 $datetime_typename);" } |
test cleanup
|
70 |
sub create_table1_highperformance { "create table table1 (ab varchar(255), bc varchar(255), " |
71 |
. "ik varchar(255), hi varchar(255), ui varchar(255), pq varchar(255), dc varchar(255));" } |
|
test cleanup
|
72 |
sub create_table2 { 'create table table2 (key1 varchar(255), key3 varchar(255));' } |
test cleranup
|
73 |
sub create_table2_2 { "create table table2 (key1 varchar(255), key2 varchar(255), key3 varchar(255))" } |
74 |
sub create_table3 { "create table table3 (key1 varchar(255), key2 varchar(255), key3 varchar(255))" } |
|
test cleanup
|
75 |
sub create_table_reserved { 'create table "table" ("select" varchar(255), "update" varchar(255))' } |
added common test executing ...
|
76 |
} |
77 | ||
78 |
require "$FindBin::Bin/common.t"; |