Bug 26384: Fix executable flags
[koha.git] / t / db_dependent / selenium / update_child_to_adult.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
20 use C4::Context;
21
22 use Test::More tests => 1;
23 use Test::MockModule;
24
25 use C4::Context;
26 use Koha::AuthUtils;
27 use t::lib::Mocks;
28 use t::lib::Selenium;
29 use t::lib::TestBuilder;
30
31 eval { require Selenium::Remote::Driver; };
32 skip "Selenium::Remote::Driver is needed for selenium tests.", 1 if $@;
33
34 my $s             = t::lib::Selenium->new;
35 my $driver        = $s->driver;
36 my $opac_base_url = $s->opac_base_url;
37 my $base_url      = $s->base_url;
38 my $builder       = t::lib::TestBuilder->new;
39
40 our @cleanup;
41 subtest 'Update child to patron' => sub {
42     plan tests => 3;
43     # We are going to test 3 scĂ©narios:
44     # 1. There are no adults in the DB => no "Update child" link appear
45     # 2. There are at least 2 adults in the DB => a window popup is displayed, letting the librarian choosing the adult category they want
46     # 3.An adult will not be able to click the "Update child" link
47
48     $s->auth;
49
50     # Creating the child
51     my $patron_category_C = $builder->build_object(
52         { class => 'Koha::Patron::Categories', value => { category_type => 'C' } } );
53
54     my $child = $builder->build_object(
55         {
56             class => 'Koha::Patrons',
57             value => {
58                 categorycode => $patron_category_C->categorycode,
59             }
60         }
61     );
62     my $child_borrowernumber = $child->borrowernumber;
63
64     subtest 'No adult categories' => sub {
65         plan tests => 1;
66
67         # That's pretty ugly, but we need 0 adult in the DB to really test the whole behaviorĂ 
68         Koha::Patron::Categories->search({ category_type => 'A' })->update({ category_type => 'Z' });
69
70         $driver->get( $base_url . "/members/moremember.pl?borrowernumber=" . $child_borrowernumber );
71         # Find the "More" button group, it's the last one
72         # Do not use "More" to select the button, to make it works even when translated
73         $driver->find_element('//div[@id="toolbar"]/div[@class="btn-group"][last()]')->click;
74
75         $s->remove_error_handler;
76         # Why ->id is needed to make it fail?
77         # We should expect ->find_element to return 0, but it returns a WebElement (??)
78         my $update_link_id = eval { $driver->find_element('//a[@id="updatechild"]')->id; };
79         $s->add_error_handler;
80         is ( $update_link_id, undef, 'No update link should be displayed' );
81
82         # Resetting the patrons to adult
83         Koha::Patron::Categories->search({ category_type => 'Z' })->update({ category_type => 'A' });
84     };
85
86     my $patron_category_A = $builder->build_object(
87         { class => 'Koha::Patron::Categories', value => { category_type => 'A' } } );
88     my $adult_1 = $builder->build_object(
89         {
90             class => 'Koha::Patrons',
91             value => {
92                 categorycode => $patron_category_A->categorycode,
93             }
94         }
95     );
96     my $adult_2 = $builder->build_object( # We want at least 2 adults to display the popup window
97         {
98             class => 'Koha::Patrons',
99             value => {
100                 categorycode => $patron_category_A->categorycode,
101             }
102         }
103     );
104     my $adult_borrowernumber = $adult_1->borrowernumber;
105
106     subtest 'Update child to adult' => sub {
107         plan tests => 3;
108         $driver->get( $base_url . "/members/moremember.pl?borrowernumber=" . $child_borrowernumber );
109         $driver->find_element('//div[@id="toolbar"]/div[@class="btn-group"][last()]')->click; # More button group
110         my $update_link = $driver->find_element('//a[@id="updatechild"]');
111
112         is($update_link->get_attribute('data-toggle'), undef, 'The update link should not have a data-toggle attribute => not a tooltip and can be clickable');
113         $update_link->click;
114         like( $driver->get_current_url, qr{/members/moremember\.pl\?borrowernumber=$child_borrowernumber\#$}, 'Current window has a "#" in the URL, event has been triggered');
115
116         # Switch to the popup window
117         # Note that if there is only 1 adult in the DB the popup does not appears, but an alert instead. Not tested so far.
118         my $handles = $driver->get_window_handles;
119         $driver->switch_to_window($handles->[1]);
120         $driver->find_element('//input[@id="catcode'.$patron_category_A->categorycode.'"]')->click;
121         $s->submit_form;
122
123         is( $child->get_from_storage->categorycode, $patron_category_A->categorycode, 'The child should now be an adult!' );
124
125         # Switching back to the main window
126         $driver->switch_to_window($handles->[0]);
127     };
128
129     subtest 'Cannot update an adult' => sub {
130         plan tests => 2;
131
132         # Go to the adult detail view
133         $driver->get( $base_url . "/members/moremember.pl?borrowernumber=$adult_borrowernumber" );
134         $driver->find_element('//div[@id="toolbar"]/div[@class="btn-group"][last()]')->click; # More button group
135
136         my $update_link = $driver->find_element('//a[@id="updatechild"]');
137         is($update_link->get_attribute('data-toggle'), 'tooltip', q|The update link should have a data-toggle attribute => it's a tooltip, not clickable|);
138         $update_link->click;
139         like( $driver->get_current_url, qr{/members/moremember\.pl\?borrowernumber=$adult_borrowernumber$}, 'After clicking the link, nothing happens, no # in the URL');
140     };
141
142     my @patrons = ( $adult_1, $adult_2, $child );
143     push @cleanup, $_, $_->library, for @patrons;
144     push @cleanup, $patron_category_A, $patron_category_C;
145 };
146
147 END {
148     # Resetting the patrons to adult, in case it has not been done earlier (if failures happened)
149     Koha::Patron::Categories->search({ category_type => 'Z' })->update({ category_type => 'A' });
150
151     $_->delete for @cleanup;
152 }