Bug 20669: Add upgrade method to plugins
[koha-equinox.git] / t / db_dependent / Plugins.t
1 #!/usr/bin/perl
2
3 use Modern::Perl;
4
5 use Archive::Extract;
6 use CGI;
7 use File::Basename;
8 use File::Temp qw( tempdir tempfile );
9 use FindBin qw($Bin);
10 use Module::Load::Conditional qw(can_load);
11 use Test::MockModule;
12 use Test::More tests => 37;
13
14 use C4::Context;
15
16 use t::lib::Mocks;
17
18 BEGIN {
19     push( @INC, dirname(__FILE__) . '/../lib' );
20
21     use_ok('Koha::Plugins');
22     use_ok('Koha::Plugins::Handler');
23     use_ok('Koha::Plugins::Base');
24     use_ok('Koha::Plugin::Test');
25 }
26
27 my $mock_plugin = Test::MockModule->new( 'Koha::Plugin::Test' );
28 $mock_plugin->mock( 'test_template', sub {
29     my ( $self, $file ) = @_;
30     my $template = $self->get_template({ file => $file });
31     $template->param( filename => $file );
32     return $template->output;
33 });
34
35 ok( can_load( modules => { "Koha::Plugin::Test" => undef } ), 'Test can_load' );
36
37 my $plugin = Koha::Plugin::Test->new({ enable_plugins => 1, cgi => CGI->new });
38
39 isa_ok( $plugin, "Koha::Plugin::Test", 'Test plugin class' );
40 isa_ok( $plugin, "Koha::Plugins::Base", 'Test plugin parent class' );
41
42 ok( $plugin->can('report'), 'Test plugin can report' );
43 ok( $plugin->can('tool'), 'Test plugin can tool' );
44 ok( $plugin->can('to_marc'), 'Test plugin can to_marc' );
45 ok( $plugin->can('opac_online_payment'), 'Test plugin can opac_online_payment' );
46 ok( $plugin->can('opac_online_payment_begin'), 'Test plugin can opac_online_payment_begin' );
47 ok( $plugin->can('opac_online_payment_end'), 'Test plugin can opac_online_payment_end' );
48 ok( $plugin->can('opac_head'), 'Test plugin can opac_head' );
49 ok( $plugin->can('opac_js'), 'Test plugin can opac_js' );
50 ok( $plugin->can('configure'), 'Test plugin can configure' );
51 ok( $plugin->can('install'), 'Test plugin can install' );
52 ok( $plugin->can('upgrade'), 'Test plugin can upgrade' );
53 ok( $plugin->can('uninstall'), 'Test plugin can install' );
54
55 is( Koha::Plugins::Handler->run({ class => "Koha::Plugin::Test", method => 'report', enable_plugins => 1 }), "Koha::Plugin::Test::report", 'Test run plugin report method' );
56
57 my $metadata = $plugin->get_metadata();
58 is( $metadata->{'name'}, 'Test Plugin', 'Test $plugin->get_metadata()' );
59
60 is( $plugin->get_qualified_table_name('mytable'), 'koha_plugin_test_mytable', 'Test $plugin->get_qualified_table_name()' );
61 is( $plugin->get_plugin_http_path(), '/plugin/Koha/Plugin/Test', 'Test $plugin->get_plugin_http_path()' );
62
63 # test absolute path change in get_template with Koha::Plugin::Test
64 # using the mock set before
65 # we also add tmpdir as an approved template dir
66 t::lib::Mocks::mock_config( 'pluginsdir', [ C4::Context->temporary_directory ] );
67 my ( $fh, $fn ) = tempfile( SUFFIX => '.tt', UNLINK => 1, DIR => C4::Context->temporary_directory );
68 print $fh 'I am [% filename %]';
69 close $fh;
70 my $classname = ref($plugin);
71 like( $plugin->test_template($fn), qr/^I am $fn/, 'Template works' );
72
73 # testing GetPlugins
74 my @plugins = Koha::Plugins->new({ enable_plugins => 1 })->GetPlugins({
75     method => 'report'
76 });
77 my @names = map { $_->get_metadata()->{'name'} } @plugins;
78 is( scalar grep( /^Test Plugin$/, @names), 1, "Koha::Plugins::GetPlugins functions correctly" );
79 @plugins =  Koha::Plugins->new({ enable_plugins => 1 })->GetPlugins({
80     metadata => { my_example_tag  => 'find_me' },
81 });
82 @names = map { $_->get_metadata()->{'name'} } @plugins;
83 is( scalar grep( /^Test Plugin$/, @names), 1, "GetPlugins also found Test Plugin via a metadata tag" );
84 # Test two metadata conditions; one does not exist for Test.pm
85 # Since it is a required key, we should not find the same results
86 my @plugins2 = Koha::Plugins->new({ enable_plugins => 1 })->GetPlugins({
87     metadata => { my_example_tag  => 'find_me', not_there => '1' },
88 });
89 isnt( scalar @plugins2, scalar @plugins, 'GetPlugins with two metadata conditions' );
90
91 for my $pass ( 1 .. 2 ) {
92     my $plugins_dir;
93     my $module_name = 'Koha::Plugin::Com::ByWaterSolutions::KitchenSink';
94     my $pm_path = 'Koha/Plugin/Com/ByWaterSolutions/KitchenSink.pm';
95     if ( $pass == 1 ) {
96         my $plugins_dir1 = tempdir( CLEANUP => 1 );
97         t::lib::Mocks::mock_config('pluginsdir', $plugins_dir1);
98         $plugins_dir = $plugins_dir1;
99         push @INC, $plugins_dir1;
100     } else {
101         my $plugins_dir1 = tempdir( CLEANUP => 1 );
102         my $plugins_dir2 = tempdir( CLEANUP => 1 );
103         t::lib::Mocks::mock_config('pluginsdir', [ $plugins_dir2, $plugins_dir1 ]);
104         $plugins_dir = $plugins_dir2;
105         pop @INC;
106         push @INC, $plugins_dir2;
107         push @INC, $plugins_dir1;
108     }
109     my $full_pm_path = $plugins_dir . '/' . $pm_path;
110
111     my $ae = Archive::Extract->new( archive => "$Bin/KitchenSinkPlugin.kpz", type => 'zip' );
112     unless ( $ae->extract( to => $plugins_dir ) ) {
113         warn "ERROR: " . $ae->error;
114     }
115     use_ok('Koha::Plugin::Com::ByWaterSolutions::KitchenSink');
116     $plugin = Koha::Plugin::Com::ByWaterSolutions::KitchenSink->new({ enable_plugins => 1});
117     my $table = $plugin->get_qualified_table_name( 'mytable' );
118
119     ok( -f $plugins_dir . "/Koha/Plugin/Com/ByWaterSolutions/KitchenSink.pm", "KitchenSink plugin installed successfully" );
120     $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"
121     Koha::Plugins::Handler->delete({ class => "Koha::Plugin::Com::ByWaterSolutions::KitchenSink", enable_plugins => 1 });
122     my $sth = C4::Context->dbh->table_info( undef, undef, $table, 'TABLE' );
123     my $info = $sth->fetchall_arrayref;
124     is( @$info, 0, "Table $table does no longer exist" );
125     ok( !( -f $full_pm_path ), "Koha::Plugins::Handler::delete works correctly." );
126 }
127
128 subtest 'output and output_html tests' => sub {
129
130     plan tests => 6;
131
132     # Trick stdout to be able to test
133     local *STDOUT;
134     my $stdout;
135     open STDOUT, '>', \$stdout;
136
137     my $plugin = Koha::Plugin::Test->new({ enable_plugins => 1, cgi => CGI->new });
138     $plugin->test_output;
139
140     like($stdout, qr/Cache-control: no-cache/, 'force_no_caching sets Cache-control as desired');
141     like($stdout, qr{Content-Type: application/json; charset=UTF-8}, 'Correct content-type');
142     like($stdout, qr{¡Hola output!}, 'Correct data');
143
144     # reset the stdout buffer
145     $stdout = '';
146     close STDOUT;
147     open STDOUT, '>', \$stdout;
148
149     $plugin->test_output_html;
150
151     like($stdout, qr/Cache-control: no-cache/, 'force_no_caching sets Cache-control as desired');
152     like($stdout, qr{Content-Type: text/html; charset=UTF-8}, 'Correct content-type');
153     like($stdout, qr{¡Hola output_html!}, 'Correct data');
154 };
155
156 subtest 'Test _version_compare' => sub {
157
158     plan tests => 6;
159
160     is( Koha::Plugins::Base::_version_compare( '1.1.1',    '2.2.2' ),   -1, "1.1.1 is less then 2.2.2" );
161     is( Koha::Plugins::Base::_version_compare( '2.2.2',    '1.1.1' ),    1, "1.1.1 is greater then 2.2.2" );
162     is( Koha::Plugins::Base::_version_compare( '1.1.1',    '1.1.1' ),    0, "1.1.1 is equal to 1.1.1" );
163     is( Koha::Plugins::Base::_version_compare( '1.01.001', '1.1.1' ),    0, "1.01.001 is equal to 1.1.1" );
164     is( Koha::Plugins::Base::_version_compare( '1',        '1.0.0' ),    0, "1 is equal to 1.0.0" );
165     is( Koha::Plugins::Base::_version_compare( '1.0',      '1.0.0' ),    0, "1.0 is equal to 1.0.0" );
166 };