DBIx-Custom / t / common-mysql.t /
Newer Older
47 lines | 1.957kb
added common test executing ...
Yuki Kimoto authored on 2011-08-07
1
use strict;
2
use warnings;
3

            
4
use FindBin;
5
$ENV{DBIX_CUSTOM_TEST_RUN} = 1
test cleanup
Yuki Kimoto authored on 2011-08-08
6
  if -f "$FindBin::Bin/run/common-mysql.tmp";
added common test executing ...
Yuki Kimoto authored on 2011-08-07
7
$ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'mysql private test';
8

            
9
use DBIx::Custom;
10
{
11
    package DBIx::Custom;
cleanup
Yuki Kimoto authored on 2011-08-10
12

            
test cleanup
Yuki Kimoto authored on 2011-08-10
13
    my $date_typename = 'Date';
14
    my $time_typename = 'Time';
15
    my $datetime_typename = 'Datetime';
test cleanup
Yuki Kimoto authored on 2011-08-10
16
    
test cleanup
Yuki Kimoto authored on 2011-08-10
17
    sub date_typename { lc $date_typename }
18
    sub time_typename { lc $time_typename }
19
    sub datetime_typename { lc $datetime_typename }
20

            
21
    my $date_datatype = 9;
22
    my $time_datatype = 'Time';
23
    my $datetime_datatype = 11;
24
    
25
    sub date_datatype { lc $date_datatype }
26
    sub time_datatype { lc $time_datatype }
27
    sub datetime_datatype { lc $datetime_datatype }
28

            
added common test executing ...
Yuki Kimoto authored on 2011-08-07
29
    no warnings 'redefine';
test cleanup
Yuki Kimoto authored on 2011-08-10
30
    has dsn => "dbi:mysql:database=dbix_custom";
31
    has user => 'dbix_custom';
32
    has password => 'dbix_custom';
added common test executing ...
Yuki Kimoto authored on 2011-08-07
33
    
test cleanup
Yuki Kimoto authored on 2011-08-10
34
    sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255)) engine=InnoDB;' }
cleanup test
Yuki Kimoto authored on 2011-08-08
35
    sub create_table1_2 {'create table table1 (key1 varchar(255), key2 varchar(255), '
test cleanup
Yuki Kimoto authored on 2011-08-10
36
     . 'key3 varchar(255), key4 varchar(255), key5 varchar(255)) engine=InnoDB;' }
test cleanup
Yuki Kimoto authored on 2011-08-10
37
    sub create_table1_type { "create table table1 (key1 $date_typename, key2 $datetime_typename) engine=InnoDB;" }
test cleanup
Yuki Kimoto authored on 2011-08-10
38
    sub create_table1_highperformance { "create table table1 (ab varchar(255), bc varchar(255), "
39
      . "ik varchar(255), hi varchar(255), ui varchar(255), pq varchar(255), dc varchar(255)) engine=InnoDB;" }
test cleanup
Yuki Kimoto authored on 2011-08-10
40
    sub create_table2 { 'create table table2 (key1 varchar(255), key3 varchar(255)) engine=InnoDB;' }
test cleranup
Yuki Kimoto authored on 2011-08-10
41
    sub create_table2_2 { "create table table2 (key1 varchar(255), key2 varchar(255), key3 varchar(255)) engine=InnoDB" }
42
    sub create_table3 { "create table table3 (key1 varchar(255), key2 varchar(255), key3 varchar(255)) engine=InnoDB" }
test cleanup
Yuki Kimoto authored on 2011-08-10
43
    sub create_table_reserved {
test cleanup
Yuki Kimoto authored on 2011-08-10
44
      'create table `table` (`select` varchar(255), `update` varchar(255)) engine=InnoDB' }
added common test executing ...
Yuki Kimoto authored on 2011-08-07
45
}
46

            
47
require "$FindBin::Bin/common.t";