/portal-impl/test/integration/com/liferay/portal/security/auth/EmailAddressValidatorFactoryTest.java

http://github.com/liferay/liferay-portal · Java · 54 lines · 30 code · 8 blank · 16 comment · 0 complexity · 42543ac0ff0b786becdb1ac2913ed202 MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU Lesser General Public License as published by the Free
  6. * Software Foundation; either version 2.1 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  12. * details.
  13. */
  14. package com.liferay.portal.security.auth;
  15. import com.liferay.portal.kernel.security.auth.EmailAddressValidator;
  16. import com.liferay.portal.kernel.test.rule.AggregateTestRule;
  17. import com.liferay.portal.test.rule.LiferayIntegrationTestRule;
  18. import com.liferay.portal.test.rule.SyntheticBundleRule;
  19. import org.junit.Assert;
  20. import org.junit.ClassRule;
  21. import org.junit.Rule;
  22. import org.junit.Test;
  23. /**
  24. * @author Peter Fellwock
  25. */
  26. public class EmailAddressValidatorFactoryTest {
  27. @ClassRule
  28. @Rule
  29. public static final AggregateTestRule aggregateTestRule =
  30. new AggregateTestRule(
  31. new LiferayIntegrationTestRule(),
  32. new SyntheticBundleRule("bundle.emailaddressvalidatorfactory"));
  33. @Test
  34. public void testValidate() {
  35. EmailAddressValidator emailAddressValidator =
  36. EmailAddressValidatorFactory.getInstance();
  37. Assert.assertTrue(
  38. emailAddressValidator.validate(
  39. 1, "TestEmailAddressValidator@liferay-test.com"));
  40. Assert.assertFalse(
  41. emailAddressValidator.validate(
  42. 2, "TestEmailAddressValidator@liferay-test.com"));
  43. Assert.assertFalse(
  44. emailAddressValidator.validate(1, "not@liferay-test.com"));
  45. }
  46. }