[go: up one dir, main page]

attohttpc 0.6.0

Small and lightweight HTTP client
Documentation
use std::net::TcpStream;
use std::thread;
use std::time::{Duration, Instant};

use attohttpc::ErrorKind;
use lazy_static::lazy_static;
use rouille::Response;

lazy_static! {
    static ref STARTED: bool = {
        thread::spawn(move || {
            rouille::start_server("localhost:55123", move |_| Response::redirect_301("/"));
        });

        let start = Instant::now();
        let timeout = Duration::from_secs(10);

        // Wait until server is ready. 10s timeout in case of error creating server.
        while TcpStream::connect(("localhost", 55123)).is_err() {
            if start.elapsed() > timeout {
                panic!("time out in server creation");
            }
            thread::sleep(Duration::from_millis(100));
        }

        true
    };
}

#[test]
fn test_redirection_default() {
    let _ = *STARTED;

    match attohttpc::get("http://localhost:55123/").send() {
        Err(err) => match err.kind() {
            ErrorKind::TooManyRedirections => (),
            _ => panic!(),
        },
        _ => panic!(),
    }
}

#[test]
fn test_redirection_0() {
    let _ = *STARTED;

    match attohttpc::get("http://localhost:55123/").max_redirections(0).send() {
        Err(err) => match err.kind() {
            ErrorKind::TooManyRedirections => (),
            _ => panic!(),
        },
        _ => panic!(),
    }
}

#[test]
fn test_redirection_disallowed() {
    let _ = *STARTED;

    let resp = attohttpc::get("http://localhost:55123/")
        .follow_redirects(false)
        .send()
        .unwrap();

    assert!(resp.status().is_redirection());
}