Bug 33146: Unit tests
[koha-ffzg.git] / t / db_dependent / api / v1 / items.t
index 0d4f4c0..27a8566 100755 (executable)
@@ -19,7 +19,8 @@
 
 use Modern::Perl;
 
-use Test::More tests => 3;
+use Test::More tests => 5;
+use Test::MockModule;
 use Test::Mojo;
 use Test::Warn;
 
@@ -98,10 +99,150 @@ subtest 'list() tests' => sub {
     $schema->storage->txn_rollback;
 };
 
+subtest 'list_public() tests' => sub {
+
+    plan tests => 2;
+
+    $schema->storage->txn_begin;
+
+    # Clean out all demo items
+    Koha::Items->delete();
+
+    my $patron = $builder->build_object({ class => 'Koha::Patrons' });
+    my $mocked_category = Test::MockModule->new('Koha::Patron::Category');
+    my $exception = 1;
+    $mocked_category->mock( 'override_hidden_items', sub {
+        return $exception;
+    });
+
+    my $password = 'thePassword123';
+    $patron->set_password( { password => $password, skip_validation => 1 } );
+    my $userid = $patron->userid;
+
+    # have a fresh biblio
+    my $biblio = $builder->build_sample_biblio;
+    # have two itemtypes
+    my $itype_1 = $builder->build_object({ class => 'Koha::ItemTypes' });
+    my $itype_2 = $builder->build_object({ class => 'Koha::ItemTypes' });
+    # have 5 items on that biblio
+    my $item_1 = $builder->build_sample_item(
+        {
+            biblionumber => $biblio->biblionumber,
+            itemlost     => -1,
+            itype        => $itype_1->itemtype,
+            withdrawn    => 1,
+            copynumber   => undef
+        }
+    );
+    my $item_2 = $builder->build_sample_item(
+        {
+            biblionumber => $biblio->biblionumber,
+            itemlost     => 0,
+            itype        => $itype_2->itemtype,
+            withdrawn    => 2,
+            copynumber   => undef
+        }
+    );
+    my $item_3 = $builder->build_sample_item(
+        {
+            biblionumber => $biblio->biblionumber,
+            itemlost     => 1,
+            itype        => $itype_1->itemtype,
+            withdrawn    => 3,
+            copynumber   => undef
+        }
+    );
+    my $item_4 = $builder->build_sample_item(
+        {
+            biblionumber => $biblio->biblionumber,
+            itemlost     => 0,
+            itype        => $itype_2->itemtype,
+            withdrawn    => 4,
+            copynumber   => undef
+        }
+    );
+    my $item_5 = $builder->build_sample_item(
+        {
+            biblionumber => $biblio->biblionumber,
+            itemlost     => 0,
+            itype        => $itype_1->itemtype,
+            withdrawn    => 5,
+            copynumber   => undef
+        }
+    );
+    my $item_6 = $builder->build_sample_item(
+        {
+            biblionumber => $biblio->biblionumber,
+            itemlost     => 2,
+            itype        => $itype_1->itemtype,
+            withdrawn    => 5,
+            copynumber   => undef
+        }
+    );
+
+    my $rules = undef;
+    my $mocked_context = Test::MockModule->new('C4::Context');
+    $mocked_context->mock( 'yaml_preference', sub {
+        return $rules;
+    });
+
+    subtest 'anonymous access' => sub {
+        plan tests => 21;
+
+        t::lib::Mocks::mock_preference( 'hidelostitems', 0 );
+        my $res = $t->get_ok( "/api/v1/public/items" )->status_is(200)->tx->res->json;
+        is( scalar @{ $res }, 6, 'No rules set, hidelostitems unset, all items returned');
+
+        t::lib::Mocks::mock_preference( 'hidelostitems', 1 );
+        $res = $t->get_ok( "/api/v1/public/items" )->status_is(200)->tx->res->json;
+        is( scalar @{ $res }, 3, 'No rules set, hidelostitems set, 3 items hidden');
+
+        t::lib::Mocks::mock_preference( 'hidelostitems', 0 );
+        $rules = { biblionumber => [ $biblio->biblionumber ] };
+        $res = $t->get_ok( "/api/v1/public/items" )->status_is(200)->tx->res->json;
+        is( scalar @{ $res }, 0, 'Biblionumber rule set, hidelostitems unset, all items hidden');
+
+        $rules = { withdrawn => [ 1, 2 ] };
+        $res = $t->get_ok( "/api/v1/public/items" )->status_is(200)->tx->res->json;
+        is( scalar @{ $res }, 4, 'Withdrawn rule set, hidelostitems unset, 2 items hidden');
+
+        $rules = { itype => [ $itype_1->itemtype ] };
+        $res = $t->get_ok( "/api/v1/public/items" )->status_is(200)->tx->res->json;
+        is( scalar @{ $res }, 2, 'Itype rule set, hidelostitems unset, 4 items hidden');
+
+        $rules = { withdrawn => [ 1 ] };
+        $res = $t->get_ok( "/api/v1/public/items?external_id=" . $item_1->barcode )
+          ->status_is(200)->tx->res->json;
+        is( scalar @{ $res }, 0, 'Withdrawn rule set, hidelostitems unset, search on barcode returns no item');
+
+        $rules = undef;
+        $t->get_ok( "/api/v1/public/items?external_id=" . $item_1->barcode )
+          ->status_is(200)->json_is(
+            '/0' => $item_1->to_api( { public => 1 } ),
+'No rules set, hidelostitems unset, public form of item returned on barcode search'
+          );
+    };
+
+    subtest 'logged in user access' => sub {
+        plan tests => 3;
+
+        t::lib::Mocks::mock_preference( 'hidelostitems', 1 );
+        $rules = { withdrawn => [ 1, 2 ] };
+        my $res = $t->get_ok("//$userid:$password@/api/v1/public/items")
+          ->status_is(200)->tx->res->json;
+        is(
+            scalar @{$res},
+            3,
+'Rules on withdrawn but patron with override passed, hidelostitems set'
+        );
+    };
+
+    $schema->storage->txn_rollback;
+};
 
 subtest 'get() tests' => sub {
 
-    plan tests => 9;
+    plan tests => 30;
 
     $schema->storage->txn_begin;
 
@@ -139,6 +280,127 @@ subtest 'get() tests' => sub {
       ->status_is(404)
       ->json_is( '/error' => 'Item not found' );
 
+    t::lib::Mocks::mock_preference( 'item-level_itypes', 0 );
+
+    my $biblio = $builder->build_sample_biblio;
+    my $itype =
+      $builder->build_object( { class => 'Koha::ItemTypes' } );
+    $item = $builder->build_sample_item(
+        { biblionumber => $biblio->biblionumber, itype => $itype->itemtype } );
+
+    isnt( $biblio->itemtype, $itype->itemtype, "Test biblio level itemtype and item level itemtype do not match");
+
+    $t->get_ok( "//$userid:$password@/api/v1/items/" . $item->itemnumber )
+      ->status_is( 200, 'SWAGGER3.2.2' )
+      ->json_is( '/item_type_id' => $itype->itemtype, 'item-level_itypes:0' )
+      ->json_is( '/effective_item_type_id' => $biblio->itemtype, 'item-level_itypes:0' );
+
+    t::lib::Mocks::mock_preference( 'item-level_itypes', 1 );
+
+    $t->get_ok( "//$userid:$password@/api/v1/items/" . $item->itemnumber )
+      ->status_is( 200, 'SWAGGER3.2.2' )
+      ->json_is( '/item_type_id' => $itype->itemtype, 'item-level_itype:1' )
+      ->json_is( '/effective_item_type_id' => $itype->itemtype, 'item-level_itypes:1' );
+
+
+    my $biblio_itype = Koha::ItemTypes->find($biblio->itemtype);
+    $biblio_itype->notforloan(3)->store();
+    $itype->notforloan(2)->store();
+    $item->notforloan(1)->store();
+
+    $t->get_ok( "//$userid:$password@/api/v1/items/" . $item->itemnumber )
+      ->status_is( 200, 'SWAGGER3.2.2' )
+      ->json_is( '/not_for_loan_status' => 1, 'not_for_loan_status is 1' )
+      ->json_is( '/effective_not_for_loan_status' => 1, 'effective_not_for_loan_status picks up item level' );
+
+    $item->notforloan(0)->store();
+    $t->get_ok( "//$userid:$password@/api/v1/items/" . $item->itemnumber )
+      ->status_is( 200, 'SWAGGER3.2.2' )
+      ->json_is( '/not_for_loan_status' => 0, 'not_for_loan_status is 0' )
+      ->json_is( '/effective_not_for_loan_status' => 2, 'effective_not_for_loan_status now picks up itemtype level - item-level_itypes:1' );
+
+    t::lib::Mocks::mock_preference( 'item-level_itypes', 0 );
+    $t->get_ok( "//$userid:$password@/api/v1/items/" . $item->itemnumber )
+      ->status_is( 200, 'SWAGGER3.2.2' )
+      ->json_is( '/not_for_loan_status' => 0, 'not_for_loan_status is 0' )
+      ->json_is( '/effective_not_for_loan_status' => 3, 'effective_not_for_loan_status now picks up itemtype level - item-level_itypes:0' );
+
+    $schema->storage->txn_rollback;
+};
+
+subtest 'delete() tests' => sub {
+
+    plan tests => 23;
+
+    $schema->storage->txn_begin;
+
+    my $fail = 0;
+    my $expected_error;
+
+    # we want to control all the safe_to_delete use cases
+    my $item_class = Test::MockModule->new('Koha::Item');
+    $item_class->mock( 'safe_to_delete', sub {
+        if ( $fail ) {
+            return Koha::Result::Boolean->new(0)->add_message({ message => $expected_error });
+        }
+        else {
+            return Koha::Result::Boolean->new(1);
+        }
+    });
+
+    my $librarian = $builder->build_object(
+        {
+            class => 'Koha::Patrons',
+            value => { flags => 2**9 }    # catalogue flag = 2
+        }
+    );
+    my $password = 'thePassword123';
+    $librarian->set_password( { password => $password, skip_validation => 1 } );
+    my $userid = $librarian->userid;
+
+    my $item = $builder->build_sample_item;
+
+    my $errors = {
+        book_on_loan       => { code => 'checked_out',        description => 'The item is checked out' },
+        book_reserved      => { code => 'found_hold',         description => 'Waiting or in-transit hold for the item' },
+        last_item_for_hold => { code => 'last_item_for_hold', description => 'The item is the last one on a record on which a biblio-level hold is placed' },
+        linked_analytics   => { code => 'linked_analytics',   description => 'The item has linked analytic records' },
+        not_same_branch    => { code => 'not_same_branch',    description => 'The item is blocked by independent branches' },
+    };
+
+    $fail = 1;
+
+    foreach my $error_code ( keys %{$errors} ) {
+
+        $expected_error = $error_code;
+
+        $t->delete_ok( "//$userid:$password@/api/v1/items/" . $item->id )
+          ->status_is(409)
+          ->json_is(
+            { error      => $errors->{$error_code}->{description},
+              error_code => $errors->{$error_code}->{code},
+            }
+        );
+    }
+
+    $expected_error = 'unknown_error';
+    $t->delete_ok( "//$userid:$password@/api/v1/items/" . $item->id )
+      ->status_is(500, 'unhandled error case generated default unhandled exception message')
+      ->json_is(
+        { error      => 'Something went wrong, check Koha logs for details.',
+          error_code => 'internal_server_error',
+        }
+    );
+
+    $fail = 0;
+
+    $t->delete_ok("//$userid:$password@/api/v1/items/" . $item->id)
+      ->status_is(204, 'SWAGGER3.2.4')
+      ->content_is('', 'SWAGGER3.3.4');
+
+    $t->delete_ok("//$userid:$password@/api/v1/items/" . $item->id)
+      ->status_is(404);
+
     $schema->storage->txn_rollback;
 };