/vt-password/tags/vt-password-3.0.1/src/test/java/edu/vt/middleware/password/SequenceRulesPerfTest.java
http://vt-middleware.googlecode.com/ · Java · 85 lines · 46 code · 7 blank · 32 comment · 3 complexity · e7efc0ee9861e7081988ffa3a9d1b5b7 MD5 · raw file
- /*
- $Id: SequenceRulesPerfTest.java 1841 2011-02-25 19:05:47Z dfisher $
- Copyright (C) 2003-2011 Virginia Tech.
- All rights reserved.
- SEE LICENSE FOR MORE INFORMATION
- Author: Middleware Services
- Email: middleware@vt.edu
- Version: $Revision: 1841 $
- Updated: $Date: 2011-02-25 20:05:47 +0100 (Fri, 25 Feb 2011) $
- */
- package edu.vt.middleware.password;
- import java.util.UUID;
- import org.testng.annotations.DataProvider;
- import org.testng.annotations.Test;
- /**
- * Reports the time it takes to execute many password validations using sequence
- * rules.
- *
- * @author Middleware Services
- * @version $Revision: 1841 $
- */
- public class SequenceRulesPerfTest
- {
- /**
- * Gets performance test data.
- *
- * @return Array of test parameters including rules to test and number of
- * iterations for which rule should be evaluated on a random password.
- */
- @DataProvider(name = "perf-data")
- public Object[][] perfData()
- {
- return
- new Object[][] {
- new Object[] {
- new Rule[] {
- new AlphabeticalSequenceRule(),
- new NumericalSequenceRule(),
- new QwertySequenceRule(),
- },
- 5000,
- },
- };
- }
- /**
- * Executes the performance test on the given rules.
- *
- * @param rules Password validation rules to test.
- * @param iterations Number of iterations of each test.
- */
- @Test(
- groups = {"seqperftest"},
- dataProvider = "perf-data",
- timeOut = 60000
- )
- public void execute(final Rule[] rules, final int iterations)
- {
- final PasswordData[] passwords = new PasswordData[iterations];
- for (int i = 0; i < iterations; i++) {
- passwords[i] = new PasswordData();
- passwords[i].setPassword(new Password(UUID.randomUUID().toString()));
- }
- final long t = System.currentTimeMillis();
- for (PasswordData password : passwords) {
- for (Rule rule : rules) {
- rule.validate(password);
- }
- }
- System.out.println(
- String.format(
- "%s:: execution completed in %s ms",
- this.getClass().getName(),
- System.currentTimeMillis() - t));
- }
- }