@Test public void passwordDidntMatchError() { SignUpResultPage resultPage = signUpPage.signUp(correctName, password, incorrectConfirmPassword, "", correctEmail); Assert.assertEquals( Source.getValue("SignUpErrorPasswordDidntMatchError"), resultPage.getErrorText()); }
@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()); }
@Test public void unsuccessfulSignUp() { String incorrectUserName = RandomForPages.randomStringWithInvalidSymbols(); thrown.expectMessage("Not on the right page"); SignUpResultPage resultPage = signUpPage.signUp(incorrectUserName, password, password, "", correctEmail); Assert.assertEquals(" Oops!", resultPage.getMessageText()); }
@Test public void passwordIsRequiredError() { SignUpResultPage resultPage = signUpPage.signUp(correctName, null, password, "", correctEmail); Assert.assertEquals( Source.getValue("SignUpErrorPasswordIsRequired"), resultPage.getErrorText()); }
@Test public void invalidEmailError() { SignUpResultPage resultPage = signUpPage.signUp(correctName, password, password, "", incorrectEmail); Assert.assertEquals(Source.getValue("SignUpErrorInvalidEmailError"), resultPage.getErrorText()); }
@Test public void successfulSignUp() { SignUpResultPage resultPage = signUpPage.signUp(correctName, password, password, "", correctEmail); Assert.assertEquals(Source.getValue("SignUpSuccess"), resultPage.getMessageText()); }