aboutsummaryrefslogtreecommitdiffstats
path: root/tests/archive.rs
blob: c692d90f0604ca16111b366078ce2dd5ca2e58b5 (plain)
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
mod fixtures;

use assert_cmd::prelude::*;
use assert_fs::fixture::TempDir;
use fixtures::{port, tmpdir, Error};
use rstest::rstest;
use select::document::Document;
use select::predicate::Text;
use std::process::{Command, Stdio};
use std::thread::sleep;
use std::time::Duration;
use reqwest::StatusCode;

#[rstest]
fn archives_are_disabled(tmpdir: TempDir, port: u16) -> Result<(), Error> {
    let mut child = Command::cargo_bin("miniserve")?
        .arg(tmpdir.path())
        .arg("-p")
        .arg(port.to_string())
        .arg("-r")
        .stdout(Stdio::null())
        .spawn()?;

    sleep(Duration::from_secs(1));

    // Ensure the links to the archives are not present
    let body = reqwest::get(format!("http://localhost:{}", port).as_str())?.error_for_status()?;
    let parsed = Document::from_read(body)?;
    assert!(parsed.find(Text).all(|x| x.text() != "Download .tar.gz" && x.text() != "Download .tar"));
    
    // Try to download anyway, ensure it's forbidden
    assert_eq!(
        reqwest::get(
            format!("http://localhost:{}/?download=tar_gz", port).as_str())?
            .status(),
        StatusCode::FORBIDDEN);
    assert_eq!(
        reqwest::get(
            format!("http://localhost:{}/?download=tar", port).as_str())?
            .status(),
        StatusCode::FORBIDDEN);

    child.kill()?;

    Ok(())
}