ordered_columns patch from Will Hawes
[dbsrgits/DBIx-Class.git] / t / run / 01core.tl
1 sub run_tests {
2
3 plan tests => 34; 
4
5 my @art = DBICTest->class("Artist")->search({ }, { order_by => 'name DESC'});
6
7 cmp_ok(@art, '==', 3, "Three artists returned");
8
9 my $art = $art[0];
10
11 is($art->name, 'We Are Goth', "Correct order too");
12
13 $art->name('We Are In Rehab');
14
15 is($art->name, 'We Are In Rehab', "Accessor update ok");
16
17 is($art->get_column("name"), 'We Are In Rehab', 'And via get_column');
18
19 ok($art->update, 'Update run');
20
21 @art = DBICTest->class("Artist")->search({ name => 'We Are In Rehab' });
22
23 cmp_ok(@art, '==', 1, "Changed artist returned by search");
24
25 cmp_ok($art[0]->artistid, '==', 3,'Correct artist too');
26
27 $art->delete;
28
29 @art = DBICTest->class("Artist")->search({ });
30
31 cmp_ok(@art, '==', 2, 'And then there were two');
32
33 ok(!$art->in_storage, "It knows it's dead");
34
35 eval { $art->delete; };
36
37 ok($@, "Can't delete twice: $@");
38
39 is($art->name, 'We Are In Rehab', 'But the object is still live');
40
41 $art->insert;
42
43 ok($art->in_storage, "Re-created");
44
45 @art = DBICTest->class("Artist")->search({ });
46
47 cmp_ok(@art, '==', 3, 'And now there are three again');
48
49 my $new = DBICTest->class("Artist")->create({ artistid => 4 });
50
51 cmp_ok($new->artistid, '==', 4, 'Create produced record ok');
52
53 @art = DBICTest->class("Artist")->search({ });
54
55 cmp_ok(@art, '==', 4, "Oh my god! There's four of them!");
56
57 $new->set_column('name' => 'Man With A Fork');
58
59 is($new->name, 'Man With A Fork', 'set_column ok');
60
61 $new->discard_changes;
62
63 ok(!defined $new->name, 'Discard ok');
64
65 $new->name('Man With A Spoon');
66
67 $new->update;
68
69 $new_again = DBICTest->class("Artist")->find(4);
70
71 is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
72
73 is($new_again->ID, 'DBICTest::Artist|artistid=4', 'unique object id generated correctly');
74
75 is(DBICTest->class("Artist")->count, 4, 'count ok');
76
77 my $cd = DBICTest->class("CD")->find(1);
78 my %cols = $cd->get_columns;
79
80 cmp_ok(keys %cols, '==', 4, 'get_columns number of columns ok');
81
82 is($cols{title}, 'Spoonful of bees', 'get_columns values ok');
83
84 %cols = ( title => 'Forkful of bees', year => 2005);
85 $cd->set_columns(\%cols);
86
87 is($cd->title, 'Forkful of bees', 'set_columns ok');
88
89 is($cd->year, 2005, 'set_columns ok');
90
91 $cd->discard_changes;
92
93 # check whether ResultSource->ordered_columns returns columns in order originally supplied
94 my @cd = DBICTest->class("CD")->find(1)->result_source->ordered_columns;
95
96 is_deeply( \@cd, [qw/cdid artist title year/], 'ordered_columns');
97
98 $cd = DBICTest->class("CD")->search({ title => 'Spoonful of bees' }, { cols => ['title'] })->next;
99 is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly');
100
101 # insert_or_update
102 $new = DBICTest->class("Track")->new( {
103   trackid => 100,
104   cd => 1,
105   position => 1,
106   title => 'Insert or Update',
107 } );
108 $new->insert_or_update;
109 ok($new->in_storage, 'insert_or_update insert ok');
110
111 # test in update mode
112 $new->position(5);
113 $new->insert_or_update;
114 is( DBICTest->class("Track")->find(100)->position, 5, 'insert_or_update update ok');
115
116 eval { DBICTest->class("Track")->load_components('DoesNotExist'); };
117
118 ok $@, $@;
119
120 is(DBICTest->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok');
121
122 my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ];
123
124 my $or_rs = DBICTest->class("CD")->search($search, { join => 'tags',
125                                                   order_by => 'cdid' });
126
127 cmp_ok($or_rs->count, '==', 5, 'Search with OR ok');
128
129 my $distinct_rs = DBICTest->class("CD")->search($search, { join => 'tags', distinct => 1 });
130
131 cmp_ok($distinct_rs->all, '==', 4, 'DISTINCT search with OR ok');
132
133 my $tag_rs = DBICTest->class('Tag')->search(
134                [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
135
136 my $rel_rs = $tag_rs->search_related('cd');
137
138 cmp_ok($rel_rs->count, '==', 5, 'Related search ok');
139
140 cmp_ok($or_rs->next->cdid, '==', $rel_rs->next->cdid, 'Related object ok');
141
142 }
143
144 1;