-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinvalid-logins.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Copy pathinvalid-logins.json
File metadata and controls
38 lines (38 loc) · 1.12 KB
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
[
{
"username": "standard_user",
"password": "not_the_password",
"description": "valid username, incorrect password",
"expectedError": "Epic sadface: Username and password do not match any user in this service"
},
{
"username": "no_such_user",
"password": "secret_sauce",
"description": "username that was never registered",
"expectedError": "Epic sadface: Username and password do not match any user in this service"
},
{
"username": "",
"password": "secret_sauce",
"description": "username omitted",
"expectedError": "Epic sadface: Username is required"
},
{
"username": "standard_user",
"password": "",
"description": "password omitted",
"expectedError": "Epic sadface: Password is required"
},
{
"username": "",
"password": "",
"description": "both fields omitted",
"expectedError": "Epic sadface: Username is required"
},
{
"username": "STANDARD_USER",
"password": "secret_sauce",
"description": "username in the wrong case",
"expectedError": "Epic sadface: Username and password do not match any user in this service"
}
]