aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers/mod.rs
blob: 4fee8df71e331d4dbbfc9612b46ad3a3ed6e31c9 (plain) (blame)
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
#![allow(dead_code)]

use std::io::BufRead as _;

pub struct Output<'a> {
    pty: std::io::BufReader<&'a pty_process::blocking::Pty>,
}

impl<'a> Output<'a> {
    fn new(pty: &'a pty_process::blocking::Pty) -> Self {
        Self {
            pty: std::io::BufReader::new(pty),
        }
    }
}

impl<'a> Iterator for Output<'a> {
    type Item = String;

    fn next(&mut self) -> Option<Self::Item> {
        let mut buf = vec![];
        nix::unistd::alarm::set(5);
        self.pty.read_until(b'\n', &mut buf).unwrap();
        nix::unistd::alarm::cancel();
        Some(std::string::String::from_utf8(buf).unwrap())
    }
}

pub fn output(pty: &pty_process::blocking::Pty) -> Output<'_> {
    Output::new(pty)
}

#[cfg(feature = "async")]
pub fn output_async(
    pty: &pty_process::Pty,
) -> std::pin::Pin<Box<dyn futures::stream::Stream<Item = String> + '_>> {
    use async_std::io::prelude::BufReadExt as _;
    use futures::FutureExt as _;

    let pty = async_std::io::BufReader::new(pty);
    Box::pin(futures::stream::unfold(pty, |mut pty| async move {
        Some((
            async_std::future::timeout(
                std::time::Duration::from_secs(5),
                async {
                    let mut buf = vec![];
                    pty.read_until(b'\n', &mut buf).await.unwrap();
                    std::string::String::from_utf8(buf).unwrap()
                },
            )
            .map(|x| x.unwrap())
            .await,
            pty,
        ))
    }))
}