File: 76joins.t

package info (click to toggle)
libdbix-class-perl 0.082844-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,320 kB
  • sloc: perl: 27,215; sql: 322; sh: 29; makefile: 16
file content (128 lines) | stat: -rw-r--r-- 4,049 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
use strict;
use warnings;

use Test::More;
use lib qw(t/lib);
use DBICTest ':DiffSQL';

my $schema = DBICTest->init_schema();

my $rs = $schema->resultset("CD")->search(
           { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
           { from => [
              { 'me' => 'cd' },
              [
                { artist => 'artist' },
                { 'me.artist' => { -ident => 'artist.artistid' } },
              ],
           ] }
         );

is( $rs + 0, 1, "Single record in resultset");

is($rs->first->title, 'Forkful of bees', 'Correct record returned');

$rs = $schema->resultset("CD")->search(
           { 'year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
           { join => 'artist' });

is( $rs + 0, 1, "Single record in resultset");

is($rs->first->title, 'Forkful of bees', 'Correct record returned');

$rs = $schema->resultset("CD")->search(
           { 'artist.name' => 'We Are Goth',
             'liner_notes.notes' => 'Kill Yourself!' },
           { join => [ qw/artist liner_notes/ ] });

is( $rs + 0, 1, "Single record in resultset");

is($rs->first->title, 'Come Be Depressed With Us', 'Correct record returned');

# when using join attribute, make sure slice()ing all objects has same count as all()
$rs = $schema->resultset("CD")->search(
    { 'artist' => 1 },
    { join => [qw/artist/], order_by => 'artist.name' }
);
is( scalar $rs->all, scalar $rs->slice(0, $rs->count - 1), 'slice() with join has same count as all()' );

ok(!$rs->slice($rs->count+1000, $rs->count+1002)->count,
  'Slicing beyond end of rs returns a zero count');

$rs = $schema->resultset("Artist")->search(
        { 'liner_notes.notes' => 'Kill Yourself!' },
        { join => { 'cds' => 'liner_notes' } });

is( $rs->count, 1, "Single record in resultset");

is($rs->first->name, 'We Are Goth', 'Correct record returned');


{
    $schema->populate('Artist', [
        [ qw/artistid name/ ],
        [ 4, 'Another Boy Band' ],
    ]);
    $schema->populate('CD', [
        [ qw/cdid artist title year/ ],
        [ 6, 2, "Greatest Hits", 2001 ],
        [ 7, 4, "Greatest Hits", 2005 ],
        [ 8, 4, "BoyBandBlues", 2008 ],
    ]);
    $schema->populate('TwoKeys', [
        [ qw/artist cd/ ],
        [ 2, 4 ],
        [ 2, 6 ],
        [ 4, 7 ],
        [ 4, 8 ],
    ]);

    my $cd_count = sub { $schema->resultset("CD")->count };
    my $tk_count = sub { $schema->resultset("TwoKeys")->count };

    is($cd_count->(), 8, '8 rows in table cd');
    is($tk_count->(), 7, '7 rows in table twokeys');

    my $artist1_rs = $schema->resultset("CD")->search(
      { 'artist.name' => 'Caterwauler McCrae' },
      { join => [qw/artist/]}
    );

    my $artist2_rs = $schema->resultset("CD")->search(
      { 'artist.name' => 'Random Boy Band' },
      { join => [qw/artist/]}
    );

    is( $artist1_rs->count, 3, '3 Caterwauler McCrae CDs' );
    ok( $artist1_rs->delete, 'Successfully deleted 3 CDs' );
    is( $artist1_rs->count, 0, '0 Caterwauler McCrae CDs' );
    is( $artist2_rs->count, 2, '3 Random Boy Band CDs' );
    ok( $artist2_rs->update( { 'artist' => 1 } ) );
    is( $artist2_rs->count, 0, '0 Random Boy Band CDs' );
    is( $artist1_rs->count, 2, '2 Caterwauler McCrae CDs' );

    # test update on multi-column-pk
    my $tk1_rs = $schema->resultset("TwoKeys")->search(
      {
        'artist.name' => { like => '%Boy Band' },
        'cd.title'    => 'Greatest Hits',
      },
      { join => [qw/artist cd/] }
    );

    my $tk2_rs = $schema->resultset("TwoKeys")->search(
      { 'artist.name' => 'Caterwauler McCrae' },
      { join => [qw/artist/]}
    );

    is( $tk2_rs->count, 2, 'TwoKeys count == 2' );
    is( $tk1_rs->count, 2, 'TwoKeys count == 2' );
    ok( $tk1_rs->update( { artist => 1 } ) );
    is( $tk1_rs->count, 0, 'TwoKeys count == 0' );
    is( $tk2_rs->count, 4, '2 Caterwauler McCrae CDs' );
    ok( $tk2_rs->delete, 'Successfully deleted 4 CDs' );
    is($cd_count->(), 5, '5 rows in table cd');
    is($tk_count->(), 3, '3 rows in table twokeys');
}

done_testing;