/vt-password/tags/vt-password-3.1.1/src/test/java/edu/vt/middleware/password/WhitespaceRuleTest.java

http://vt-middleware.googlecode.com/ · Java · 81 lines · 39 code · 12 blank · 30 comment · 1 complexity · 85fcbf0fe49cc08476ae557f2a18b18d MD5 · raw file

  1. /*
  2. $Id: WhitespaceRuleTest.java 1950 2011-05-04 16:29:29Z dfisher $
  3. Copyright (C) 2003-2011 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 1950 $
  9. Updated: $Date: 2011-05-04 18:29:29 +0200 (Wed, 04 May 2011) $
  10. */
  11. package edu.vt.middleware.password;
  12. import org.testng.AssertJUnit;
  13. import org.testng.annotations.DataProvider;
  14. import org.testng.annotations.Test;
  15. /**
  16. * Unit test for {@link WhitespaceRule}.
  17. *
  18. * @author Middleware Services
  19. * @version $Revision: 1950 $
  20. */
  21. public class WhitespaceRuleTest extends AbstractRuleTest
  22. {
  23. /** Test password. */
  24. private static final Password VALID_PASS = new Password("AycDPdsyz");
  25. /** Test password. */
  26. private static final Password SPACE_PASS = new Password(
  27. "AycD" + " " + "Pdsyz");
  28. /** Test password. */
  29. private static final Password TAB_PASS = new Password(
  30. "Ayc" + "\t" + "DPdsyz");
  31. /** Test password. */
  32. private static final Password LINE_SEP_PASS = new Password(
  33. "AycDPs" + System.getProperty("line.separator") + "yz");
  34. /** For testing. */
  35. private WhitespaceRule rule = new WhitespaceRule();
  36. /**
  37. * @return Test data.
  38. *
  39. * @throws Exception On test data generation failure.
  40. */
  41. @DataProvider(name = "passwords")
  42. public Object[][] passwords()
  43. throws Exception
  44. {
  45. return
  46. new Object[][] {
  47. {rule, new PasswordData(VALID_PASS), true, },
  48. {rule, new PasswordData(SPACE_PASS), false, },
  49. {rule, new PasswordData(TAB_PASS), false, },
  50. {rule, new PasswordData(LINE_SEP_PASS), false, },
  51. };
  52. }
  53. /** @throws Exception On test failure. */
  54. @Test(groups = {"passtest"})
  55. public void resolveMessage()
  56. throws Exception
  57. {
  58. final RuleResult result = rule.validate(new PasswordData(SPACE_PASS));
  59. for (RuleResultDetail detail : result.getDetails()) {
  60. AssertJUnit.assertEquals(
  61. "Password cannot contain whitespace characters.",
  62. DEFAULT_RESOLVER.resolve(detail));
  63. AssertJUnit.assertNotNull(EMPTY_RESOLVER.resolve(detail));
  64. }
  65. }
  66. }