-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.rs
146 lines (129 loc) · 3.79 KB
/
tasks.rs
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
use futures::StreamExt;
use std::collections::HashMap;
use crate::async_trait;
use crate::bollard::container::LogsOptions;
use crate::bollard::exec::{CreateExecOptions, StartExecResults};
use crate::task::Task;
use crate::{ContainerHandle, TestcontainerError};
#[derive(Debug)]
pub struct MatchLogOutput {
patterns: Vec<String>,
}
impl MatchLogOutput {
pub fn containing<P: Into<String>>(pattern: P) -> MatchLogOutput {
MatchLogOutput {
patterns: vec![pattern.into()],
}
}
pub fn containing_in_order<I, P>(patterns: I) -> MatchLogOutput
where
I: IntoIterator<Item = P>,
P: Into<String>,
{
MatchLogOutput {
patterns: patterns.into_iter().map(Into::into).collect(),
}
}
}
#[async_trait]
impl Task for MatchLogOutput {
type Return = ();
async fn execute(&self, handle: &ContainerHandle) -> Result<Self::Return, TestcontainerError> {
let log_options = Some(LogsOptions {
follow: true,
stdout: true,
stderr: true,
..Default::default()
});
let mut logstream = handle.docker().logs::<String>(handle.id(), log_options);
let mut remaining_patterns = self.patterns.iter();
let mut current_pattern = remaining_patterns.next();
while let Some(output) = logstream.next().await {
if let Ok(line) = output {
if let Some(pattern) = current_pattern {
if line.to_string().contains(pattern) {
current_pattern = remaining_patterns.next();
if current_pattern.is_none() {
break;
}
}
} else {
break;
}
} else {
break;
}
}
Ok(())
}
}
#[derive(Debug)]
pub struct Execute {
cmd: Vec<String>,
env: HashMap<String, Option<String>>,
required_status: Option<u64>,
}
impl Execute {
pub fn command<I, T>(command: I) -> Execute
where
I: IntoIterator<Item = T>,
T: Into<String>,
{
Execute {
cmd: command.into_iter().map(Into::into).collect(),
env: Default::default(),
required_status: None,
}
}
pub fn with_env_variable<K: Into<String>, V: Into<String>>(
mut self,
key: K,
value: Option<V>,
) -> Self {
self.env.insert(key.into(), value.map(Into::into));
self
}
pub fn with_required_status(mut self, required_status: u64) -> Execute {
self.required_status = Some(required_status);
self
}
}
#[async_trait]
impl Task for Execute {
type Return = ();
async fn execute(&self, handle: &ContainerHandle) -> Result<Self::Return, TestcontainerError> {
let env: Vec<String> = self
.env
.iter()
.map(|(k, v)| {
if let Some(v) = v {
format!("{k}={v}")
} else {
k.to_owned()
}
})
.collect();
let exec = handle
.docker()
.create_exec(
handle.id(),
CreateExecOptions {
attach_stdout: Some(true),
attach_stderr: Some(true),
cmd: Some(self.cmd.clone()),
env: Some(env),
..Default::default()
},
)
.await?
.id;
if let StartExecResults::Attached { mut output, .. } =
handle.docker().start_exec(&exec, None).await?
{
while let Some(Ok(msg)) = output.next().await {
print!("{msg}");
}
}
Ok(())
}
}