Bug 29570: Regression tests
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 2 Feb 2022 19:29:00 +0000 (16:29 -0300)
committerFridolin Somers <fridolin.somers@biblibre.com>
Tue, 15 Feb 2022 07:41:38 +0000 (21:41 -1000)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
t/db_dependent/api/v1/acquisitions_orders.t

index 398f918b9705e6a4a3c1f31b77d2070ac64cec07..3025c1856bcbd36d90d06e95e2612d5e5708ae34 100755 (executable)
@@ -137,7 +137,7 @@ subtest 'list() tests' => sub {
 
     subtest 'sorting tests' => sub {
 
-        plan tests => 10;
+        plan tests => 14;
 
         $schema->storage->txn_begin;
 
@@ -188,6 +188,30 @@ subtest 'list() tests' => sub {
         is( $result->[0]->{order_id}, $order_2->id, 'The first element is order_2' );
         is( $result->[1]->{order_id}, $order_1->id, 'The second element is order_1' );
 
+        $biblio_1->biblioitem->set(
+            {
+                isbn          => 'A',
+                ean           => 'Y',
+                publishercode => 'M',
+            }
+        )->store;
+
+        $biblio_2->biblioitem->set(
+            {
+                isbn          => 'B',
+                ean           => 'X',
+                publishercode => 'L',
+            }
+        )->store;
+
+        $result =
+          $t->get_ok( "//$userid:$password@/api/v1/acquisitions/orders?_order_by=-biblio.isbn,+biblio.ean,-biblio.publisher&basket_id=" . $basket->id => {'x-koha-embed' => 'biblio'} )
+            ->status_is( 200, "query successful" )
+            ->tx->res->json;
+
+        is( $result->[0]->{order_id}, $order_2->id, 'Ordered correctly' );
+        is( $result->[1]->{order_id}, $order_1->id, 'Ordered correctly' );
+
         $schema->storage->txn_rollback;
     };