Bug 16224: Fix t/db_dependent/Reports_Guided.t
[koha.git] / t / db_dependent / Reports_Guided.t
blob163a67d16f0e0b4c7049d51278f86a92228b65aa
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Test::More tests => 18;
21 use Test::Warn;
22 use t::lib::TestBuilder;
24 use C4::Context;
25 use Koha::Database;
27 BEGIN {
28 use_ok('C4::Reports::Guided');
30 can_ok(
31 'C4::Reports::Guided',
32 qw(save_report delete_report execute_query)
35 my $schema = Koha::Database->new->schema;
36 $schema->storage->txn_begin;
37 my $builder = t::lib::TestBuilder->new;
39 my $dbh = C4::Context->dbh;
40 $dbh->do(q|DELETE FROM saved_sql|);
41 $dbh->do(q|DELETE FROM saved_reports|);
43 #Start tests
45 #Test save_report
46 my $count = scalar @{ get_saved_reports() };
47 is( $count, 0, "There is no report" );
49 my @report_ids;
50 foreach ( 1..3 ) {
51 my $id = $builder->build({ source => 'Borrower' })->{ borrowernumber };
52 push @report_ids, save_report({
53 borrowernumber => $id,
54 sql => "SQL$id",
55 name => "Name$id",
56 area => "area$id",
57 group => "group$id",
58 subgroup => "subgroup$id",
59 type => "type$id",
60 notes => "note$id",
61 cache_expiry => "null",
62 public => "null"
63 });
64 $count++;
66 like( $report_ids[0], '/^\d+$/', "Save_report returns an id for first" );
67 like( $report_ids[1], '/^\d+$/', "Save_report returns an id for second" );
68 like( $report_ids[2], '/^\d+$/', "Save_report returns an id for third" );
70 is( scalar @{ get_saved_reports() },
71 $count, "$count reports have been added" );
73 ok( 0 < scalar @{ get_saved_reports( $report_ids[0] ) }, "filter takes report id" );
75 #Test delete_report
76 is (delete_report(),undef, "Without id delete_report returns undef");
78 is( delete_report( $report_ids[0] ), 1, "report 1 is deleted" );
79 $count--;
81 is( scalar @{ get_saved_reports() }, $count, "Report1 has been deleted" );
83 is( delete_report( $report_ids[1], $report_ids[2] ), 2, "report 2 and 3 are deleted" );
84 $count -= 2;
86 is( scalar @{ get_saved_reports() },
87 $count, "Report2 and report3 have been deleted" );
89 my $sth = execute_query('SELECT COUNT(*) FROM systempreferences', 0, 10);
90 my $results = $sth->fetchall_arrayref;
91 is(scalar @$results, 1, 'running a query returned a result');
93 my $version = C4::Context->preference('Version');
94 $sth = execute_query(
95 'SELECT value FROM systempreferences WHERE variable = ?',
97 10,
98 [ 'Version' ],
100 $results = $sth->fetchall_arrayref;
101 is_deeply(
102 $results,
103 [ [ $version ] ],
104 'running a query with a parameter returned the expected result'
107 # for next test, we want to let execute_query capture any SQL errors
108 $dbh->{RaiseError} = 0;
109 my $errors;
110 warning_like { ($sth, $errors) = execute_query(
111 'SELECT surname FRM borrowers', # error in the query is intentional
112 0, 10 ) }
113 qr/^DBD::mysql::st execute failed: You have an error in your SQL syntax;/,
114 "Wrong SQL syntax raises warning";
116 defined($errors) && exists($errors->{queryerr}),
117 'attempting to run a report with an SQL syntax error returns error message (Bug 12214)'
120 is_deeply( get_report_areas(), [ 'CIRC', 'CAT', 'PAT', 'ACQ', 'ACC', 'SER' ],
121 "get_report_areas returns the correct array of report areas");
123 $schema->storage->txn_rollback;