052b7eaa2981ddd963b85a0c1aabfabba7e456b7
[koha-equinox.git] / t / db_dependent / Plugins.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, see <http://www.gnu.org/licenses>.
16
17 use Modern::Perl;
18
19 use Archive::Extract;
20 use CGI;
21 use Cwd qw(abs_path);
22 use File::Basename;
23 use File::Spec;
24 use File::Temp qw( tempdir tempfile );
25 use FindBin qw($Bin);
26 use Module::Load::Conditional qw(can_load);
27 use Test::MockModule;
28 use Test::More tests => 51;
29
30 use C4::Context;
31 use Koha::Database;
32 use Koha::Plugins::Methods;
33
34 use t::lib::Mocks;
35
36 BEGIN {
37     # Mock pluginsdir before loading Plugins module
38     my $path = dirname(__FILE__) . '/../lib';
39     t::lib::Mocks::mock_config( 'pluginsdir', $path );
40
41     use_ok('Koha::Plugins');
42     use_ok('Koha::Plugins::Handler');
43     use_ok('Koha::Plugins::Base');
44     use_ok('Koha::Plugin::Test');
45 }
46
47 my $schema = Koha::Database->new->schema;
48
49 subtest 'GetPlugins() tests' => sub {
50
51     plan tests => 2;
52
53     $schema->storage->txn_begin;
54     # Temporarily remove any installed plugins data
55     Koha::Plugins::Methods->delete;
56
57     my $plugins = Koha::Plugins->new({ enable_plugins => 1 });
58     $plugins->InstallPlugins;
59
60     my @plugins = $plugins->GetPlugins({ method => 'report', all => 1 });
61
62     my @names = map { $_->get_metadata()->{'name'} } @plugins;
63     is( scalar grep( /^Test Plugin$/, @names), 1, "Koha::Plugins::GetPlugins functions correctly" );
64
65     @plugins = $plugins->GetPlugins({ metadata => { my_example_tag  => 'find_me' }, all => 1 });
66     @names = map { $_->get_metadata()->{'name'} } @plugins;
67     is( scalar @names, 2, "Only two plugins found via a metadata tag" );
68
69     $schema->storage->txn_rollback;
70 };
71
72 subtest 'Version upgrade tests' => sub {
73
74     plan tests => 1;
75
76     $schema->storage->txn_begin;
77
78     my $plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } );
79
80     # make sure there's no version on the DB
81     $schema->resultset('PluginData')
82         ->search( { plugin_class => $plugin->{class}, plugin_key => '__INSTALLED_VERSION__' } )
83         ->delete;
84
85     $plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } );
86     my $version = $plugin->retrieve_data('__INSTALLED_VERSION__');
87
88     is( $version, $plugin->get_metadata->{version}, 'Version has been populated correctly' );
89
90     $schema->storage->txn_rollback;
91 };
92
93 subtest 'is_enabled() tests' => sub {
94
95     plan tests => 3;
96     $schema->storage->txn_begin;
97
98     # Make sure there's no previous installs or leftovers on DB
99     Koha::Plugins::Methods->delete;
100     $schema->resultset('PluginData')->delete;
101
102     my $plugin = Koha::Plugin::Test->new({ enable_plugins => 1, cgi => CGI->new });
103     ok( $plugin->is_enabled, 'Plugins enabled by default' );
104
105     # disable
106     $plugin->disable;
107     ok( !$plugin->is_enabled, 'Calling ->disable disables the plugin' );
108
109     # enable
110     $plugin->enable;
111     ok( $plugin->is_enabled, 'Calling ->enable enabled the plugin' );
112
113     $schema->storage->txn_rollback;
114 };
115
116 $schema->storage->txn_begin;
117 Koha::Plugins::Methods->delete;
118
119 Koha::Plugins->new( { enable_plugins => 1 } )->InstallPlugins();
120
121 ok( Koha::Plugins::Methods->search( { plugin_class => 'Koha::Plugin::Test' } )->count, 'Test plugin methods added to database' );
122 is( Koha::Plugins::Methods->search({ plugin_class => 'Koha::Plugin::Test', plugin_method => '_private_sub' })->count, 0, 'Private methods are skipped' );
123
124 my $mock_plugin = Test::MockModule->new( 'Koha::Plugin::Test' );
125 $mock_plugin->mock( 'test_template', sub {
126     my ( $self, $file ) = @_;
127     my $template = $self->get_template({ file => $file });
128     $template->param( filename => $file );
129     return $template->output;
130 });
131
132 ok( can_load( modules => { "Koha::Plugin::Test" => undef } ), 'Test can_load' );
133
134 my $plugin = Koha::Plugin::Test->new({ enable_plugins => 1, cgi => CGI->new });
135
136 isa_ok( $plugin, "Koha::Plugin::Test", 'Test plugin class' );
137 isa_ok( $plugin, "Koha::Plugins::Base", 'Test plugin parent class' );
138
139 ok( $plugin->can('report'), 'Test plugin can report' );
140 ok( $plugin->can('tool'), 'Test plugin can tool' );
141 ok( $plugin->can('to_marc'), 'Test plugin can to_marc' );
142 ok( $plugin->can('intranet_catalog_biblio_enhancements'), 'Test plugin can intranet_catalog_biblio_enhancements');
143 ok( $plugin->can('intranet_catalog_biblio_enhancements_toolbar_button'), 'Test plugin can intranet_catalog_biblio_enhancements_toolbar_button' );
144 ok( $plugin->can('opac_online_payment'), 'Test plugin can opac_online_payment' );
145 ok( $plugin->can('opac_online_payment_begin'), 'Test plugin can opac_online_payment_begin' );
146 ok( $plugin->can('opac_online_payment_end'), 'Test plugin can opac_online_payment_end' );
147 ok( $plugin->can('opac_head'), 'Test plugin can opac_head' );
148 ok( $plugin->can('opac_js'), 'Test plugin can opac_js' );
149 ok( $plugin->can('intranet_head'), 'Test plugin can intranet_head' );
150 ok( $plugin->can('intranet_js'), 'Test plugin can intranet_js' );
151 ok( $plugin->can('configure'), 'Test plugin can configure' );
152 ok( $plugin->can('install'), 'Test plugin can install' );
153 ok( $plugin->can('upgrade'), 'Test plugin can upgrade' );
154 ok( $plugin->can('uninstall'), 'Test plugin can install' );
155
156 is( Koha::Plugins::Handler->run({ class => "Koha::Plugin::Test", method => 'report', enable_plugins => 1 }), "Koha::Plugin::Test::report", 'Test run plugin report method' );
157
158 my $metadata = $plugin->get_metadata();
159 is( $metadata->{'name'}, 'Test Plugin', 'Test $plugin->get_metadata()' );
160
161 is( $plugin->get_qualified_table_name('mytable'), 'koha_plugin_test_mytable', 'Test $plugin->get_qualified_table_name()' );
162 is( $plugin->get_plugin_http_path(), '/plugin/Koha/Plugin/Test', 'Test $plugin->get_plugin_http_path()' );
163
164 # test absolute path change in get_template with Koha::Plugin::Test
165 # using the mock set before
166 # we also add tmpdir as an approved template dir
167 t::lib::Mocks::mock_config( 'pluginsdir', [ C4::Context->temporary_directory ] );
168 my ( $fh, $fn ) = tempfile( SUFFIX => '.tt', UNLINK => 1, DIR => C4::Context->temporary_directory );
169 print $fh 'I am [% filename %]';
170 close $fh;
171 my $classname = ref($plugin);
172 like( $plugin->test_template($fn), qr/^I am $fn/, 'Template works' );
173
174 my $result = $plugin->enable;
175 is( ref($result), 'Koha::Plugin::Test' );
176
177 # testing GetPlugins
178 my @plugins = Koha::Plugins->new({ enable_plugins => 1 })->GetPlugins({
179     method => 'report'
180 });
181
182 my @names = map { $_->get_metadata()->{'name'} } @plugins;
183 is( scalar grep( /^Test Plugin$/, @names), 1, "Koha::Plugins::GetPlugins functions correctly" );
184 @plugins =  Koha::Plugins->new({ enable_plugins => 1 })->GetPlugins({
185     metadata => { my_example_tag  => 'find_me' },
186 });
187
188 @names = map { $_->get_metadata()->{'name'} } @plugins;
189 is( scalar grep( /^Test Plugin$/, @names), 1, "GetPlugins also found Test Plugin via a metadata tag" );
190
191 $result = $plugin->disable;
192 is( ref($result), 'Koha::Plugin::Test' );
193
194 @plugins = Koha::Plugins->new({ enable_plugins => 1 })->GetPlugins();
195 @names = map { $_->get_metadata()->{'name'} } @plugins;
196 is( scalar grep( /^Test Plugin$/, @names), 0, "GetPlugins does not found disabled Test Plugin" );
197
198 @plugins = Koha::Plugins->new({ enable_plugins => 1 })->GetPlugins({ all => 1 });
199 @names = map { $_->get_metadata()->{'name'} } @plugins;
200 is( scalar grep( /^Test Plugin$/, @names), 1, "With all param, GetPlugins found disabled Test Plugin" );
201
202 for my $pass ( 1 .. 2 ) {
203     my $plugins_dir;
204     my $module_name = 'Koha::Plugin::Com::ByWaterSolutions::KitchenSink';
205     my $pm_path = 'Koha/Plugin/Com/ByWaterSolutions/KitchenSink.pm';
206     if ( $pass == 1 ) {
207         my $plugins_dir1 = tempdir( CLEANUP => 1 );
208         t::lib::Mocks::mock_config('pluginsdir', $plugins_dir1);
209         $plugins_dir = $plugins_dir1;
210         push @INC, $plugins_dir1;
211     } else {
212         my $plugins_dir1 = tempdir( CLEANUP => 1 );
213         my $plugins_dir2 = tempdir( CLEANUP => 1 );
214         t::lib::Mocks::mock_config('pluginsdir', [ $plugins_dir2, $plugins_dir1 ]);
215         $plugins_dir = $plugins_dir2;
216         pop @INC;
217         push @INC, $plugins_dir2;
218         push @INC, $plugins_dir1;
219     }
220     my $full_pm_path = $plugins_dir . '/' . $pm_path;
221
222     my $ae = Archive::Extract->new( archive => "$Bin/KitchenSinkPlugin.kpz", type => 'zip' );
223     unless ( $ae->extract( to => $plugins_dir ) ) {
224         warn "ERROR: " . $ae->error;
225     }
226     use_ok('Koha::Plugin::Com::ByWaterSolutions::KitchenSink');
227     $plugin = Koha::Plugin::Com::ByWaterSolutions::KitchenSink->new({ enable_plugins => 1});
228     my $table = $plugin->get_qualified_table_name( 'mytable' );
229
230     ok( -f $plugins_dir . "/Koha/Plugin/Com/ByWaterSolutions/KitchenSink.pm", "KitchenSink plugin installed successfully" );
231     $INC{$pm_path} = $full_pm_path; # FIXME I do not really know why, but if this is moved before the $plugin constructor, it will fail with Can't locate object method "new" via package "Koha::Plugin::Com::ByWaterSolutions::KitchenSink"
232     Koha::Plugins->new( { enable_plugins => 1 } )->InstallPlugins();
233     Koha::Plugins::Handler->delete({ class => "Koha::Plugin::Com::ByWaterSolutions::KitchenSink", enable_plugins => 1 });
234     my $sth = C4::Context->dbh->table_info( undef, undef, $table, 'TABLE' );
235     my $info = $sth->fetchall_arrayref;
236     is( @$info, 0, "Table $table does no longer exist" );
237     ok( !( -f $full_pm_path ), "Koha::Plugins::Handler::delete works correctly." );
238 }
239
240 subtest 'output and output_html tests' => sub {
241
242     plan tests => 6;
243
244     # Trick stdout to be able to test
245     local *STDOUT;
246     my $stdout;
247     open STDOUT, '>', \$stdout;
248
249     my $plugin = Koha::Plugin::Test->new({ enable_plugins => 1, cgi => CGI->new });
250     $plugin->test_output;
251
252     like($stdout, qr/Cache-control: no-cache/, 'force_no_caching sets Cache-control as desired');
253     like($stdout, qr{Content-Type: application/json; charset=UTF-8}, 'Correct content-type');
254     like($stdout, qr{¡Hola output!}, 'Correct data');
255
256     # reset the stdout buffer
257     $stdout = '';
258     close STDOUT;
259     open STDOUT, '>', \$stdout;
260
261     $plugin->test_output_html;
262
263     like($stdout, qr/Cache-control: no-cache/, 'force_no_caching sets Cache-control as desired');
264     like($stdout, qr{Content-Type: text/html; charset=UTF-8}, 'Correct content-type');
265     like($stdout, qr{¡Hola output_html!}, 'Correct data');
266 };
267
268 subtest 'Test _version_compare' => sub {
269
270     plan tests => 12;
271
272     t::lib::Mocks::mock_config( 'enable_plugins', 1 );
273
274     is( Koha::Plugins::Base::_version_compare( '1.1.1',    '2.2.2' ), -1, "1.1.1 is less then 2.2.2" );
275     is( Koha::Plugins::Base::_version_compare( '2.2.2',    '1.1.1' ),  1, "1.1.1 is greater then 2.2.2" );
276     is( Koha::Plugins::Base::_version_compare( '1.1.1',    '1.1.1' ),  0, "1.1.1 is equal to 1.1.1" );
277     is( Koha::Plugins::Base::_version_compare( '1.01.001', '1.1.1' ),  0, "1.01.001 is equal to 1.1.1" );
278     is( Koha::Plugins::Base::_version_compare( '1',        '1.0.0' ),  0, "1 is equal to 1.0.0" );
279     is( Koha::Plugins::Base::_version_compare( '1.0',      '1.0.0' ),  0, "1.0 is equal to 1.0.0" );
280
281     # OO tests
282     my $plugin = Koha::Plugin::Test->new;
283     is( $plugin->_version_compare( '1.1.1',    '2.2.2' ), -1, "1.1.1 is less then 2.2.2" );
284     is( $plugin->_version_compare( '2.2.2',    '1.1.1' ),  1, "1.1.1 is greater then 2.2.2" );
285     is( $plugin->_version_compare( '1.1.1',    '1.1.1' ),  0, "1.1.1 is equal to 1.1.1" );
286     is( $plugin->_version_compare( '1.01.001', '1.1.1' ),  0, "1.01.001 is equal to 1.1.1" );
287     is( $plugin->_version_compare( '1',        '1.0.0' ),  0, "1 is equal to 1.0.0" );
288     is( $plugin->_version_compare( '1.0',      '1.0.0' ),  0, "1.0 is equal to 1.0.0" );
289 };
290
291 subtest 'bundle_path() tests' => sub {
292
293     plan tests => 1;
294
295     t::lib::Mocks::mock_config( 'enable_plugins', 1 );
296
297     my @current_dir = File::Spec->splitdir(abs_path(__FILE__));
298     # remote Plugins.t
299     pop @current_dir;
300     # remove db_dependent
301     pop @current_dir;
302
303     my $plugin = Koha::Plugin::Test->new;
304
305     is( $plugin->bundle_path, File::Spec->catdir(@current_dir) . '/lib/Koha/Plugin/Test' );
306
307 };
308
309 subtest 'new() tests' => sub {
310
311     plan tests => 2;
312
313     t::lib::Mocks::mock_config( 'pluginsdir', [ C4::Context->temporary_directory ] );
314     t::lib::Mocks::mock_config( 'enable_plugins', 0 );
315
316     my $result = Koha::Plugins->new();
317     is( $result, undef, 'calling new() on disabled plugins returns undef' );
318
319     $result = Koha::Plugins->new({ enable_plugins => 1 });
320     is( ref($result), 'Koha::Plugins', 'calling new with enable_plugins makes it override the config' );
321 };
322
323 $schema->storage->txn_rollback;
324 Koha::Plugins::Methods->delete;