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