Test cases against User Registration process

| | 2 min read

Suppose you have Drupal website where user can purchase ticket through online ticket platform. It allows two types of users such as Registered user and guest user. System will automatically create an account for guest user using email address. Registered users have the permission to manage personal profile.

Some of the Test Cases against requirement is given below:-

  • Ensure that new user can register by entering mandatory details in registration credential.
  • Ensure that system send conformation message through email address.
  • Ensure that error message is displayed when user leaves mandatory fields in the registration credential.
  • Ensure that error message is displayed when user provide invalid inputs in mandatory fields of registration credential.
  • Ensure that user can enter the site using login credential.
  • Ensure that error message is displayed when user enter the invalid username and valid Password in the login credential.
  • Ensure that error message is displayed when user leaves mandatory fields in the login credential.
  • Ensure that error message is displayed when user enter the valid username and invalid password in the login credential.
  • Ensure that User details are available when loged into the user account.
  • Ensure that the system genarate account automatically using email address for guest users.
  • Ensure that system send conformation message through email address.
  • Ensure that the user can purchase the product as the guest .
  • Ensure that system should not create more than one account for the same email address
  • Ensure that user can able to sign out from the site properly.

Hope this article helps you to test user registration process.