Guest User

Untitled

a guest
Apr 8th, 2018
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. Feature: Registration Email Validation
  2.  
  3. Background:
  4.  
  5. Given I am not logged in
  6. And I am on the register page
  7.  
  8. @1
  9.  
  10. Scenario Outline: A new registration - variations of valid emails
  11.  
  12. When I fill in user_first_name with 'New'
  13. And I fill in user_last_name with 'User'
  14. And I fill in user_address_1 with '123 Some Road'
  15. And I fill in user_city with 'Some City'
  16. And I select 'ILLINOIS' from user_state
  17. And I fill in user_zip_code with '12345'
  18. And I fill in user_email with '<email>'
  19. And I fill in user_password with 'my_password'
  20. And I fill in user_password_confirmation with 'my_password'
  21. And I set the counties_all radio
  22. And I click the register button
  23. Then I should get the REGISTRATION_SUCCESSFUL message
  24. And a message should be sent
  25.  
  26. Examples:
  27. | email |
  28. | user@example.com |
  29. | user@example.ca |
  30. | user_1@example.com |
  31. | user.1@example.com |
  32. | user+1@example.com |
  33. | user-1@example.com |
  34. | user%1@example.com |
  35. | user_one@example.com |
  36. | user.one@example.com |
  37. | user+one@example.com |
  38. | user-one@example.com |
  39. | user%one@example.com |
  40. | 1234567890@example.com |
  41. | user@mail.example.com |
  42.  
  43. @2
  44.  
  45. Scenario Outline: A new registration - variations of invalid emails
  46.  
  47. When I fill in user_first_name with 'New'
  48. And I fill in user_last_name with 'User'
  49. And I fill in user_address_1 with '123 Some Road'
  50. And I fill in user_city with 'Some City'
  51. And I select 'ILLINOIS' from user_state
  52. And I fill in user_zip_code with '12345'
  53. And I fill in user_email with '<email>'
  54. And I fill in user_password with 'my_password'
  55. And I fill in user_password_confirmation with 'my_password'
  56. And I set the counties_all radio
  57. And I click the register button
  58. Then I should not get the REGISTRATION_SUCCESSFUL message
  59. And I should see "Email is invalid"
  60. And a message should not be sent
  61.  
  62. Examples:
  63. | email |
  64. | user!@example.com |
  65. | user@example |
  66. | user one@example.com |
  67. | @example.com |
  68. | .user@example.com |
  69. | _user@example.com |
  70. | -user@example.com |
  71. | +user@example.com |
  72. | user@mail.example.company |
Add Comment
Please, Sign In to add comment