Beispiel #1
0
 @Test
 public void passwordDidntMatchError() {
   SignUpResultPage resultPage =
       signUpPage.signUp(correctName, password, incorrectConfirmPassword, "", correctEmail);
   Assert.assertEquals(
       Source.getValue("SignUpErrorPasswordDidntMatchError"), resultPage.getErrorText());
 }
Beispiel #2
0
  @Test
  public void nameIsTakenError() {
    String userName = getExistentName();
    Assume.assumeThat(userName, CoreMatchers.notNullValue());

    SignUpResultPage resultPage = signUpPage.signUp(userName, password, password, "", correctEmail);
    Assert.assertEquals(Source.getValue("SignUpErrorNameIsTakenError"), resultPage.getErrorText());
  }
Beispiel #3
0
 @Test
 public void passwordIsRequiredError() {
   SignUpResultPage resultPage = signUpPage.signUp(correctName, null, password, "", correctEmail);
   Assert.assertEquals(
       Source.getValue("SignUpErrorPasswordIsRequired"), resultPage.getErrorText());
 }
Beispiel #4
0
 @Test
 public void invalidEmailError() {
   SignUpResultPage resultPage =
       signUpPage.signUp(correctName, password, password, "", incorrectEmail);
   Assert.assertEquals(Source.getValue("SignUpErrorInvalidEmailError"), resultPage.getErrorText());
 }
Beispiel #5
0
 @Test
 public void successfulSignUp() {
   SignUpResultPage resultPage =
       signUpPage.signUp(correctName, password, password, "", correctEmail);
   Assert.assertEquals(Source.getValue("SignUpSuccess"), resultPage.getMessageText());
 }