737dd691c8890871753ceaf0796c94098fa3066c
[koha-ffzg.git] / t / db_dependent / selenium / self_registration.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 use Modern::Perl;
19 use utf8;
20
21 use C4::Context;
22
23 use Test::More tests => 1;
24 use Test::MockModule;
25
26 use C4::Context;
27 use Koha::AuthUtils;
28 use t::lib::Selenium;
29 use t::lib::TestBuilder;
30 use t::lib::Mocks;
31
32 eval { require Selenium::Remote::Driver; };
33 skip "Selenium::Remote::Driver is needed for selenium tests.", 1 if $@;
34
35 my $s = t::lib::Selenium->new;
36
37 my $driver = $s->driver;
38 my $opac_base_url = $s->opac_base_url;
39 my $builder = t::lib::TestBuilder->new;
40
41 my $PatronSelfRegistration_value = C4::Context->preference('PatronSelfRegistration');
42 C4::Context->set_preference('PatronSelfRegistration', '1');
43
44 our @cleanup;
45
46 subtest 'Set flags' => sub {
47     plan tests => 2;
48
49     $driver->get($opac_base_url . 'opac-memberentry.pl');
50     like( $driver->get_title(), qr(Register a new account), );
51
52     $driver->find_element('//*[@id="borrower_surname"]')->send_keys("a surname");
53     $driver->find_element('//*[@id="borrower_firstname"]')->send_keys("a firstname");
54     $driver->find_element('//*[@id="borrower_initials"]')->send_keys("1");
55     $driver->execute_script(q{document.querySelector("#borrower_initials").setAttribute("name", "borrower_flags");});
56     my $captcha = $driver->find_element('//*[@id="captcha"]/following-sibling::span/strong')->get_text();
57     $driver->find_element('//*[@id="captcha"]')->send_keys($captcha);
58     $s->submit_form;
59
60     my $patron = Koha::Patrons->search({ surname => "a surname" })->next;
61     is( $patron->flags, undef, 'flags must be undef even if user tried to pass it' );
62     push @cleanup, $patron;
63 };
64
65
66 $driver->quit();
67
68 END {
69     C4::Context->set_preference('PatronSelfRegistration', $PatronSelfRegistration_value);
70     $_->delete for @cleanup;
71 };