Bugzilla – Attachment 85287 Details for
Bug 22368
Table suggestions lacks foreign key constraints
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22368: Add tests
Bug-22368-Add-tests.patch (text/plain), 4.28 KB, created by
Martin Renvoize (ashimema)
on 2019-02-19 16:08:07 UTC
(
hide
)
Description:
Bug 22368: Add tests
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-02-19 16:08:07 UTC
Size:
4.28 KB
patch
obsolete
>From 9263b4e7cce3723b33ae35e31212f174a602b228 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Tue, 19 Feb 2019 15:31:20 +0000 >Subject: [PATCH] Bug 22368: Add tests > >--- > t/db_dependent/Koha/Suggestions.t | 91 ++++++++++++++++++++++++++++++- > 1 file changed, 90 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Koha/Suggestions.t b/t/db_dependent/Koha/Suggestions.t >index 2e7146ff99..bc67c4fb5c 100644 >--- a/t/db_dependent/Koha/Suggestions.t >+++ b/t/db_dependent/Koha/Suggestions.t >@@ -19,7 +19,8 @@ > > use Modern::Perl; > >-use Test::More tests => 5; >+use Test::More tests => 6; >+use Test::Exception; > > use Koha::Suggestion; > use Koha::Suggestions; >@@ -78,3 +79,91 @@ is( Koha::Suggestions->search->count, $nb_of_suggestions + 1, 'Delete should hav > > $schema->storage->txn_rollback; > >+subtest 'constraints' => sub { >+ plan tests => 11; >+ $schema->storage->txn_begin; >+ >+ my $patron = $builder->build_object( { class => "Koha::Patrons" } ); >+ my $biblio = $builder->build_sample_biblio(); >+ my $branch = $builder->build_object( { class => "Koha::Libraries" } ); >+ >+ my $suggestion = $builder->build_object( >+ { >+ class => "Koha::Suggestions", >+ value => { >+ suggestedby => $patron->borrowernumber, >+ biblionumber => $biblio->biblionumber, >+ branchcode => $branch->branchcode, >+ managedby => undef, >+ acceptedby => undef, >+ rejectedby => undef, >+ budgetid => undef, >+ } >+ } >+ ); >+ >+ # suggestedby >+ $patron->delete; >+ $suggestion = $suggestion->get_from_storage; >+ is( $suggestion->suggestedby, undef, >+ "The suggestion is not deleted when the related patron is deleted" ); >+ >+ # biblionumber >+ $biblio->delete; >+ $suggestion = $suggestion->get_from_storage; >+ is( $suggestion->biblionumber, undef, >+ "The suggestion is not deleted when the related biblio is deleted" ); >+ >+ # branchcode >+ $branch->delete; >+ $suggestion = $suggestion->get_from_storage; >+ is( $suggestion->branchcode, undef, >+ "The suggestion is not deleted when the related branch is deleted" ); >+ >+ # managerid >+ throws_ok { $suggestion->managedby(1029384756)->store; } >+ 'Koha::Exceptions::Object::FKConstraint', >+ 'store raises an exception on invalid managerid'; >+ my $manager = $builder->build_object( { class => "Koha::Patrons" } ); >+ $suggestion->managedby( $manager->borrowernumber )->store; >+ $manager->delete; >+ $suggestion = $suggestion->get_from_storage; >+ is( $suggestion->managedby, undef, >+ "The suggestion is not deleted when the related manager is deleted" ); >+ >+ # acceptedby >+ throws_ok { $suggestion->acceptedby(1029384756)->store; } >+ 'Koha::Exceptions::Object::FKConstraint', >+ 'store raises an exception on invalid acceptedby id'; >+ my $acceptor = $builder->build_object( { class => "Koha::Patrons" } ); >+ $suggestion->acceptedby( $acceptor->borrowernumber )->store; >+ $acceptor->delete; >+ $suggestion = $suggestion->get_from_storage; >+ is( $suggestion->acceptedby, undef, >+ "The suggestion is not deleted when the related acceptor is deleted" ); >+ >+ # rejectedby >+ throws_ok { $suggestion->rejectedby(1029384756)->store; } >+ 'Koha::Exceptions::Object::FKConstraint', >+ 'store raises an exception on invalid rejectedby id'; >+ my $rejecter = $builder->build_object( { class => "Koha::Patrons" } ); >+ $suggestion->rejectedby( $rejecter->borrowernumber )->store; >+ $rejecter->delete; >+ $suggestion = $suggestion->get_from_storage; >+ is( $suggestion->rejectedby, undef, >+ "The suggestion is not deleted when the related rejecter is deleted" ); >+ >+ # budgetid >+ throws_ok { $suggestion->budgetid(1029384756)->store; } >+ 'Koha::Exceptions::Object::FKConstraint', >+ 'store raises an exception on invalid budgetid'; >+ my $fund = $builder->build_object( { class => "Koha::Acquisition::Funds" } ); >+ $suggestion->budgetid( $fund->id )->store; >+ $fund->delete; >+ $suggestion = $suggestion->get_from_storage; >+ is( $suggestion->budgetid, undef, >+ "The suggestion is not deleted when the related budget is deleted" ); >+ >+ $schema->storage->txn_rollback; >+}; >+ >-- >2.20.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 22368
:
85278
|
85279
|
85282
|
85283
|
85286
|
85287
|
85309
|
85310
|
85377
|
85378
|
85379
|
85388
|
85608
|
85609
|
85610
|
85611
|
85612
|
85723
|
85725
|
85726
|
85727
|
85728
|
85729
|
85739
|
85742
|
85743
|
85744
|
85745
|
85746
|
85747
|
85754