-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLetterRepetitionCheckTest.cs
95 lines (84 loc) · 3.34 KB
/
LetterRepetitionCheckTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using EzPasswordValidator.Checks;
using EzPasswordValidator.Validators;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace EzPasswordValidator.Tests
{
[TestClass]
public class LetterRepetitionCheckTest
{
private PasswordValidator _validator;
private LetterRepetitionCheck _check;
[TestInitialize]
public void Setup()
{
_validator = new PasswordValidator();
_validator.AddCheck(CheckTypes.LetterRepetition);
_check = new LetterRepetitionCheck();
}
/// <summary> This test assumes that the default repetition length is 4. </summary>
[DataRow("testAAA")]
[DataRow("teAAAst")]
[DataRow("AAAtest")]
[DataRow("ØØØtest")] //Non ISO basic latin test case
[DataTestMethod]
public void WhenPasswordContainsTheSameLetterThreeTimesInARowThenPasswordIsValid(string psw) =>
Assert.IsTrue(_check.Execute(psw));
/// <summary> This test assumes that the default repetition length is 4. </summary>
[DataRow("Aaaa@2022")]
[DataRow("aaaA@2022")]
[DataRow("testAAAA")]
[DataRow("testAaaa")]
[DataRow("testaaaA")]
[DataRow("aAaatest")]
[DataRow("teAAAAAst")]
[DataRow("AAAAtesBBBt")]
[DataRow("ØØØØtest")] //Non ISO basic latin test case
[DataTestMethod]
public void WhenPasswordContainsTheSameLetterFourOrMoreTimesInARowThenPasswordIsInvalid(string psw) =>
Assert.IsFalse(_check.Execute(psw));
[DataRow("testAAAAA")]
[DataRow("teYYYYYst")]
[DataRow("TTTTTTTTtest")]
[DataRow("ÅÅÅÅÅtest")] //Non ISO basic latin test case
[DataTestMethod]
public void WhenPasswordContainsRepetitionOfFiveOrLongerWhenSetToFiveThenPasswordIsInvalid(string psw)
{
_check.RepetitionLength = 5;
Assert.IsFalse(_check.Execute(psw));
}
[DataRow("testAAAA")]
[DataRow("teYst")]
[DataRow("TTTTtest")]
[DataRow("ÅÅtest")] //Non ISO basic latin test case
[DataTestMethod]
public void WhenPasswordContainsRepetitionOfLessThanFiveCharsWhenSetToFiveThenPasswordIsValid(string psw)
{
_check.RepetitionLength = 5;
Assert.IsTrue(_check.Execute(psw));
}
[TestMethod]
public void LetterRepetitionDefaultsToFourWhenUsingTheValidator()
{
Assert.IsTrue(_validator.LetterRepetitionLength == 4);
}
[TestMethod]
public void WhenUsingTheValidatorThenPasswordsWithFourLetterRepetitionsFail()
{
const string pswWithFourRepetitions = "testGGGG";
Assert.IsFalse(_validator.Validate(pswWithFourRepetitions));
}
[TestMethod]
public void WhenUsingTheValidatorThenPasswordsWithLessThanFourLetterRepetitionsPass()
{
const string pswWithThreeRepetitions = "testGGG";
Assert.IsTrue(_validator.Validate(pswWithThreeRepetitions));
}
[TestMethod]
public void PasswordWithFourRepetitionsAreValidWhenSettingRepetitionLengthToFive()
{
const string pswWithFourRepetitions = "testGGGG";
_validator.LetterRepetitionLength = 5;
Assert.IsTrue(_validator.Validate(pswWithFourRepetitions));
}
}
}