/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

  1. /*
  2. $Id: SequenceRulesPerfTest.java 1841 2011-02-25 19:05:47Z 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: 1841 $
  9. Updated: $Date: 2011-02-25 20:05:47 +0100 (Fri, 25 Feb 2011) $
  10. */
  11. package edu.vt.middleware.password;
  12. import java.util.UUID;
  13. import org.testng.annotations.DataProvider;
  14. import org.testng.annotations.Test;
  15. /**
  16. * Reports the time it takes to execute many password validations using sequence
  17. * rules.
  18. *
  19. * @author Middleware Services
  20. * @version $Revision: 1841 $
  21. */
  22. public class SequenceRulesPerfTest
  23. {
  24. /**
  25. * Gets performance test data.
  26. *
  27. * @return Array of test parameters including rules to test and number of
  28. * iterations for which rule should be evaluated on a random password.
  29. */
  30. @DataProvider(name = "perf-data")
  31. public Object[][] perfData()
  32. {
  33. return
  34. new Object[][] {
  35. new Object[] {
  36. new Rule[] {
  37. new AlphabeticalSequenceRule(),
  38. new NumericalSequenceRule(),
  39. new QwertySequenceRule(),
  40. },
  41. 5000,
  42. },
  43. };
  44. }
  45. /**
  46. * Executes the performance test on the given rules.
  47. *
  48. * @param rules Password validation rules to test.
  49. * @param iterations Number of iterations of each test.
  50. */
  51. @Test(
  52. groups = {"seqperftest"},
  53. dataProvider = "perf-data",
  54. timeOut = 60000
  55. )
  56. public void execute(final Rule[] rules, final int iterations)
  57. {
  58. final PasswordData[] passwords = new PasswordData[iterations];
  59. for (int i = 0; i < iterations; i++) {
  60. passwords[i] = new PasswordData();
  61. passwords[i].setPassword(new Password(UUID.randomUUID().toString()));
  62. }
  63. final long t = System.currentTimeMillis();
  64. for (PasswordData password : passwords) {
  65. for (Rule rule : rules) {
  66. rule.validate(password);
  67. }
  68. }
  69. System.out.println(
  70. String.format(
  71. "%s:: execution completed in %s ms",
  72. this.getClass().getName(),
  73. System.currentTimeMillis() - t));
  74. }
  75. }