Bugzilla – Attachment 39876 Details for
Bug 14334
DBI fighting DBIx over Autocommit in tests
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14334: t/db_dependent/Auth_with_ldap.t AutoCommit fix
Bug-14334-tdbdependentAuthwithldapt-AutoCommit-fix.patch (text/plain), 1.22 KB, created by
Mark Tompsett
on 2015-06-04 21:02:04 UTC
(
hide
)
Description:
Bug 14334: t/db_dependent/Auth_with_ldap.t AutoCommit fix
Filename:
MIME Type:
Creator:
Mark Tompsett
Created:
2015-06-04 21:02:04 UTC
Size:
1.22 KB
patch
obsolete
>From e69461ddd8958f1cb6eac3cefb0dbf3cd355205d Mon Sep 17 00:00:00 2001 >From: Mark Tompsett <mtompset@hotmail.com> >Date: Thu, 4 Jun 2015 17:00:31 -0400 >Subject: [PATCH] Bug 14334: t/db_dependent/Auth_with_ldap.t AutoCommit fix > >There is no easy way to trigger an obvious problem. > >TEST PLAN >--------- >1) apply patch >2) git diff origin/master > -- Are the additions/subtractions similar to > http://paste.lisp.org/display/149194? >3) run koha qa test tools >--- > t/db_dependent/Auth_with_ldap.t | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > >diff --git a/t/db_dependent/Auth_with_ldap.t b/t/db_dependent/Auth_with_ldap.t >index 4982248..52525ba 100755 >--- a/t/db_dependent/Auth_with_ldap.t >+++ b/t/db_dependent/Auth_with_ldap.t >@@ -23,10 +23,13 @@ use Test::MockObject; > use Test::Warn; > > use C4::Context; >+use Koha::Database; > > my $dbh = C4::Context->dbh; > # Start transaction >-$dbh->{ AutoCommit } = 0; >+my $database = Koha::Database->new(); >+my $schema = $database->schema(); >+$schema->storage->txn_begin(); > $dbh->{ RaiseError } = 1; > > # Variables controlling LDAP server config >@@ -374,6 +377,6 @@ sub reload_ldap_module { > C4::Auth_with_ldap->import; > } > >-$dbh->rollback; >+$schema->storage->txn_rollback(); > > 1; >-- >2.1.4
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 14334
:
39871
|
39872
|
39873
|
39874
|
39875
|
39876
|
39877
|
39879
|
39880
|
39881
|
39882
|
39883
|
39884
|
39885
|
40080
|
40086
|
40184
|
82989
|
83129
|
83201