Bug 34847: Fix t/db_dependent/Search.t
[koha.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;
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 if ( $@ ) {
34     plan skip_all => "Selenium::Remote::Driver is needed for selenium tests.";
35 } else {
36     plan tests => 1;
37 }
38
39 my $s = t::lib::Selenium->new;
40
41 my $driver = $s->driver;
42 my $opac_base_url = $s->opac_base_url;
43 my $builder = t::lib::TestBuilder->new;
44
45 my $PatronSelfRegistration_value = C4::Context->preference('PatronSelfRegistration');
46 C4::Context->set_preference('PatronSelfRegistration', '1');
47
48 our @cleanup;
49
50 subtest 'Set flags' => sub {
51     plan tests => 2;
52
53     $driver->get($opac_base_url . 'opac-memberentry.pl');
54     like( $driver->get_title(), qr(Register a new account), );
55
56     $driver->find_element('//*[@id="borrower_surname"]')->send_keys("a surname");
57     $driver->find_element('//*[@id="borrower_firstname"]')->send_keys("a firstname");
58     $driver->find_element('//*[@id="borrower_initials"]')->send_keys("1");
59     $driver->execute_script(q{document.querySelector("#borrower_initials").setAttribute("name", "borrower_flags");});
60     my $captcha = $driver->find_element('//*[@id="captcha"]/following-sibling::span/strong')->get_text();
61     $driver->find_element('//*[@id="captcha"]')->send_keys($captcha);
62     $s->submit_form;
63
64     my $patron = Koha::Patrons->search({ surname => "a surname" })->next;
65     is( $patron->flags, undef, 'flags must be undef even if user tried to pass it' );
66     push @cleanup, $patron;
67 };
68
69
70 $driver->quit();
71
72 END {
73     C4::Context->set_preference('PatronSelfRegistration', $PatronSelfRegistration_value);
74     $_->delete for @cleanup;
75 };