From 935e79f00c6b9df3a4fc7ead38396099c1d084da Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Thu, 26 Jul 2012 16:18:22 +1200 Subject: [PATCH] Bug 5327 : Unit tests for C4::ItemType --- t/ItemType.t | 39 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/t/ItemType.t b/t/ItemType.t index de7a4e2..fb7e61f 100755 --- a/t/ItemType.t +++ b/t/ItemType.t @@ -5,10 +5,45 @@ use strict; use warnings; - -use Test::More tests => 1; +use DBI; +use Test::More tests => 6; +use Test::MockModule; BEGIN { use_ok('C4::ItemType'); } + +my $module = new Test::MockModule('C4::Context'); +$module->mock('_new_dbh', sub { + my $dbh = DBI->connect( 'DBI:Mock:', '', '' ) + || die "Cannot create handle: $DBI::errstr\n"; + return $dbh }); + +# Mock data +my $itemtypes = [ + ['itemtype','description','rentalcharge','notforloan','imageurl','summary'], + ['BK','Books',0,0,'',''], + ['CD','CDRom',0,0,'',''] + ]; + + +my $dbh = C4::Context->dbh(); + +my @itemtypes = C4::ItemType->all(); +is(@itemtypes, 0, 'Testing all itemtypes is empty'); + +# This should run exactly one query so we can test +my $history = $dbh->{mock_all_history}; +is(scalar(@{$history}), 1, 'Correct number of statements executed') ; + + +# Now lets mock some data +$dbh->{mock_add_resultset} = $itemtypes; + +@itemtypes = C4::ItemType->all(); +is(@itemtypes, 2, 'ItemType->all should return an array with 2 elements'); + +is($itemtypes[0]->description, 'Books', 'First itemtype is books'); + +is($itemtypes[0]->fish,undef,'Calling a bad descriptor gives undef'); \ No newline at end of file -- 1.7.9.5