summaryrefslogtreecommitdiffstats
path: root/qa/t/test_create_user_accounts.t
blob: 25f93ba65f09f7d1db0e6b29e6dafcdb47b56f47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.

use strict;
use warnings;
use lib qw(lib ../../lib ../../local/lib/perl5);

use Test::More "no_plan";

use QA::Util;

my ($sel, $config) = get_selenium();

# Set the email regexp for new bugzilla accounts to end with @bugzilla.test.

log_in($sel, $config, 'admin');
set_parameters(
  $sel,
  {
    "User Authentication" =>
      {"createemailregexp" => {type => "text", value => '[^@]+@bugzilla\.test$'}}
  }
);
logout($sel);

# Create a valid account. We need to randomize the login address, because a request
# expires after 3 days only and this test can be executed several times per day.
my $valid_account = 'selenium-' . random_string(10) . '@bugzilla.test';

$sel->is_text_present_ok("New Account");
$sel->click_ok("link=New Account");
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Create a new Bugzilla account");
$sel->type_ok("login", $valid_account);
$sel->check_ok("etiquette", "Agree to abide by code of conduct");
$sel->click_ok('//input[@value="Create Account"]');
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Request for new user account '$valid_account' submitted");
$sel->is_text_present_ok("A confirmation email has been sent");

# Try creating the same account again. It's too soon.
$sel->click_ok('//*[@id="header-title"]//a');
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Bugzilla Main Page");
$sel->is_text_present_ok("New Account");
$sel->click_ok("link=New Account");
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Create a new Bugzilla account");
$sel->type_ok("login", $valid_account);
$sel->check_ok("etiquette", "Agree to abide by code of conduct");
$sel->click_ok('//input[@value="Create Account"]');
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Too Soon For New Token");
my $error_msg = trim($sel->get_text("error_msg"));
ok($error_msg =~ /Please wait a while and try again/,
  "Too soon for this account");

# These accounts do not pass the regexp.
my @accounts
  = ('test@yahoo.com', 'test@bugzilla.net', 'test@bugzilla.test.com');
foreach my $account (@accounts) {
  $sel->click_ok("link=New Account");
  $sel->wait_for_page_to_load_ok(WAIT_TIME);
  $sel->title_is("Create a new Bugzilla account");
  $sel->type_ok("login", $account);
  $sel->check_ok("etiquette", "Agree to abide by code of conduct");
  $sel->click_ok('//input[@value="Create Account"]');
  $sel->wait_for_page_to_load_ok(WAIT_TIME);
  $sel->title_is("Account Creation Restricted");
  $sel->is_text_present_ok("User account creation has been restricted.");
}

# These accounts are illegal and should cause a javascript alert.
@accounts = qw(
  test\bugzilla@bugzilla.test
  testbugzilla.test
  test@bugzilla
  test@bugzilla.
  'test'@bugzilla.test
  test&test@bugzilla.test
  [test]@bugzilla.test
);

foreach my $account (@accounts) {
  $sel->click_ok("link=New Account");
  $sel->wait_for_page_to_load_ok(WAIT_TIME);
  $sel->title_is("Create a new Bugzilla account");
  $sel->type_ok("login", $account);
  $sel->check_ok("etiquette", "Agree to abide by code of conduct");
  $sel->click_ok('//input[@value="Create Account"]');
  ok(
    $sel->get_alert()
      =~ /The e-mail address doesn't pass our syntax checking for a legal email address/,
    'Invalid email address detected'
  );
}

# These accounts are illegal but do not cause a javascript alert
@accounts = ('test@bugzilla.org@bugzilla.test', 'test@bugzilla..test');

# Logins larger than 127 characters must be rejected, for security reasons.
push @accounts, 'selenium-' . random_string(110) . '@bugzilla.test';
foreach my $account (@accounts) {
  $sel->click_ok("link=New Account");
  $sel->wait_for_page_to_load_ok(WAIT_TIME);
  $sel->title_is("Create a new Bugzilla account");
  $sel->type_ok("login", $account);
  $sel->check_ok("etiquette", "Agree to abide by code of conduct");
  $sel->click_ok('//input[@value="Create Account"]');
  $sel->wait_for_page_to_load_ok(WAIT_TIME);
  $sel->title_is("Invalid Email Address");
  my $error_msg = trim($sel->get_text("error_msg"));
  ok(
    $error_msg
      =~ /^The e-mail address you entered (\S+) didn't pass our syntax checking/,
    "Invalid email address detected"
  );
}

# This account already exists.
$sel->click_ok("link=New Account");
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Create a new Bugzilla account");
$sel->type_ok("login", $config->{admin_user_login});
$sel->check_ok("etiquette", "Agree to abide by code of conduct");
$sel->click_ok('//input[@value="Create Account"]');
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Account Already Exists");
$error_msg = trim($sel->get_text("error_msg"));
ok(
  $error_msg eq
    "There is already an account with the login name $config->{admin_user_login}.",
  "Account already exists"
);

# Turn off user account creation.
log_in($sel, $config, 'admin');
set_parameters(
  $sel,
  {
    "User Authentication" => {"createemailregexp" => {type => "text", value => ''}}
  }
);
logout($sel);

# Make sure that links pointing to createaccount.cgi are all deactivated.
ok(!$sel->is_text_present("New Account"), "No link named 'New Account'");
$sel->click_ok('//*[@id="header-title"]//a');
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->refresh;
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Bugzilla Main Page");
ok(!$sel->is_text_present("New Account"), "No link named 'New Account'");
$sel->open_ok("/$config->{bugzilla_installation}/createaccount.cgi");
$sel->title_is("Account Creation Disabled");
$error_msg = trim($sel->get_text("error_msg"));
ok(
  $error_msg
    =~ /^User account creation has been disabled. New accounts must be created by an administrator/,
  "User account creation disabled"
);

# Re-enable user account creation.

log_in($sel, $config, 'admin');
set_parameters(
  $sel,
  {
    "User Authentication" =>
      {"createemailregexp" => {type => "text", value => '.*'}}
  }
);

# Make sure selenium-<random_string>@bugzilla.test has not be added to the DB yet.
go_to_admin($sel);
$sel->click_ok("link=Users");
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Search users");
$sel->type_ok("matchstr", $valid_account);
$sel->click_ok("search");
$sel->wait_for_page_to_load_ok(WAIT_TIME);
$sel->title_is("Select user");
$sel->is_text_present_ok("0 users found");
logout($sel);