From 1c130b242ddc49fc64f8e61308e06eccb6a37028 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 4 May 2018 14:52:44 -0300 Subject: [PATCH] Bug 19185: Add selenium tests for installation and onboarding process Signed-off-by: Martin Renvoize Signed-off-by: Victor Grousset/tuxayo == Test plan == 1. Apply the patches (including bug 19821) 2. restart_all 3. prove -Mt::lib::Bootstrap t/db_dependent/selenium/00-installation.t 4. result: Config entry 'database_test' does not exist at /home/vagrant/kohaclone/t/lib/Bootstrap.pm line 18 5. Edit $KOHA_CONF, add a database_test entry identical to database You should have: koha_kohadev koha_kohadev 6. restart_all 7. prove -Mt::lib::Bootstrap t/db_dependent/selenium/00-installation.t 8. result: Entries 'database_test' and 'database' have the same value in your config at /home/vagrant/kohaclone/t/lib/Bootstrap.pm line 20. 9. Edit $KOHA_CONF, edit database_test with koha_test as DB name 10. restart_all 11. prove -Mt::lib::Bootstrap t/db_dependent/selenium/00-installation.t 12. result: Access denied for user 'koha_kohadev'@'localhost' to database 'koha_test' 13. Connect to the DBMS 14. Example for koha_testing_docker docker exec -it koha_db_1 bash mysql -u root --password=password 15. GRANT ALL PRIVILEGES ON `koha_test`.* TO 'koha_kohadev'; 16. prove -Mt::lib::Bootstrap t/db_dependent/selenium/00-installation.t 17. result: All tests successful. --- t/db_dependent/selenium/00-installation.t | 148 ++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 t/db_dependent/selenium/00-installation.t diff --git a/t/db_dependent/selenium/00-installation.t b/t/db_dependent/selenium/00-installation.t new file mode 100644 index 0000000000..990b6982a8 --- /dev/null +++ b/t/db_dependent/selenium/00-installation.t @@ -0,0 +1,148 @@ +#!/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 . + +use Modern::Perl; + +use Test::More tests => 2; + +use t::lib::Selenium; +use C4::Context; + +my $superlibrarian = { + surname => 'Super', + firstname => 'Librarian', + cardnumber => '143749305', + userid => 'SuperL', + password => 'aA1bB2cC3dD4' +}; +my $languages = { + en => 'en', + ar => 'ar-Arab', + es => 'es-ES', + fr => 'fr-FR', + it => 'it-IT', + pt_BR => 'pt-BR', + tr => 'tr-TR', + zh_TW => 'zh-Hans-TW' +}; + +SKIP: { + eval { require Selenium::Remote::Driver; }; + skip "Selenium::Remote::Driver is needed for selenium tests.", 2 if $@; + + my $s = t::lib::Selenium->new; + + my $driver = $s->driver; + my $base_url = $s->base_url; + my $db_user = C4::Context->config('user'); + my $db_pass = C4::Context->config('pass'); + + $driver->get($base_url."mainpage.pl"); + + my $lang = "en"; # The idea here is to loop on all languages + + # Welcome to the Koha web installer + $s->fill_form({userid => $db_user, password => $db_pass }); + $s->submit_form; + + # Choose your language + $s->fill_form({ language => $languages->{$lang} }); + $s->submit_form; + + # Check Perl dependencies + $s->submit_form; + + # Database settings + $s->submit_form; + + # Database settings + # Connection established + $s->driver->find_element('//div[@class="alert alert-success"]'); + $s->submit_form; + + # Set up database + $s->submit_form; + + # Success + # Database tables created + $s->driver->find_element('//div[@class="alert alert-success"]'); + $s->submit_form; + + # Install basic configuration settings + $s->submit_form; + + # Select your MARC flavor + $s->fill_form({ marcflavour => 'MARC21' }); + $s->submit_form; + + # Selecting default settings + # Do not check otherwise no onboarding + #my @checkboxes = $driver->find_elements('//input[@type="checkbox" and not(@checked="checked")]'); + #for my $c ( @checkboxes ) { + # $c->click; + #} + $s->submit_form; + + # Default data loaded + $s->submit_form; + + #$s->submit_form; + $s->click( { href => '/installer/onboarding.pl', main => 'installer-step3' } ); + + # Create a library + $s->fill_form({ branchcode => 'CPL', branchname => 'Centerville' }); + $s->submit_form; + + # Library created! + $s->driver->find_element('//div[@class="alert alert-success"]'); + # Create a patron category + $s->fill_form({ categorycode => 'S', description => 'Staff', enrolmentperiod => 12 }); + $s->submit_form; + + # Patron category created! + $s->driver->find_element('//div[@class="alert alert-success"]'); + # Create Koha administrator patron + $s->fill_form({ %$superlibrarian, password2 => $superlibrarian->{password} }); + $s->submit_form; + + #Administrator account created! + $s->driver->find_element('//div[@class="alert alert-success"]'); + # Create a new item type + $s->fill_form({ itemtype => 'BK', description => 'Book' }); + $s->submit_form; + + # New item type created! + $s->driver->find_element('//div[@class="alert alert-success"]'); + # Create a new circulation rule + # Keep default values + $s->submit_form; + + # Get the interface in the correct language + C4::Context->set_preference('language', $languages->{$lang} ); + C4::Context->set_preference('opaclanguages', $languages->{$lang} ); + + $s->click( { href => '/mainpage.pl', main => 'onboarding-step5' } ); + + $s->fill_form({ userid => $superlibrarian->{userid}, password => $superlibrarian->{password} }); + + like( $s->driver->get_title, qr(Log in to Koha), 'After the onboarding process the user should have landed in the login form page'); + $s->submit_form; + + is( $s->driver->get_title, 'Koha staff client', 'The credentials we created should work'); + + $driver->quit(); +}; -- 2.26.2