Bugzilla – Attachment 177389 Details for
Bug 36081
ArticleRequestsSupportedFormats not enforced server-side
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36081: Mock format
Bug-36081-Mock-format.patch (text/plain), 3.06 KB, created by
Jonathan Druart
on 2025-01-31 13:43:57 UTC
(
hide
)
Description:
Bug 36081: Mock format
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-01-31 13:43:57 UTC
Size:
3.06 KB
patch
obsolete
>From 15f906eed82faec2e92aff87a2e66db5e2701b76 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 31 Jan 2025 14:42:49 +0100 >Subject: [PATCH] Bug 36081: Mock format > >--- > t/db_dependent/Koha/ArticleRequest.t | 28 ++++++++++++++++++---------- > 1 file changed, 18 insertions(+), 10 deletions(-) > >diff --git a/t/db_dependent/Koha/ArticleRequest.t b/t/db_dependent/Koha/ArticleRequest.t >index a73c651e90c..8e32fc8cd45 100755 >--- a/t/db_dependent/Koha/ArticleRequest.t >+++ b/t/db_dependent/Koha/ArticleRequest.t >@@ -44,8 +44,7 @@ subtest 'request() tests' => sub { > my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { lastseen => undef } } ); > my $item = $builder->build_sample_item; > >- my $ar_mock = Test::MockModule->new('Koha::ArticleRequest'); >- $ar_mock->mock( 'notify', sub { ok( 1, '->notify() called' ); } ); >+ my $ar_module = mock_article_request_module(); > > my $ar = Koha::ArticleRequest->new( > { >@@ -100,8 +99,7 @@ subtest 'set_pending() tests' => sub { > my $patron = $builder->build_object({ class => 'Koha::Patrons' }); > my $biblio = $builder->build_sample_biblio; > >- my $ar_mock = Test::MockModule->new('Koha::ArticleRequest'); >- $ar_mock->mock( 'notify', sub { ok( 1, '->notify() called' ); } ); >+ my $ar_module = mock_article_request_module(); > > my $ar = Koha::ArticleRequest->new( > { >@@ -124,8 +122,7 @@ subtest 'process() tests' => sub { > > $schema->storage->txn_begin; > >- my $ar_mock = Test::MockModule->new('Koha::ArticleRequest'); >- $ar_mock->mock( 'notify', sub { ok( 1, '->notify() called' ); } ); >+ my $ar_module = mock_article_request_module(); > > my $ar = $builder->build_object( > { class => 'Koha::ArticleRequests', >@@ -146,8 +143,7 @@ subtest 'complete() tests' => sub { > > $schema->storage->txn_begin; > >- my $ar_mock = Test::MockModule->new('Koha::ArticleRequest'); >- $ar_mock->mock( 'notify', sub { ok( 1, '->notify() called' ); } ); >+ my $ar_module = mock_article_request_module(); > > my $ar = $builder->build_object( > { class => 'Koha::ArticleRequests', >@@ -176,8 +172,7 @@ subtest 'cancel() tests' => sub { > my $patron = $builder->build_object({ class => 'Koha::Patrons' }); > my $item = $builder->build_sample_item; > >- my $ar_mock = Test::MockModule->new('Koha::ArticleRequest'); >- $ar_mock->mock( 'notify', sub { ok( 1, '->notify() called' ); } ); >+ my $ar_module = mock_article_request_module(); > > my $ar = Koha::ArticleRequest->new( > { >@@ -225,3 +220,16 @@ subtest 'store' => sub { > > $schema->storage->txn_rollback; > }; >+ >+sub mock_article_request_module { >+ my $ar_mock = Test::MockModule->new('Koha::ArticleRequest'); >+ $ar_mock->mock( 'notify', sub { ok( 1, '->notify() called' ); } ); >+ $ar_mock->mock( >+ 'format', >+ sub { >+ my $formats = C4::Context->multivalue_preference('ArticleRequestsSupportedFormats'); >+ return $formats->[ int( rand( scalar @$formats ) ) ]; >+ } >+ ); >+ return $ar_mock; >+} >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 36081
:
162107
|
162113
|
177355
|
177356
|
177388
|
177389
|
177675
|
178020
|
178021
|
178022
|
178023
|
178024
|
178069
|
178070
|
178071
|
178072
|
178073
|
178074
|
178610
|
178611
|
178612
|
178613
|
178614
|
178615