sg481n | 43854a9 | 2017-08-03 17:27:34 -0400 | [diff] [blame] | 1 | # TC_PW1.21.1.NEG ASPR 1010 Passwords must include chars from 2 groupings, alpha, numeric and special |
| 2 | expect 406 |
| 3 | user cred add m12345@@[user.name].TC_PW1.test.com 12345678 |
| 4 | |
| 5 | # TC_PW1.21.2.NEG ASPR 1010 Passwords must include chars from 2 groupings, alpha, numeric and special |
| 6 | expect 406 |
| 7 | user cred add m12345@@[user.name].TC_PW1.test.com abcdefgh |
| 8 | |
| 9 | # TC_PW1.21.3.NEG ASPR 1010 Passwords must include chars from 2 groupings, alpha, numeric and special |
| 10 | expect 406 |
| 11 | user cred add m12345@@[user.name].TC_PW1.test.com "!@#%^()*" |
| 12 | |
| 13 | # TC_PW1.21.4.POS ASPR 1010 Passwords must include chars from 2 groupings, alpha, numeric and special |
| 14 | expect 201 |
| 15 | user cred add m12345@@[user.name].TC_PW1.test.com "!@#a%^()*" |
| 16 | |
| 17 | sleep @[NFR] |
| 18 | expect 200 |
| 19 | user cred del m12345@@[user.name].TC_PW1.test.com |
| 20 | |
| 21 | # TC_PW1.21.5.POS ASPR 1010 Passwords must include chars from 2 groupings, alpha, numeric and special |
| 22 | expect 201 |
| 23 | user cred add m12345@@[user.name].TC_PW1.test.com "!@#2%^()*" |
| 24 | |
| 25 | sleep @[NFR] |
| 26 | expect 200 |
| 27 | user cred del m12345@@[user.name].TC_PW1.test.com |
| 28 | |
| 29 | # TC_PW1.21.6.POS ASPR 1010 Passwords must include chars from 2 groupings, alpha, numeric and special |
| 30 | expect 201 |
| 31 | user cred add m12345@@[user.name].TC_PW1.test.com "abc123sd" |
| 32 | |
| 33 | sleep @[NFR] |
| 34 | expect 200 |
| 35 | user cred del m12345@@[user.name].TC_PW1.test.com |
| 36 | |
| 37 | # TC_PW1.21.10.NEG ASPR 1010 Passwords cannot be the same as the User ID |
| 38 | expect 406 |
| 39 | user cred add m12345@@[user.name].TC_PW1.test.com m12345 |
| 40 | |