Skip to content
Snippets Groups Projects
Commit e5c25017 authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #2924033: Updated the Autoamted functional testing to work with the new...

Issue #2924033: Updated the Autoamted functional testing to work with the new password policy behavior
parent ba11f1bd
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ Feature: Create default testing users.
# test_authenticated: { email: 'authenticated.test@vardot.com', password: 'dD.123123ddd' }
# test_editor: { email: 'editor.test@vardot.com', password: 'dD.123123ddd' }
# test_content_admin: { email: 'content.admin.test@vardot.com', password: 'dD.123123ddd' }
# test_seo_admin: { email: 'seo.admin.test@vardot.com', password: 'dD.123123ddd' }
# test_site_admin: { email: 'site.admin.test@vardot.com', password: 'dD.123123ddd' }
# test_super_admin: { email: 'super.admin.test@vardot.com', password: 'dD.123123ddd' }
......@@ -13,7 +14,8 @@ Feature: Create default testing users.
Scenario: Create the test_authenticated user.
When I go to "/admin/people/create"
And I wait
And I fill in "authenticated.test@vardot.com" for "Email address"
Then I should see "Add user"
When I fill in "authenticated.test@vardot.com" for "Email address"
And I fill in "test_authenticated" for "Username"
And I fill in "dD.123123ddd" for "Password"
And I fill in "dD.123123ddd" for "Confirm password"
......@@ -25,7 +27,8 @@ Feature: Create default testing users.
Scenario: Create the test_editor user.
When I go to "/admin/people/create"
And I wait
And I fill in "editor.test@vardot.com" for "Email address"
Then I should see "Add user"
When I fill in "editor.test@vardot.com" for "Email address"
And I fill in "test_editor" for "Username"
And I fill in "dD.123123ddd" for "Password"
And I fill in "dD.123123ddd" for "Confirm password"
......@@ -38,7 +41,8 @@ Feature: Create default testing users.
Scenario: Create the test_content_admin user.
When I go to "/admin/people/create"
And I wait
And I fill in "content.admin.test@vardot.com" for "Email address"
Then I should see "Add user"
When I fill in "content.admin.test@vardot.com" for "Email address"
And I fill in "test_content_admin" for "Username"
And I fill in "dD.123123ddd" for "Password"
And I fill in "dD.123123ddd" for "Confirm password"
......@@ -48,10 +52,11 @@ Feature: Create default testing users.
Then I should not see "The name test_content_admin is already taken."
@init @tools @local @development @staging
Scenario: Create the test_site_admin user.
Scenario: Create the test_seo_admin user.
When I go to "/admin/people/create"
And I wait
And I fill in "seo.admin.test@vardot.com" for "Email address"
Then I should see "Add user"
When I fill in "seo.admin.test@vardot.com" for "Email address"
And I fill in "test_seo_admin" for "Username"
And I fill in "dD.123123ddd" for "Password"
And I fill in "dD.123123ddd" for "Confirm password"
......@@ -64,7 +69,8 @@ Feature: Create default testing users.
Scenario: Create the test_site_admin user.
When I go to "/admin/people/create"
And I wait
And I fill in "site.admin.test@vardot.com" for "Email address"
Then I should see "Add user"
When I fill in "site.admin.test@vardot.com" for "Email address"
And I fill in "test_site_admin" for "Username"
And I fill in "dD.123123ddd" for "Password"
And I fill in "dD.123123ddd" for "Confirm password"
......@@ -77,7 +83,8 @@ Feature: Create default testing users.
Scenario: Create the test_super_admin user.
When I go to "/admin/people/create"
And I wait
And I fill in "super.admin.test@vardot.com" for "Email address"
Then I should see "Add user"
When I fill in "super.admin.test@vardot.com" for "Email address"
And I fill in "test_super_admin" for "Username"
And I fill in "dD.123123ddd" for "Password"
And I fill in "dD.123123ddd" for "Confirm password"
......
......@@ -3,6 +3,7 @@ Feature: Delete default testing users.
# test_authenticated: { email: 'authenticated.test@vardot.com', password: 'dD.123123ddd' }
# test_editor: { email: 'editor.test@vardot.com', password: 'dD.123123ddd' }
# test_content_admin: { email: 'content.admin.test@vardot.com', password: 'dD.123123ddd' }
# test_seo_admin: { email: 'seo.admin.test@vardot.com', password: 'dD.123123ddd' }
# test_site_admin: { email: 'site.admin.test@vardot.com', password: 'dD.123123ddd' }
# test_super_admin: { email: 'super.admin.test@vardot.com', password: 'dD.123123ddd' }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment