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>.
22 use Test
::More tests
=> 7;
29 my $driver = 'my mock driver';
30 t
::lib
::Mocks
::mock_preference
('SMSSendDriver', $driver);
31 is
( C4
::SMS
->driver(), $driver, 'driver returns the SMSSendDriver correctly' );
33 t
::lib
::Mocks
::mock_preference
('SMSSendUsername', 'username');
34 t
::lib
::Mocks
::mock_preference
('SMSSendPassword', 'pwd');
36 my $send_sms = C4
::SMS
->send_sms();
37 is
( $send_sms, undef, 'send_sms without arguments returns undef' );
39 $send_sms = C4
::SMS
->send_sms({
40 destination
=> 'my destination',
42 is
( $send_sms, undef, 'send_sms without message returns undef' );
44 $send_sms = C4
::SMS
->send_sms({
45 message
=> 'my message',
47 is
( $send_sms, undef, 'send_sms without destination returns undef' );
49 $send_sms = C4
::SMS
->send_sms({
50 destination
=> 'my destination',
51 message
=> 'my message',
54 is
( $send_sms, undef, 'send_sms with an undef driver returns undef' );
56 $send_sms = C4
::SMS
->send_sms({
57 destination
=> '+33123456789',
58 message
=> 'my message',
61 is
( $send_sms, 1, 'send_sms returns 1' );