]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/data/passwords/class.json
198c90f2ec72fc3b7d6c02939a5c954f5e41b444
[kerberos/krb5-strength.git] / tests / data / passwords / class.json
1 [
2     {
3         "name": "non-ASCII characters",
4         "principal": "test@EXAMPLE.ORG",
5         "password": "عربى",
6         "code": "KADM5_PASS_Q_GENERIC",
7         "error": "password contains non-ASCII or control characters"
8     },
9     {
10         "name": "control character",
11         "principal": "test@EXAMPLE.ORG",
12         "password": "ouchD\u0001artetch",
13         "code": "KADM5_PASS_Q_GENERIC",
14         "error": "password contains non-ASCII or control characters"
15     },
16     {
17         "name": "tab",
18         "principal": "test@EXAMPLE.ORG",
19         "password": "\touchDartetch",
20         "code": "KADM5_PASS_Q_GENERIC",
21         "error": "password contains non-ASCII or control characters"
22     },
23     {
24         "name": "all alphabetic",
25         "principal": "test@EXAMPLE.ORG",
26         "password": "ouchDartetch",
27         "code": "KADM5_PASS_Q_CLASS",
28         "error": "password is only letters and spaces"
29     },
30     {
31         "name": "all alphabetic with spaces",
32         "principal": "test@EXAMPLE.ORG",
33         "password": "the perils of all good dogs",
34         "code": "KADM5_PASS_Q_CLASS",
35         "error": "password is only letters and spaces"
36     },
37     {
38         "name": "punctuation",
39         "principal": "test@EXAMPLE.ORG",
40         "password": "the perils of all good dogs!"
41     },
42     {
43         "name": "digits",
44         "principal": "test@EXAMPLE.ORG",
45         "password": "the perils 0of all good dogs"
46     }
47 ]