File: 20invocations.t

package info (click to toggle)
libdbix-class-schema-loader-perl 0.07053-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,464 kB
  • sloc: perl: 11,520; sh: 544; makefile: 4
file content (194 lines) | stat: -rw-r--r-- 6,734 bytes parent folder | download | duplicates (4)
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
use strict;
use warnings;
use Test::More;
use Test::Warn;
use DBIx::Class::Schema::Loader::Optional::Dependencies;
use DBIx::Class::Schema::Loader::Utils qw/sigwarn_silencer/;
use lib qw(t/lib);
use make_dbictest_db;

# Takes a $schema as input, runs 4 basic tests
sub test_schema {
    my ($testname, $schema) = @_;

    warnings_are {
        $schema = $schema->clone if !ref $schema;
        isa_ok($schema, 'DBIx::Class::Schema', $testname);

        my $rel_foo_rs = $schema->resultset('Bar')->search({ barid => 3})->search_related('fooref');
        isa_ok($rel_foo_rs, 'DBIx::Class::ResultSet', $testname);

        my $rel_foo = $rel_foo_rs->next;
        isa_ok($rel_foo, "DBICTest::Schema::_${testname}::Foo", $testname);

        is($rel_foo->footext, 'Foo record associated with the Bar with barid 3', "$testname correct object");

        my $foo_rs = $schema->resultset('Foo');
        my $foo_new = $foo_rs->create({footext => "${testname}_foo"});
        is ($foo_rs->search({footext => "${testname}_foo"})->count, 1, "$testname object created") || die;
    } [], "No warnings during $testname invocations";
}

my @invocations = (
    'hardcode' => sub {
        package DBICTest::Schema::_hardcode;
        use base qw/ DBIx::Class::Schema::Loader /;
        __PACKAGE__->naming('current');
        __PACKAGE__->use_namespaces(0);
        __PACKAGE__->connection($make_dbictest_db::dsn);
        __PACKAGE__;
    },
    'normal' => sub {
        package DBICTest::Schema::_normal;
        use base qw/ DBIx::Class::Schema::Loader /;
        __PACKAGE__->loader_options();
        __PACKAGE__->naming('current');
        __PACKAGE__->use_namespaces(0);
        __PACKAGE__->connect($make_dbictest_db::dsn);
    },
    'make_schema_at' => sub {
        use DBIx::Class::Schema::Loader qw/ make_schema_at /;
        make_schema_at(
            'DBICTest::Schema::_make_schema_at',
            {
                really_erase_my_files => 1,
                naming => 'current',
                use_namespaces => 0
            },
            [ $make_dbictest_db::dsn ],
        );
        DBICTest::Schema::_make_schema_at->clone;
    },
    'embedded_options' => sub {
        package DBICTest::Schema::_embedded_options;
        use base qw/ DBIx::Class::Schema::Loader /;
        __PACKAGE__->naming('current');
        __PACKAGE__->use_namespaces(0);
        __PACKAGE__->connect(
            $make_dbictest_db::dsn,
            { loader_options => { really_erase_my_files => 1 } }
        );
    },
    'embedded_options_in_attrs' => sub {
        package DBICTest::Schema::_embedded_options_in_attrs;
        use base qw/ DBIx::Class::Schema::Loader /;
        __PACKAGE__->naming('current');
        __PACKAGE__->use_namespaces(0);
        __PACKAGE__->connect(
            $make_dbictest_db::dsn,
            undef,
            undef,
            { AutoCommit => 1, loader_options => { really_erase_my_files => 1 } }
        );
    },
    'embedded_options_make_schema_at' => sub {
        use DBIx::Class::Schema::Loader qw/ make_schema_at /;
        make_schema_at(
            'DBICTest::Schema::_embedded_options_make_schema_at',
            { },
            [
                $make_dbictest_db::dsn,
                { loader_options => {
                    really_erase_my_files => 1,
                    naming => 'current',
                    use_namespaces => 0,
                } },
            ],
        );
        "DBICTest::Schema::_embedded_options_make_schema_at";
    },
    'almost_embedded' => sub {
        package DBICTest::Schema::_almost_embedded;
        use base qw/ DBIx::Class::Schema::Loader /;
        __PACKAGE__->loader_options(
            really_erase_my_files => 1,
            naming => 'current',
            use_namespaces => 0,
        );
        __PACKAGE__->connect(
            $make_dbictest_db::dsn,
            undef, undef, { AutoCommit => 1 }
        );
    },
    'make_schema_at_explicit' => sub {
        use DBIx::Class::Schema::Loader;
        DBIx::Class::Schema::Loader::make_schema_at(
            'DBICTest::Schema::_make_schema_at_explicit',
            {
                really_erase_my_files => 1,
                naming => 'current',
                use_namespaces => 0,
            },
            [ $make_dbictest_db::dsn ],
        );
        DBICTest::Schema::_make_schema_at_explicit->clone;
    },
    'no_skip_load_external' => sub {
        # By default we should pull in t/lib/DBICTest/Schema/_no_skip_load_external/Foo.pm $skip_me since t/lib is in @INC
        use DBIx::Class::Schema::Loader;
        DBIx::Class::Schema::Loader::make_schema_at(
            'DBICTest::Schema::_no_skip_load_external',
            {
                really_erase_my_files => 1,
                naming => 'current',
                use_namespaces => 0,
            },
            [ $make_dbictest_db::dsn ],
        );
        DBICTest::Schema::_no_skip_load_external->clone;
    },
    'skip_load_external' => sub {
        # When we explicitly skip_load_external t/lib/DBICTest/Schema/_skip_load_external/Foo.pm should be ignored
        use DBIx::Class::Schema::Loader;
        DBIx::Class::Schema::Loader::make_schema_at(
            'DBICTest::Schema::_skip_load_external',
            {
                really_erase_my_files => 1,
                naming => 'current',
                use_namespaces => 0,
                skip_load_external => 1,
            },
            [ $make_dbictest_db::dsn ],
        );
        DBICTest::Schema::_skip_load_external->clone;
    },
    (DBIx::Class::Schema::Loader::Optional::Dependencies->req_ok_for('use_moose') ?
        ('use_moose' => sub {
            package DBICTest::Schema::_use_moose;
            use base qw/ DBIx::Class::Schema::Loader /;
            __PACKAGE__->naming('current');
            __PACKAGE__->use_namespaces(0);
            __PACKAGE__->connect(
                $make_dbictest_db::dsn,
                { loader_options => { use_moose =>  1 } }
            );
        })
        : ()
    ),
);

# 6 tests per k/v pair
plan tests => 6 * (@invocations/2) + 2;  # + 2 more manual ones below.

while(@invocations) {
    my $style = shift @invocations;
    my $cref = shift @invocations;

    my $schema = do {
        local $SIG{__WARN__} = sigwarn_silencer(
            qr/Deleting existing file .+ due to 'really_erase_my_files' setting/
        );
        $cref->();
    };

    test_schema($style, $schema);
}

{
    no warnings 'once';

    is($DBICTest::Schema::_no_skip_load_external::Foo::skip_me, "bad mojo",
        "external content loaded");
    is($DBICTest::Schema::_skip_load_external::Foo::skip_me, undef,
        "external content not loaded with skip_load_external => 1");
}