add TODO on constraint check
[dbsrgits/DBIx-Class.git] / t / cdbi-t / 01-columns.t
CommitLineData
ea2e61bf 1use strict;
2
289ba852 3use Test::More;
4
5BEGIN {
6 eval "use DBIx::Class::CDBICompat;";
e60dc79f 7 plan $@ ? (skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@") : (tests=> 24);
289ba852 8}
9
ea2e61bf 10
11#-----------------------------------------------------------------------
12# Make sure that we can set up columns properly
13#-----------------------------------------------------------------------
14package State;
15
8452e496 16use base 'DBIx::Class::Test::SQLite';
ea2e61bf 17
18State->table('State');
19State->columns(Essential => qw/Abbreviation Name/);
20State->columns(Primary => 'Name');
21State->columns(Weather => qw/Rain Snowfall/);
22State->columns(Other => qw/Capital Population/);
23#State->has_many(cities => "City");
24
05ccf064 25sub accessor_name_for {
ea2e61bf 26 my ($class, $column) = @_;
27 my $return = $column eq "Rain" ? "Rainfall" : $column;
28 return $return;
29}
30
05ccf064 31sub mutator_name_for {
ea2e61bf 32 my ($class, $column) = @_;
33 my $return = $column eq "Rain" ? "set_Rainfall" : "set_$column";
34 return $return;
35}
36
37sub Snowfall { 1 }
38
39
40package City;
41
8452e496 42use base 'DBIx::Class::Test::SQLite';
ea2e61bf 43
44City->table('City');
45City->columns(All => qw/Name State Population/);
ea2e61bf 46
97ac49db 47{
48 # Disable the `no such table' warning
49 local $SIG{__WARN__} = sub {
50 my $warning = shift;
51 warn $warning unless ($warning =~ /\Qno such table: City(1)\E/);
52 };
53
54 City->has_a(State => 'State');
55}
ea2e61bf 56
57#-------------------------------------------------------------------------
58package CD;
8452e496 59use base 'DBIx::Class::Test::SQLite';
ea2e61bf 60
61CD->table('CD');
62CD->columns('All' => qw/artist title length/);
63
64#-------------------------------------------------------------------------
65
66package main;
67
68is(State->table, 'State', 'State table()');
69is(State->primary_column, 'name', 'State primary()');
70is_deeply [ State->columns('Primary') ] => [qw/name/],
71 'State Primary:' . join ", ", State->columns('Primary');
72is_deeply [ sort State->columns('Essential') ] => [qw/abbreviation name/],
73 'State Essential:' . join ", ", State->columns('Essential');
74is_deeply [ sort State->columns('All') ] =>
75 [ sort qw/name abbreviation rain snowfall capital population/ ],
76 'State All:' . join ", ", State->columns('All');
77
78is(CD->primary_column, 'artist', 'CD primary()');
79is_deeply [ CD->columns('Primary') ] => [qw/artist/],
80 'CD primary:' . join ", ", CD->columns('Primary');
81is_deeply [ sort CD->columns('All') ] => [qw/artist length title/],
82 'CD all:' . join ", ", CD->columns('All');
83is_deeply [ sort CD->columns('Essential') ] => [qw/artist/],
84 'CD essential:' . join ", ", CD->columns('Essential');
85
86ok(State->find_column('Rain'), 'find_column Rain');
87ok(State->find_column('rain'), 'find_column rain');
88ok(!State->find_column('HGLAGAGlAG'), '!find_column HGLAGAGlAG');
89
90{
91
92 can_ok +State => qw/Rainfall _Rainfall_accessor set_Rainfall
93 _set_Rainfall_accessor Snowfall _Snowfall_accessor set_Snowfall
94 _set_Snowfall_accessor/;
95
96 foreach my $method (qw/Rain _Rain_accessor rain snowfall/) {
97 ok !State->can($method), "State can't $method";
98 }
99
100}
101
102{
103 SKIP: {
8fe001e1 104 skip "No column objects", 1;
ea2e61bf 105
106 eval { my @grps = State->__grouper->groups_for("Huh"); };
107 ok $@, "Huh not in groups";
108 }
109
110 my @grps = sort State->__grouper->groups_for(State->_find_columns(qw/rain capital/));
111 is @grps, 2, "Rain and Capital = 2 groups";
9bc6db13 112 @grps = sort @grps; # Because the underlying API is hash-based
ea2e61bf 113 is $grps[0], 'Other', " - Other";
114 is $grps[1], 'Weather', " - Weather";
115}
116
d7156e50 117#{
118#
119# package DieTest;
120# @DieTest::ISA = qw(DBIx::Class);
121# DieTest->load_components(qw/CDBICompat::Retrieve Core/);
122# package main;
123# local $SIG{__WARN__} = sub { };
124# eval { DieTest->retrieve(1) };
125# like $@, qr/unless primary columns are defined/, "Need primary key for retrieve";
126#}
ea2e61bf 127
128#-----------------------------------------------------------------------
129# Make sure that columns inherit properly
130#-----------------------------------------------------------------------
131package State;
132
133package A;
134@A::ISA = qw(DBIx::Class);
126042ee 135__PACKAGE__->load_components(qw/CDBICompat Core/);
ec77fadc 136__PACKAGE__->table('dummy');
ea2e61bf 137__PACKAGE__->columns(Primary => 'id');
138
139package A::B;
140@A::B::ISA = 'A';
ec77fadc 141__PACKAGE__->table('dummy2');
ea2e61bf 142__PACKAGE__->columns(All => qw(id b1));
143
144package A::C;
145@A::C::ISA = 'A';
ec77fadc 146__PACKAGE__->table('dummy3');
ea2e61bf 147__PACKAGE__->columns(All => qw(id c1 c2 c3));
148
149package main;
150is join (' ', sort A->columns), 'id', "A columns";
151is join (' ', sort A::B->columns), 'b1 id', "A::B columns";
152is join (' ', sort A::C->columns), 'c1 c2 c3 id', "A::C columns";
153