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
|
mod fixtures;
use fixtures::{server, server_no_stderr, Error, FILES};
use http::StatusCode;
use reqwest::blocking::Client;
use rstest::rstest;
use select::document::Document;
use select::predicate::Text;
#[rstest(
cli_auth_file_arg,
client_username,
client_password,
case("tests/data/auth1.txt", "joe", "123"),
case("tests/data/auth1.txt", "bob", "123"),
case("tests/data/auth1.txt", "bill", "")
)]
fn auth_file_accepts(
cli_auth_file_arg: &str,
client_username: &str,
client_password: &str,
) -> Result<(), Error> {
let server = server(&["--auth-file", cli_auth_file_arg]);
let client = Client::new();
let response = client
.get(server.url())
.basic_auth(client_username, Some(client_password))
.send()?;
let status_code = response.status();
assert_eq!(status_code, StatusCode::OK);
let body = response.error_for_status()?;
let parsed = Document::from_read(body)?;
for &file in FILES {
assert!(parsed.find(Text).any(|x| x.text() == file));
}
Ok(())
}
#[rstest(
cli_auth_file_arg,
client_username,
client_password,
case("tests/data/auth1.txt", "joe", "wrongpassword"),
case("tests/data/auth1.txt", "bob", ""),
case("tests/data/auth1.txt", "nonexistentuser", "wrongpassword")
)]
fn auth_file_rejects(
cli_auth_file_arg: &str,
client_username: &str,
client_password: &str,
) -> Result<(), Error> {
let server = server_no_stderr(&["--auth-file", cli_auth_file_arg]);
let client = Client::new();
let status = client
.get(server.url())
.basic_auth(client_username, Some(client_password))
.send()?
.status();
assert_eq!(status, StatusCode::UNAUTHORIZED);
Ok(())
}
|