Bug 28929: Add selenium tests
Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Bug 28929: (follow-up) Add exec flag to tests Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
6def280427
commit
93350d14b2
1 changed files with 71 additions and 0 deletions
71
t/db_dependent/selenium/self_registration.t
Executable file
71
t/db_dependent/selenium/self_registration.t
Executable file
|
@ -0,0 +1,71 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
# This file is part of Koha.
|
||||
#
|
||||
# Koha is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Koha is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
||||
|
||||
use Modern::Perl;
|
||||
use utf8;
|
||||
|
||||
use C4::Context;
|
||||
|
||||
use Test::More tests => 1;
|
||||
use Test::MockModule;
|
||||
|
||||
use C4::Context;
|
||||
use Koha::AuthUtils;
|
||||
use t::lib::Selenium;
|
||||
use t::lib::TestBuilder;
|
||||
use t::lib::Mocks;
|
||||
|
||||
eval { require Selenium::Remote::Driver; };
|
||||
skip "Selenium::Remote::Driver is needed for selenium tests.", 1 if $@;
|
||||
|
||||
my $s = t::lib::Selenium->new;
|
||||
|
||||
my $driver = $s->driver;
|
||||
my $opac_base_url = $s->opac_base_url;
|
||||
my $builder = t::lib::TestBuilder->new;
|
||||
|
||||
my $PatronSelfRegistration_value = C4::Context->preference('PatronSelfRegistration');
|
||||
C4::Context->set_preference('PatronSelfRegistration', '1');
|
||||
|
||||
our @cleanup;
|
||||
|
||||
subtest 'Set flags' => sub {
|
||||
plan tests => 2;
|
||||
|
||||
$driver->get($opac_base_url . 'opac-memberentry.pl');
|
||||
like( $driver->get_title(), qr(Register a new account), );
|
||||
|
||||
$driver->find_element('//*[@id="borrower_surname"]')->send_keys("a surname");
|
||||
$driver->find_element('//*[@id="borrower_firstname"]')->send_keys("a firstname");
|
||||
$driver->find_element('//*[@id="borrower_initials"]')->send_keys("1");
|
||||
$driver->execute_script(q{document.querySelector("#borrower_initials").setAttribute("name", "borrower_flags");});
|
||||
my $captcha = $driver->find_element('//*[@id="captcha"]/following-sibling::span/strong')->get_text();
|
||||
$driver->find_element('//*[@id="captcha"]')->send_keys($captcha);
|
||||
$s->submit_form;
|
||||
|
||||
my $patron = Koha::Patrons->search({ surname => "a surname" })->next;
|
||||
is( $patron->flags, undef, 'flags must be undef even if user tried to pass it' );
|
||||
push @cleanup, $patron;
|
||||
};
|
||||
|
||||
|
||||
$driver->quit();
|
||||
|
||||
END {
|
||||
C4::Context->set_preference('PatronSelfRegistration', $PatronSelfRegistration_value);
|
||||
$_->delete for @cleanup;
|
||||
};
|
Loading…
Reference in a new issue