Bug 19181: Do not screenshot
[koha.git] / t / db_dependent / selenium / authentication.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright (C) 2017  Catalyst IT
6 # Copyright 2018 Koha Development team
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 #This selenium test is to test authentication, by performing the following: create a category and patron (same as basic_workflow.t). Then the superlibrarian logs out and the created patron must log into the staff intranet and OPAC
22
23 #Note: If you are testing this on kohadevbox with selenium installed in kohadevbox then you need to set the staffClientBaseURL to localhost:8080 and the OPACBaseURL to localhost:80
24
25 use Modern::Perl;
26 use Test::More tests => 2;
27
28 use C4::Context;
29 use Koha::AuthUtils;
30 use t::lib::Selenium;
31 use t::lib::TestBuilder;
32
33 my @data_to_cleanup;
34
35 SKIP: {
36     eval { require Selenium::Remote::Driver; };
37     skip "Selenium::Remote::Driver is needed for selenium tests.", 2 if $@;
38
39     my $builder  = t::lib::TestBuilder->new;
40     my $s        = t::lib::Selenium->new;
41     my $driver   = $s->driver;
42
43     subtest 'Staff interface authentication' => sub {
44         plan tests => 5;
45         my $mainpage = $s->base_url . q|mainpage.pl|;
46         $driver->get($mainpage);
47         like( $driver->get_title, qr(Log in to Koha), 'Hitting the main page should redirect to the login form');
48
49         my $password = Koha::AuthUtils::generate_password();
50         my $digest = Koha::AuthUtils::hash_password( $password );
51         my $patron = $builder->build_object({ class => 'Koha::Patrons', value => { flags => 0 }});
52         $patron->update_password( $patron->userid, $digest );
53
54         # Patron does not have permission to access staff interface
55         $s->auth( $patron->userid, $password );
56         like( $driver->get_title, qr(Access denied), 'Patron without permission should be redirected to the login form' );
57
58         $driver->get($mainpage . q|?logout.x=1|);
59         $patron->flags(4)->store; # catalogue permission
60         $s->auth( $patron->userid, $password );
61         like( $driver->get_title, qr(Koha staff client), 'Patron with flags catalogue should be able to login' );
62
63         $driver->get($mainpage . q|?logout.x=1|);
64         like( $driver->get_title(), qr(Log in to Koha), 'If logout is requested, login form should be displayed' );
65
66         $patron->flags(1)->store; # superlibrarian permission
67         $s->auth( $patron->userid, $password );
68         like( $driver->get_title, qr(Koha staff client), 'Patron with flags superlibrarian should be able to login' );
69     };
70
71     subtest 'OPAC interface authentication' => sub {
72         plan tests => 6;
73
74         my $mainpage = $s->opac_base_url . q|opac-main.pl|;
75
76         $driver->get($mainpage . q|?logout.x=1|); # Disconnect first! We are logged in if staff and opac interfaces are separated by ports
77
78         $driver->get($mainpage);
79         like( $driver->get_title, qr(Koha online catalog), 'Hitting the main page should not redirect to the login form');
80
81         my $password = Koha::AuthUtils::generate_password();
82         my $digest = Koha::AuthUtils::hash_password( $password );
83         my $patron = $builder->build_object({ class => 'Koha::Patrons', value => { flags => 0 }});
84         $patron->update_password( $patron->userid, $digest );
85
86         # Using the modal
87         $driver->find_element('//a[@class="login-link loginModal-trigger"]')->click;
88         $s->fill_form( { muserid => $patron->userid, mpassword => $password } );
89         $driver->find_element('//div[@id="loginModal"]//input[@type="submit"]')->click;
90         like( $driver->get_title, qr(Koha online catalog), 'Patron without permission should be able to login to the OPAC using the modal' );
91         $driver->find_element('//div[@id="userdetails"]');
92         like( $driver->get_title, qr(Your library home), 'Patron without permissions should be able to login to the OPAC using the modal');
93
94         $driver->find_element('//a[@id="logout"]')->click;
95         $driver->find_element('//div[@id="login"]'); # logged out
96
97         # Using the form on the right
98         $s->fill_form( { userid => $patron->userid, password => $password } );
99         $s->submit_form;
100         $driver->find_element('//div[@id="userdetails"]');
101         like( $driver->get_title, qr(Your library home), 'Patron without permissions should be able to login to the OPAC using the form on the right');
102
103         $driver->find_element('//a[@id="logout"]')->click;
104         $driver->find_element('//div[@id="login"]'); # logged out
105
106
107         $patron->flags(4)->store; # catalogue permission
108         $s->fill_form( { userid => $patron->userid, password => $password } );
109         $s->submit_form;
110         $driver->find_element('//div[@id="userdetails"]');
111         like( $driver->get_title, qr(Your library home), 'Patron with catalogue permission should be able to login to the OPAC');
112
113         $driver->find_element('//a[@id="logout"]')->click;
114         $driver->find_element('//div[@id="login"]'); # logged out
115
116         $patron->flags(1)->store; # superlibrarian permission
117         $s->fill_form( { userid => $patron->userid, password => $password } );
118         $s->submit_form;
119         $driver->find_element('//div[@id="userdetails"]');
120         like( $driver->get_title, qr(Your library home), 'Patron with superlibrarian permission should be able to login to the OPAC');
121
122         $driver->find_element('//a[@id="logout"]')->click;
123         $driver->find_element('//div[@id="login"]'); # logged out
124
125         push @data_to_cleanup, $patron, $patron->category, $patron->library;
126     };
127
128     $driver->quit();
129 };
130
131 END {
132     $_->delete for @data_to_cleanup;
133 };