Bugzilla – Attachment 66507 Details for
Bug 19184
Purchase workflow selenium test
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19184 - Selenium test for purchase workflow
Bug-19184---Selenium-test-for-purchase-workflow.patch (text/plain), 11.61 KB, created by
Alex Buckley
on 2017-08-27 03:18:30 UTC
(
hide
)
Description:
Bug 19184 - Selenium test for purchase workflow
Filename:
MIME Type:
Creator:
Alex Buckley
Created:
2017-08-27 03:18:30 UTC
Size:
11.61 KB
patch
obsolete
>From b284f068d503df8dd80411d6ff68ce5dd05b3108 Mon Sep 17 00:00:00 2001 >From: Alex Buckley <alexbuckley@catalyst.net.nz> >Date: Fri, 4 Aug 2017 21:43:44 +0000 >Subject: [PATCH] Bug 19184 - Selenium test for purchase workflow > >This test covers the creation of purchase suggestion in the OPAC. >The approval of that purchase suggestion in the intranet and then the >creation of vendor, basket and the creation of the order from the >suggested item. If the order is successfully placed then the test output >'Purchase suggestion order placed' will be displayed > >Test plan (this test plan includes how to install Selenium as well as how to run this test, for the benefit of people who have not got >Selenium installed on their machines): > >1. wget >https://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar > >2. vim /etc/apt/sources.list.d/firefox.list > >3. Paste into the file: >deb http://packages.linuxmint.com debian import > >4. sudo apt-get update > >5. sudo apt-get install firefox > >6. sudo apt-get install xvfb > >7. Set the SELENIUM_PATH vartiable: >SELENIUM_PATH=/home/vagrant/kohaclone/selenium-server-standalone-2.53.0.jar > >8. Xvfb :1 -screen 0 1024x768x24 2>&1 >/dev/null & > >9. DISPLAY=:1 java -jar $SELENIUM_PATH > >Note: This will start up the selenium server. Everytime you want to shut >down this terminal window and want to restart Selenium just run the step >9 command to restart the Selenium server > >10. Open a new terminal window and write in: >git clone https://github.com/gempesaw/Selenium-Remote-Driver --branch >build/master --single-branch --depth 1 > >11. cd Selenium-Remote-Driver > >12. perl Makefile.PL > >13. make > >14. make test > >15. sudo make install > >16. Now everything is installed and you can set up for running the >selenium tests > >17. Drop and recreate the Koha database, install all sample data in the >installer > >18. In the intranet create a budget and fund > >19. Create a superlibrarian patron with the name koha and password koha > >20. Make sure you set the staffClientBaseURL and OPACBaseURL to their >appropriate values for your environment. If you are testing using >Kohadevbox then the corrext values for these sysprefs is localhost:8080 >and http://localhost:80 respectively > >21. Enter Koha shell: sudo koha-shell <instancename> > >22. perl t/db_dependent/selenium/purchase_workflow.t > >23. The test takes a while to excute but notice that all tests pass > >Sponsored-By: Catalyst IT >--- > t/db_dependent/selenium/purchase_workflow.t | 197 ++++++++++++++++++++++++++++ > 1 file changed, 197 insertions(+) > create mode 100644 t/db_dependent/selenium/purchase_workflow.t > >diff --git a/t/db_dependent/selenium/purchase_workflow.t b/t/db_dependent/selenium/purchase_workflow.t >new file mode 100644 >index 0000000..9bdcd7e >--- /dev/null >+++ b/t/db_dependent/selenium/purchase_workflow.t >@@ -0,0 +1,197 @@ >+#!/usr/bin/perl >+ >+# This file is part of Koha. >+# >+# Copyright (C) 2017 Catalyst IT >+# >+# 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>. >+ >+# This Selenium test goes through the item purchase workflow. Itstarts with a purchase suggestion being placed in the OPAC using the Z39.50 server >+# This suggestion is processed in the intranet, and a vendor and associated basket is created. >+# >+# If a purchase suggestion item is added to the basket successfully then the test output 'Purchase suggestion order placed' is displayed >+ >+use Modern::Perl; >+ >+use Time::HiRes qw(gettimeofday); >+use C4::Context; >+use C4::Biblio qw( AddBiblio ); # We shouldn't use it >+ >+use Test::More tests => 2; >+use MARC::Record; >+use MARC::Field; >+ >+my $dbh = C4::Context->dbh; >+my $login = 'koha'; >+my $password = 'koha'; >+my $base_url= 'http://'.C4::Context->preference("staffClientBaseURL")."/cgi-bin/koha/"; >+my $opac_url= C4::Context->preference("OPACBaseURL"); >+ >+my $number_of_biblios_to_insert = 3; >+our $sample_data = { >+ category => { >+ categorycode => 'test_cat', >+ description => 'test cat description', >+ enrolmentperiod => '12', >+ category_type => 'A' >+ }, >+ patron => { >+ surname => 'test_patron_surname', >+ cardnumber => '4242424242', >+ userid => 'test_username', >+ password => 'password', >+ password2 => 'password' >+ }, >+}; >+ >+my $patronusername="test_username"; >+my $patronpassword="password"; >+ >+our ( $borrowernumber, $start, $prev_time, $cleanup_needed ); >+ >+SKIP: { >+ eval { require Selenium::Remote::Driver; }; >+ skip "Selenium::Remote::Driver is needed for selenium tests.", 20 if $@; >+ >+ $cleanup_needed = 1; >+ >+ open my $fh, '>>', '/tmp/output.txt'; >+ >+# Go to the mainpage and log in as default user >+ my $driver = Selenium::Remote::Driver->new; >+ $start = gettimeofday; >+ $prev_time = $start; >+ $driver->get($base_url."mainpage.pl"); >+ like( $driver->get_title(), qr(Log in to Koha), ); >+ auth( $driver, $login, $password ); >+ time_diff("main"); >+ >+# Load OPAC and create purchase suggestion >+ $driver->get($opac_url); >+ like( $driver->get_title(), qr(Koha online catalog), ); >+ $driver->pause(2000); >+ $driver->find_element('//a[@id="listsmenu"]')->click; >+ $driver->find_element('//a[@href="/cgi-bin/koha/opac-shelves.pl?op=list&category=1"]')->click; >+ $driver->pause(20000); >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div[1]/div[1]/div/div[2]/div/ul/li[7]/a')->click; >+ $driver->pause(20000); >+ $driver->find_element('//a[@href="/cgi-bin/koha/opac-suggestions.pl?op=add"]')->click; >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[1]/ol/li[1]/input')->send_keys("The Iliad"); >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[1]/ol/li[2]/input')->send_keys("Homer"); >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[1]/ol/li[4]/input')->send_keys("978-0140275360"); >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[1]/ol/li[5]/input')->send_keys("Pengiun Classics"); >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[1]/ol/li[8]/select')->click; >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[1]/ol/li[8]/select/option[2]')->click; >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[1]/ol/li[9]/select')->click; >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[1]/ol/li[9]/select/option[3]')->click; >+ $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/form/fieldset[2]/input[3]')->click; >+ my $submittedstatus = $driver->find_element_by_xpath('/html/body/div/div[4]/div/div/div[2]/div/div')->get_text(); >+ if ($submittedstatus eq "Your suggestion has been submitted.") { >+ time_diff("Purchase suggestion submitted"); >+ } else { >+ time_diff("Purchase suggestion failed"); >+ } >+ >+# Process the purchase suggestion in intranet >+ $driver->get($base_url."mainpage.pl"); >+ $driver->find_element_by_xpath('/html/body/div[4]/div/div[1]/div/div[2]/div/div/a')->click; >+ $driver->pause(20000); >+ $driver->find_element('//a[@id="CheckAllASKED"]')->click; >+ $driver->find_element_by_xpath('/html/body/div[4]/div/div[1]/div/div[2]/div/form/fieldset[1]/div/div/select[1]')->click; >+ $driver->find_element_by_xpath('/html/body/div[4]/div/div[1]/div/div[2]/div/form/fieldset[1]/div/div/select[1]/option[3]')->click; $driver->find_element_by_xpath('/html/body/div[4]/div/div[1]/div/div[2]/div/form/fieldset[1]/div/div/select[2]')->click; >+ $driver->find_element_by_xpath('/html/body/div[4]/div/div[1]/div/div[2]/div/form/fieldset[1]/div/div/select[2]/option[3]')->click; >+ $driver->find_element_by_xpath('/html/body/div[4]/div/div[1]/div/div[2]/div/form/fieldset[2]/input')->click; >+ time_diff("Purchase suggestion approved in Intranet"); >+ >+# Create vendor >+ $driver->find_element_by_xpath('/html/body/div[2]/h1/a')->click; >+ $driver->pause(20000); >+ $driver->find_element('//a[@class="icon_general icon_acquisitions"]')->click; >+ $driver->pause(20000); >+ $driver ->get($base_url."acqui/supplier.pl?op=enter"); >+ $driver->pause(20000); >+ $driver->find_element('//input[@id="company"]')->send_keys("Test vendor"); >+ $driver->find_element('//input[@value="Save"]')->click; >+ >+# Create basket >+ $driver->find_element_by_xpath('/html/body/div[4]/div/div[1]/div/div[2]/div/span[2]/a')->click; >+ $driver->pause(50000); >+ $driver->find_element_by_xpath('/html/body/div[4]/div/div/form/fieldset[1]/ol/li[1]/input')->send_keys("Test basket"); >+ $driver->find_element('//input[@value="Save"]')->click; >+ >+# Add to basket >+ $driver->find_element('//a[@href="#addtoBasket"]')->click; >+ $driver->find_element('//a[text() = "From a suggestion"]')->click; >+ $driver->pause(20000); >+ $driver->find_element_by_xpath('/html/body/div[4]/div/div[1]/div/div/table/tbody/tr/td[4]/a')->click; >+ $driver->pause(20000); >+ $driver->find_element('//input[@value="Add item"]')->click; >+ $driver->find_element('//select[@id="budget_id"]')->click; >+ $driver->find_element_by_xpath("/html/body/div[4]/div/div[1]/div/form/fieldset[5]/ol/li[2]/select/option[2]")->click; >+ $driver->find_element('//input[@value="Save"]')->click; >+ if ($driver->find_element('//div[@id="orders_wrapper"]')) { >+ time_diff("Purchase suggestion order placed"); >+ } else { >+ time_diff("Purchase suggestion order not placed"); >+ } >+ >+ close $fh; >+ $driver->quit(); >+}; >+ >+END { >+ cleanup() if $cleanup_needed; >+}; >+ >+sub auth { >+ my ( $driver, $login, $password) = @_; >+ fill_form( $driver, { userid => 'koha', password => 'koha' } ); >+ my $login_button = $driver->find_element('//input[@id="submit"]'); >+ $login_button->submit(); >+} >+ >+sub fill_form { >+ my ( $driver, $values ) = @_; >+ while ( my ( $id, $value ) = each %$values ) { >+ my $element = $driver->find_element('//*[@id="'.$id.'"]'); >+ my $tag = $element->get_tag_name(); >+ if ( $tag eq 'input' ) { >+ $driver->find_element('//input[@id="'.$id.'"]')->send_keys($value); >+ } elsif ( $tag eq 'select' ) { >+ $driver->find_element('//select[@id="'.$id.'"]/option[@value="'.$value.'"]')->click; >+ } >+ } >+} >+ >+sub cleanup { >+ my $dbh = C4::Context->dbh; >+ $dbh->do(q|DELETE FROM categories WHERE categorycode = ?|, {}, $sample_data->{category}{categorycode}); >+ $dbh->do(q|DELETE FROM borrowers WHERE userid = ?|, {}, $sample_data->{patron}{userid}); >+ for my $i ( 1 .. $number_of_biblios_to_insert ) { >+ $dbh->do(qq|DELETE FROM biblio WHERE title = "test biblio $i"|); >+ }; >+ >+ $dbh->do(q|DELETE FROM issues where borrowernumber=?|, {}, $borrowernumber); >+ $dbh->do(q|DELETE FROM old_issues where borrowernumber=?|, {}, $borrowernumber); >+ for my $i ( 1 .. $number_of_biblios_to_insert ) { >+ $dbh->do(qq|DELETE items, biblio FROM biblio INNER JOIN items ON biblio.biblionumber = items.biblionumber WHERE biblio.title = "test biblio$i"|); >+ }; >+} >+ >+sub time_diff { >+ my $lib = shift; >+ my $now = gettimeofday; >+ warn "CP $lib = " . sprintf("%.2f", $now - $prev_time ) . "\n"; >+ $prev_time = $now; >+} >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 19184
: 66507 |
68829