File: 97result_class.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 (100 lines) | stat: -rw-r--r-- 3,333 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
use strict;
use warnings;

use Test::More;
use Test::Warn;
use Test::Exception;
use lib qw(t/lib);
use DBICTest;

my $schema = DBICTest->init_schema();

{
  my $cd_rc = $schema->resultset("CD")->result_class;

  throws_ok {
    $schema->resultset("Artist")
      ->search_rs({}, {result_class => "IWillExplode"})
  } qr/Can't locate IWillExplode/, 'nonexistant result_class exception';

# to make ensure_class_loaded happy, dies on inflate
  eval 'package IWillExplode; sub dummy {}';

  my $artist_rs = $schema->resultset("Artist")
    ->search_rs({}, {result_class => "IWillExplode"});
  is($artist_rs->result_class, 'IWillExplode', 'Correct artist result_class');

  throws_ok {
    $artist_rs->result_class('mtfnpy')
  } qr/Can't locate mtfnpy/,
  'nonexistant result_access exception (from accessor)';

  throws_ok {
    $artist_rs->first
  } qr/\QInflator IWillExplode does not provide an inflate_result() method/,
  'IWillExplode explodes on inflate';

  my $cd_rs = $artist_rs->related_resultset('cds');
  is($cd_rs->result_class, $cd_rc, 'Correct cd result_class');

  my $cd_rs2 = $schema->resultset("Artist")->search_rs({})->related_resultset('cds');
  is($cd_rs->result_class, $cd_rc, 'Correct cd2 result_class');

  my $cd_rs3 = $schema->resultset("Artist")->search_rs({},{})->related_resultset('cds');
  is($cd_rs->result_class, $cd_rc, 'Correct cd3 result_class');

  isa_ok(eval{ $cd_rs->find(1) }, $cd_rc, 'Inflated into correct cd result_class');
}


{
  my $cd_rc = $schema->resultset("CD")->result_class;

  my $artist_rs = $schema->resultset("Artist")
    ->search_rs({}, {result_class => "IWillExplode"})->search({artistid => 1});
  is($artist_rs->result_class, 'IWillExplode', 'Correct artist result_class');

  my $cd_rs = $artist_rs->related_resultset('cds');
  is($cd_rs->result_class, $cd_rc, 'Correct cd result_class');

  isa_ok(eval{ $cd_rs->find(1) }, $cd_rc, 'Inflated into correct cd result_class');
  isa_ok(eval{ $cd_rs->search({ cdid => 1 })->first }, $cd_rc, 'Inflated into correct cd result_class');
}

{
  my $rs = $schema->resultset('Artist')->search(
    { 'cds.title' => 'Spoonful of bees' },
    { prefetch => 'cds', result_class => 'DBIx::Class::ResultClass::HashRefInflator' },
  );

  is ($rs->result_class, 'DBIx::Class::ResultClass::HashRefInflator', 'starting with correct resultclass');

  $rs->result_class('DBICTest::Artist');
  is ($rs->result_class, 'DBICTest::Artist', 'resultclass changed');

  my $art = $rs->next;
  is (ref $art, 'DBICTest::Artist', 'Correcty blessed output');

  throws_ok
    { $rs->result_class('IWillExplode') }
    qr/\QChanging the result_class of a ResultSet instance with an active cursor is not supported/,
    'Throws on result class change in progress'
  ;

  my $cds = $art->cds;

  warnings_exist
    { $cds->result_class('IWillExplode') }
    qr/\QChanging the result_class of a ResultSet instance with cached results is a noop/,
    'Warning on noop result_class change'
  ;

  is ($cds->result_class, 'IWillExplode', 'class changed anyway');

  # even though the original was HRI (at $rs definition time above)
  # we lost the control over the *prefetched* object result class
  # when we handed the root object creation to ::Row::inflate_result
  is( ref $cds->next, 'DBICTest::CD', 'Correctly inflated prefetched result');
}

done_testing;