Bug 18226 - Remove "use Test::DBIx::Class" instantiations' dangerous code duplication
authorOlli-Antti Kivilahti <olli-antti.kivilahti@jns.fi>
Tue, 7 Mar 2017 16:56:29 +0000 (18:56 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 5 Jun 2017 20:52:48 +0000 (17:52 -0300)
Is 'instantiations' even a word?

Use a Test::DBIx::Class defaults instead.

Save your keyboard and prevent horrible bugs from emerging from rampant code duplication.

This change doesn't seem to have any impact on the speed of executing those tests.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

13 files changed:
t/Auth_with_shibboleth.t
t/Biblio.t
t/Calendar.t
t/Images.t
t/Koha.t
t/Letters.t
t/Matcher.t
t/Members_AttributeTypes.t
t/NorwegianPatronDB.t
t/Prices.t
t/SocialData.t
t/XSLT.t
t/db_dependent/Sitemapper.t

index 3b35709..ab03248 100644 (file)
@@ -34,7 +34,7 @@ BEGIN {
     }
 }
 
-use Test::DBIx::Class { schema_class => 'Koha::Schema', connect_info => ['dbi:SQLite:dbname=:memory:','',''] };
+use Test::DBIx::Class;
 
 # Mock Variables
 my $matchpoint = 'userid';
index 1cec33b..1bf7895 100755 (executable)
@@ -33,12 +33,8 @@ BEGIN {
 
 use_ok('C4::Biblio');
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Biblio' ;
+#use Test::DBIx::Class {}, 'Biblio';
+use Test::DBIx::Class; #No difference between these two invocations in time taken to execute tests.
 
 sub fixtures {
     my ( $data ) = @_;
index 3082271..076eb8d 100755 (executable)
@@ -37,12 +37,7 @@ BEGIN {
 
 use_ok('Koha::Calendar');
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Biblio' ;
+use Test::DBIx::Class;
 
 sub fixtures {
     my ( $data ) = @_;
index 0ee5ce6..02bcd82 100644 (file)
@@ -32,12 +32,7 @@ BEGIN {
 
 use_ok('C4::Images');
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Biblioimage' ;
+use Test::DBIx::Class;
 
 # Make the code in the module use our mocked Koha::Schema/Koha::Database
 my $db = Test::MockModule->new('Koha::Database');
index e617146..2e11ab7 100755 (executable)
--- a/t/Koha.t
+++ b/t/Koha.t
@@ -33,12 +33,7 @@ BEGIN {
 
 use_ok('C4::Koha');
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Branch' ;
+use Test::DBIx::Class;
 
 sub fixtures {
     my ( $libraries ) = @_;
index 76c5a87..fb1158b 100755 (executable)
@@ -30,12 +30,7 @@ BEGIN {
     }
 }
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Letter' ;
+use Test::DBIx::Class;
 use t::lib::Mocks;
 
 fixtures_ok [
index 3d7f6e9..30d1b90 100755 (executable)
@@ -35,12 +35,7 @@ BEGIN {
 
 use_ok('C4::Matcher');
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'MarcMatcher' ;
+use Test::DBIx::Class;
 
 fixtures_ok [
     MarcMatcher => [
index 4721fad..42b04d5 100755 (executable)
@@ -32,12 +32,7 @@ BEGIN {
 
 use_ok('C4::Members::AttributeTypes');
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'BorrowerAttributeType', 'Category' ;
+use Test::DBIx::Class;
 
 fixtures_ok [
     Category => [
index 1f0808c..ec63020 100644 (file)
@@ -60,12 +60,7 @@ BEGIN {
     }
 }
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Borrower', 'BorrowerSync';
+use Test::DBIx::Class {}, 'Borrower', 'BorrowerSync'; #Also loads those modules.
 
 # Make the code in the module use our mocked Koha::Schema/Koha::Database
 my $db = Test::MockModule->new('Koha::Database');
index f89c7f6..c65f203 100644 (file)
@@ -20,12 +20,7 @@ use_ok('Koha::Number::Price');
 
 t::lib::Mocks::mock_preference( 'gist', '0.02|0.05|0.196' );
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Currency' ;
+use Test::DBIx::Class;
 
 my $db = Test::MockModule->new('Koha::Database');
 $db->mock( _new_schema => sub { return Schema(); } );
index 8b6a93b..eec1e5c 100644 (file)
@@ -34,12 +34,7 @@ BEGIN {
     use_ok('C4::SocialData');
 }
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'SocialData', 'Biblioitem' ;
+use Test::DBIx::Class;
 
 fixtures_ok [
     Biblioitem => [
index 7136375..aefa4df 100755 (executable)
--- a/t/XSLT.t
+++ b/t/XSLT.t
@@ -27,7 +27,7 @@ use Module::Load::Conditional qw/check_install/;
 
 BEGIN {
     if ( check_install( module => 'Test::DBIx::Class' ) ) {
-        plan tests => 10;
+        plan tests => 9;
     } else {
         plan skip_all => "Need Test::DBIx::Class"
     }
@@ -35,18 +35,7 @@ BEGIN {
     use_ok('C4::XSLT');
 };
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Branch' ;
-
-fixtures_ok [
-    Branch => [
-    ],
-];
-
+use Test::DBIx::Class;
 
 my $dir = File::Temp->newdir();
 my @themes = ('prog', 'test');
index 848fc3b..4276470 100755 (executable)
@@ -40,12 +40,7 @@ sub slurp {
     return $cont;
 }
 
-use Test::DBIx::Class {
-    schema_class => 'Koha::Schema',
-    connect_info => ['dbi:SQLite:dbname=:memory:','',''],
-    connect_opts => { name_sep => '.', quote_char => '`', },
-    fixture_class => '::Populate',
-}, 'Biblio' ;
+use Test::DBIx::Class;
 
 sub fixtures {
     my ( $data ) = @_;