View | Details | Raw Unified | Return to bug 39488
Collapse All | Expand All

(-)a/t/db_dependent/Koha/Objects.t (-5 / +71 lines)
Lines 20-26 Link Here
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use Test::NoWarnings;
22
use Test::NoWarnings;
23
use Test::More tests => 24;
23
use Test::More tests => 25;
24
use Test::Exception;
24
use Test::Exception;
25
use Test::MockModule;
25
use Test::MockModule;
26
use Test::Warn;
26
use Test::Warn;
Lines 151-157 subtest 'new' => sub { Link Here
151
};
151
};
152
152
153
subtest 'find' => sub {
153
subtest 'find' => sub {
154
    plan tests => 4;
154
    plan tests => 5;
155
155
156
    # check find on a single PK
156
    # check find on a single PK
157
    my $patron = $builder->build( { source => 'Borrower' } );
157
    my $patron = $builder->build( { source => 'Borrower' } );
Lines 179-184 subtest 'find' => sub { Link Here
179
    );
179
    );
180
180
181
    is( Koha::Patrons->find(), undef, 'Find returns undef if no params passed' );
181
    is( Koha::Patrons->find(), undef, 'Find returns undef if no params passed' );
182
183
    # Test that find passes $result in object_class call
184
    my $module = Test::MockModule->new('Koha::Patrons');
185
    $module->mock(
186
        'object_class',
187
        sub {
188
            my ( $self, $params ) = @_;
189
            warn "Found " . ref $params;
190
            return $module->original("object_class")->( $self, $params );
191
        }
192
    );
193
    warning_is { $obj = Koha::Patrons->find( $patron->{borrowernumber} ); }
194
    'Found Koha::Schema::Result::Borrower', "Koha::Objects->find passed DBIx::Class::Result to \$self->object_class";
195
    $module->unmock('object_class');
182
};
196
};
183
197
184
subtest 'search_related' => sub {
198
subtest 'search_related' => sub {
Lines 209-215 subtest 'search_related' => sub { Link Here
209
};
223
};
210
224
211
subtest 'single' => sub {
225
subtest 'single' => sub {
212
    plan tests => 2;
226
    plan tests => 3;
213
    my $builder  = t::lib::TestBuilder->new;
227
    my $builder  = t::lib::TestBuilder->new;
214
    my $patron_1 = $builder->build( { source => 'Borrower' } );
228
    my $patron_1 = $builder->build( { source => 'Borrower' } );
215
    my $patron_2 = $builder->build( { source => 'Borrower' } );
229
    my $patron_2 = $builder->build( { source => 'Borrower' } );
Lines 217-226 subtest 'single' => sub { Link Here
217
    is( ref($patron), 'Koha::Patron', 'Koha::Objects->single returns a single Koha::Patron object.' );
231
    is( ref($patron), 'Koha::Patron', 'Koha::Objects->single returns a single Koha::Patron object.' );
218
    warning_like { Koha::Patrons->search->single } qr/SQL that returns multiple rows/,
232
    warning_like { Koha::Patrons->search->single } qr/SQL that returns multiple rows/,
219
        "Warning is presented if single is used for a result with multiple rows.";
233
        "Warning is presented if single is used for a result with multiple rows.";
234
235
    # Test that single passes $result in object_class call
236
    my $module = Test::MockModule->new('Koha::Patrons');
237
    $module->mock(
238
        'object_class',
239
        sub {
240
            my ( $self, $params ) = @_;
241
            warn "Found " . ref $params;
242
            return $module->original("object_class")->( $self, $params );
243
        }
244
    );
245
    warning_is { $patron = Koha::Patrons->search( {}, { rows => 1 } )->single; }
246
    'Found Koha::Schema::Result::Borrower', "Koha::Objects->single passed DBIx::Class::Result into \$self->object_class";
247
248
    $module->unmock('object_class');
249
};
250
251
subtest 'next' => sub {
252
    plan tests => 1;
253
254
    my $builder     = t::lib::TestBuilder->new;
255
    my $patron_1    = $builder->build( { source => 'Borrower' } );
256
    my $patron_2    = $builder->build( { source => 'Borrower' } );
257
258
    # Test that single passes $result in object_class call
259
    my $module = Test::MockModule->new('Koha::Patrons');
260
    $module->mock(
261
        'object_class',
262
        sub {
263
            my ( $self, $params ) = @_;
264
            warn "Found " . ref $params;
265
            return $module->original("object_class")->( $self, $params );
266
        }
267
    );
268
    warning_is { my $next_patron = Koha::Patrons->search->next; }
269
    'Found Koha::Schema::Result::Borrower', "Koha::Objects->next passed DBIx::Class::Result into \$self->object_class";
270
271
    $module->unmock('object_class');
220
};
272
};
221
273
222
subtest 'last' => sub {
274
subtest 'last' => sub {
223
    plan tests => 3;
275
    plan tests => 4;
224
    my $builder     = t::lib::TestBuilder->new;
276
    my $builder     = t::lib::TestBuilder->new;
225
    my $patron_1    = $builder->build( { source => 'Borrower' } );
277
    my $patron_1    = $builder->build( { source => 'Borrower' } );
226
    my $patron_2    = $builder->build( { source => 'Borrower' } );
278
    my $patron_2    = $builder->build( { source => 'Borrower' } );
Lines 233-238 subtest 'last' => sub { Link Here
233
    );
285
    );
234
    $last_patron = Koha::Patrons->search( { surname => 'should_not_exist' } )->last;
286
    $last_patron = Koha::Patrons->search( { surname => 'should_not_exist' } )->last;
235
    is( $last_patron, undef, '->last should return undef if search does not return any results' );
287
    is( $last_patron, undef, '->last should return undef if search does not return any results' );
288
289
    # Test that single passes $result in object_class call
290
    my $module = Test::MockModule->new('Koha::Patrons');
291
    $module->mock(
292
        'object_class',
293
        sub {
294
            my ( $self, $params ) = @_;
295
            warn "Found " . ref $params;
296
            return $module->original("object_class")->( $self, $params );
297
        }
298
    );
299
    warning_is { $last_patron = Koha::Patrons->search->last; }
300
    'Found Koha::Schema::Result::Borrower', "Koha::Objects->last passed DBIx::Class::Result into \$self->object_class";
301
302
    $module->unmock('object_class');
236
};
303
};
237
304
238
subtest 'get_column' => sub {
305
subtest 'get_column' => sub {
239
- 

Return to bug 39488