diff options
author | David Lawrence <dkl@mozilla.com> | 2017-02-07 15:45:13 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2017-02-07 15:45:13 +0100 |
commit | 212f76823f93adc87b25ce1b7e444af2585aa97c (patch) | |
tree | 8dd3122340a037ab47dadc24489e1737b16e14f2 /qa/t | |
parent | 5f85ad49391ba430dd13589a75a5c54234d0eed1 (diff) | |
download | bugzilla-212f76823f93adc87b25ce1b7e444af2585aa97c.tar.gz bugzilla-212f76823f93adc87b25ce1b7e444af2585aa97c.tar.xz |
- Update qa/t/test_create_user_accounts.t for Bug 1321592 - Update Bugzilla Etiquette and add Abuse Policy
Diffstat (limited to 'qa/t')
-rw-r--r-- | qa/t/test_create_user_accounts.t | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qa/t/test_create_user_accounts.t b/qa/t/test_create_user_accounts.t index 050191a19..be813c844 100644 --- a/qa/t/test_create_user_accounts.t +++ b/qa/t/test_create_user_accounts.t @@ -30,6 +30,7 @@ $sel->click_ok("link=Open a 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"); @@ -44,6 +45,7 @@ $sel->click_ok("link=Open a 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"); @@ -57,6 +59,7 @@ foreach my $account (@accounts) { $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"); @@ -78,6 +81,7 @@ foreach my $account (@accounts) { $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'); @@ -92,6 +96,7 @@ foreach my $account (@accounts) { $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"); @@ -104,6 +109,7 @@ $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"); |