Bugzilla – Attachment 83734 Details for
Bug 22084
Plugin upgrade method and database plugin version storage will never be triggered for existing installs
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22084: Regression tests
Bug-22084-Regression-tests.patch (text/plain), 1.91 KB, created by
Tomás Cohen Arazi (tcohen)
on 2019-01-09 10:34:55 UTC
(
hide
)
Description:
Bug 22084: Regression tests
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2019-01-09 10:34:55 UTC
Size:
1.91 KB
patch
obsolete
>From ca035facb98bb9093ddd4498704cf7094c68062d Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Wed, 9 Jan 2019 07:33:15 -0300 >Subject: [PATCH] Bug 22084: Regression tests > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > t/db_dependent/Plugins.t | 27 ++++++++++++++++++++++++++- > 1 file changed, 26 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Plugins.t b/t/db_dependent/Plugins.t >index d3447c33c8..7bbd8d9d78 100755 >--- a/t/db_dependent/Plugins.t >+++ b/t/db_dependent/Plugins.t >@@ -9,9 +9,10 @@ use File::Temp qw( tempdir tempfile ); > use FindBin qw($Bin); > use Module::Load::Conditional qw(can_load); > use Test::MockModule; >-use Test::More tests => 41; >+use Test::More tests => 42; > > use C4::Context; >+use Koha::Database; > > use t::lib::Mocks; > >@@ -24,6 +25,8 @@ BEGIN { > use_ok('Koha::Plugin::Test'); > } > >+my $schema = Koha::Database->new->schema; >+ > my $mock_plugin = Test::MockModule->new( 'Koha::Plugin::Test' ); > $mock_plugin->mock( 'test_template', sub { > my ( $self, $file ) = @_; >@@ -157,6 +160,28 @@ subtest 'output and output_html tests' => sub { > like($stdout, qr{¡Hola output_html!}, 'Correct data'); > }; > >+subtest 'Version upgrade tests' => sub { >+ >+ plan tests => 1; >+ >+ $schema->storage->txn_begin; >+ >+ my $plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } ); >+ >+ # make sure there's no version on the DB >+ $schema->resultset('PluginData') >+ ->search( { plugin_class => $plugin->{class}, plugin_key => '__INSTALLED_VERSION__' } ) >+ ->delete; >+ >+ $plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } ); >+ my $version = $plugin->retrieve_data('__INSTALLED_VERSION__'); >+ >+ is( $version, $plugin->get_metadata->{version}, 'Version has been populated correctly' ); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+ > subtest 'Test _version_compare' => sub { > > plan tests => 6; >-- >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 22084
:
83726
|
83734
|
83735
|
83740
|
83741
|
85384
|
85385