Package org.owasp.passfault.dictionary

Source Code of org.owasp.passfault.dictionary.MisspellingFinderInFileTest

/* ©Copyright 2011 Cameron Morris
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*     http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.owasp.passfault.dictionary;

import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
import static org.junit.Assert.*;
import org.junit.*;
import org.owasp.passfault.MockPasswordResults;
import org.owasp.passfault.PasswordPattern;

public class MisspellingFinderInFileTest {

  private static DictionaryPatternsFinder finder;

  @BeforeClass
  public static void setUpBeforeClass() throws Exception {
    FileDictionary dictionary = FileDictionary.newInstance(TestWords.getTestFile(), "tiny-lower");
    finder = new DictionaryPatternsFinder(dictionary, new MisspellingStrategy(1));
  }

  @AfterClass
  public static void tearDownAfterClass() throws Exception {
  }

  @Before
  public void setUp() throws Exception {
  }

  @After
  public void tearDown() throws Exception {
  }

  @Test
  public void findWord() throws Exception {
    System.out.println("findWord");
    MockPasswordResults p = new MockPasswordResults("passwerd");
    finder.analyze(p);
    List<PasswordPattern> patterns = p.getFoundPatterns();
    Collection<PasswordPattern> oneLength = getPatternsOfALength(patterns, 8);
    assertEquals(1, oneLength.size());
  }

  @Test
  public void findWord_garbageinfront() throws Exception {
    System.out.println("findWord_garbageinfront");
    MockPasswordResults p = new MockPasswordResults("1234passwerd");
    finder.analyze(p);
    List<PasswordPattern> patterns = p.getFoundPatterns();
    Collection<PasswordPattern> oneLength = getPatternsOfALength(patterns, 8);
    assertEquals(1, oneLength.size());
  }

  @Test
  public void findWord_garbageinback() throws Exception {
    {
      System.out.println("findWord_garbageinback");
      MockPasswordResults p = new MockPasswordResults("wisp");
      finder.analyze(p);
      assertTrue(p.getPossiblePatternCount() > 1);
    }
    {
      MockPasswordResults p = new MockPasswordResults("wisp1");
      finder.analyze(p);
      assertTrue(p.getPossiblePatternCount() > 1);
    }
    {
      MockPasswordResults p = new MockPasswordResults("wisp12");
      finder.analyze(p);
      assertTrue(p.getPossiblePatternCount() > 1);
    }
    {
      MockPasswordResults p = new MockPasswordResults("wisp123");
      finder.analyze(p);
      assertTrue(p.getPossiblePatternCount() > 1);
    }
  }

  @Test
  public void findNonWord() throws Exception {
    System.out.println("findNonWord");
    MockPasswordResults p = new MockPasswordResults("qqq");
    finder.analyze(p);
    assertEquals(0, p.getPossiblePatternCount());
  }

  @Test
  public void findMultiWords() throws Exception {
    System.out.println("findMultiWords");
    MockPasswordResults p = new MockPasswordResults("passwerdpasswerd");//dictionary
    finder.analyze(p);
    List<PasswordPattern> patterns = p.getFoundPatterns();
    Collection<PasswordPattern> oneLength = getPatternsOfALength(patterns, 8);
    assertEquals(2, oneLength.size());
  }

  @Test
  public void testLength() throws Exception {
    System.out.println("findMultiWords");
    MockPasswordResults p = new MockPasswordResults("passwerd");
    finder.analyze(p);
    List<PasswordPattern> patterns = p.getFoundPatterns();
    Collection<PasswordPattern> oneLength = getPatternsOfALength(patterns, 8);
    assertEquals(1, oneLength.size());
  }

  public Collection<PasswordPattern> getPatternsOfALength(Collection<PasswordPattern> patterns, int length) {
    LinkedList<PasswordPattern> toReturn = new LinkedList<PasswordPattern>();

    for (PasswordPattern pattern : patterns) {
      if (pattern.getLength() == length) {
        toReturn.add(pattern);
      }
    }
    return toReturn;
  }
}
TOP

Related Classes of org.owasp.passfault.dictionary.MisspellingFinderInFileTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.