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>.
20 use Test
::More tests
=> 18;
22 use t
::lib
::TestBuilder
;
28 use_ok
('C4::Reports::Guided');
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
|);
46 my $count = scalar @
{ get_saved_reports
() };
47 is
( $count, 0, "There is no report" );
51 my $id = $builder->build({ source
=> 'Borrower' })->{ borrowernumber
};
52 push @report_ids, save_report
({
53 borrowernumber
=> $id,
58 subgroup
=> "subgroup$id",
61 cache_expiry
=> "null",
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" );
76 is
(delete_report
(),undef, "Without id delete_report returns undef");
78 is
( delete_report
( $report_ids[0] ), 1, "report 1 is deleted" );
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" );
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');
95 'SELECT value FROM systempreferences WHERE variable = ?',
100 $results = $sth->fetchall_arrayref;
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;
110 warning_like
{ ($sth, $errors) = execute_query
(
111 'SELECT surname FRM borrowers', # error in the query is intentional
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;