/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
- /*
- $Id: WhitespaceRuleTest.java 1950 2011-05-04 16:29:29Z dfisher $
- Copyright (C) 2003-2011 Virginia Tech.
- All rights reserved.
- SEE LICENSE FOR MORE INFORMATION
- Author: Middleware Services
- Email: middleware@vt.edu
- Version: $Revision: 1950 $
- Updated: $Date: 2011-05-04 18:29:29 +0200 (Wed, 04 May 2011) $
- */
- package edu.vt.middleware.password;
- import org.testng.AssertJUnit;
- import org.testng.annotations.DataProvider;
- import org.testng.annotations.Test;
- /**
- * Unit test for {@link WhitespaceRule}.
- *
- * @author Middleware Services
- * @version $Revision: 1950 $
- */
- public class WhitespaceRuleTest extends AbstractRuleTest
- {
- /** Test password. */
- private static final Password VALID_PASS = new Password("AycDPdsyz");
- /** Test password. */
- private static final Password SPACE_PASS = new Password(
- "AycD" + " " + "Pdsyz");
- /** Test password. */
- private static final Password TAB_PASS = new Password(
- "Ayc" + "\t" + "DPdsyz");
- /** Test password. */
- private static final Password LINE_SEP_PASS = new Password(
- "AycDPs" + System.getProperty("line.separator") + "yz");
- /** For testing. */
- private WhitespaceRule rule = new WhitespaceRule();
- /**
- * @return Test data.
- *
- * @throws Exception On test data generation failure.
- */
- @DataProvider(name = "passwords")
- public Object[][] passwords()
- throws Exception
- {
- return
- new Object[][] {
- {rule, new PasswordData(VALID_PASS), true, },
- {rule, new PasswordData(SPACE_PASS), false, },
- {rule, new PasswordData(TAB_PASS), false, },
- {rule, new PasswordData(LINE_SEP_PASS), false, },
- };
- }
- /** @throws Exception On test failure. */
- @Test(groups = {"passtest"})
- public void resolveMessage()
- throws Exception
- {
- final RuleResult result = rule.validate(new PasswordData(SPACE_PASS));
- for (RuleResultDetail detail : result.getDetails()) {
- AssertJUnit.assertEquals(
- "Password cannot contain whitespace characters.",
- DEFAULT_RESOLVER.resolve(detail));
- AssertJUnit.assertNotNull(EMPTY_RESOLVER.resolve(detail));
- }
- }
- }