Validate provided email addresses when creating a Registrar

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=240574585
This commit is contained in:
gbrodman 2019-03-27 09:14:38 -07:00 committed by jianglai
parent 26eda15d47
commit 174d8d69ea
10 changed files with 137 additions and 24 deletions

View file

@ -815,6 +815,17 @@ public class UpdateRegistrarCommandTest extends CommandTestCase<UpdateRegistrarC
assertThat(loadRegistrar("NewRegistrar").getPoNumber()).isEmpty();
}
@Test
public void testFailure_badEmail() {
IllegalArgumentException thrown =
assertThrows(
IllegalArgumentException.class,
() -> runCommand("--email=lolcat", "--force", "NewRegistrar"));
assertThat(thrown)
.hasMessageThat()
.isEqualTo("Provided email lolcat is not a valid email address");
}
private void persistWhoisAbuseContact() {
persistResource(
AppEngineRule.makeRegistrarContact1()