-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontainer.rs
271 lines (228 loc) · 8.41 KB
/
container.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
use std::collections::HashMap;
use std::fmt::Debug;
use async_trait::async_trait;
use log::{error, info, warn};
use crate::bollard::container::{InspectContainerOptions, RemoveContainerOptions};
use crate::bollard::Docker;
pub use crate::errors::TestcontainerError;
use crate::{DropAction, ImageSettings, Qualifier, Task};
const TESTCONTAINERS_DROP_ACTION: &str = "TESTCONTAINERS_DROP_ACTION";
#[async_trait]
pub trait Container: Sized + Debug {
fn attach(handle: ContainerHandle, settings: ContainerSettings) -> Self;
fn handle(&self) -> &ContainerHandle;
fn handle_mut(&mut self) -> &mut ContainerHandle;
fn settings(&self) -> &ContainerSettings;
fn with_drop_action(mut self, drop_action: DropAction) -> Self {
self.handle_mut().set_drop_action(drop_action);
self
}
async fn host_port_for(&self, port: &str) -> Result<u16, TestcontainerError> {
let result = self
.handle()
.docker
.inspect_container(&self.handle().id, None::<InspectContainerOptions>)
.await?;
if let Some(network_settings) = result.network_settings {
if let Some(port_map) = network_settings.ports {
for pair in port_map.iter() {
if pair.0.starts_with(port) {
if let Some(bindings) = pair.1 {
if let Some(binding) = bindings.iter().next() {
return Ok(binding
.host_port
.as_ref()
.map(|port| {
port.parse::<u16>()
.expect("Docker ports are expected to be u16")
})
.unwrap());
}
} else {
return Err(TestcontainerError::UnexposedPort {
portspec: port.to_owned(),
});
}
}
}
}
}
Err(TestcontainerError::UndefinedPort {
portspec: port.to_owned(),
})
}
async fn execute<T, R>(&self, task: T) -> Result<R, TestcontainerError>
where
T: Into<Box<dyn Task<Return = R> + 'static + Send + Sync>>,
T: Send,
R: 'static + Send + Sync,
{
let task = task.into();
let result = task.execute(self.handle()).await?;
Ok(result)
}
}
#[derive(Debug)]
pub struct ContainerHandle {
id: String,
docker: Docker,
drop_action: DropAction,
}
impl ContainerHandle {
pub fn new(id: String, docker: Docker) -> ContainerHandle {
ContainerHandle {
id,
docker,
drop_action: Default::default(),
}
}
pub fn id(&self) -> &str {
self.id.as_str()
}
pub fn drop_action(&self) -> &DropAction {
&self.drop_action
}
pub fn set_drop_action(&mut self, drop_action: DropAction) -> &Self {
self.drop_action = drop_action;
self
}
pub fn with_drop_action(mut self, drop_action: DropAction) -> Self {
self.drop_action = drop_action;
self
}
pub fn docker(&self) -> &Docker {
&self.docker
}
}
impl Drop for ContainerHandle {
fn drop(&mut self) {
let mut drop_action = self.drop_action.clone();
if let Ok(value) = std::env::var(TESTCONTAINERS_DROP_ACTION) {
match value.to_lowercase().as_str() {
"remove" => drop_action = DropAction::Remove,
"retain" => drop_action = DropAction::Retain,
"stop" => drop_action = DropAction::Stop,
value => warn!(
"'{}' is not a valid value for {}",
value, TESTCONTAINERS_DROP_ACTION
),
}
}
match drop_action {
DropAction::Remove => {
let id = self.id.clone();
let docker = self.docker.clone();
let (sender, receiver) = std::sync::mpsc::channel();
std::thread::spawn(move || {
let rt = tokio::runtime::Runtime::new().unwrap();
rt.block_on(async {
info!("Removing container {}", &id[..12]);
let result = docker
.remove_container(
id.as_str(),
Some(RemoveContainerOptions {
force: true,
..Default::default()
}),
)
.await;
match result {
Ok(_) => {}
Err(error) => {
error!("Error removing container by id '{}': {error}", &id[..12]);
}
}
let _ = sender.send(());
});
});
let _ = receiver.recv();
}
DropAction::Retain => info!("Retaining container {}", &self.id[..12]),
DropAction::Stop => {
let id = self.id.clone();
let docker = self.docker.clone();
let (sender, receiver) = std::sync::mpsc::channel();
std::thread::spawn(move || {
let rt = tokio::runtime::Runtime::new().unwrap();
rt.block_on(async {
info!("Stopping container {id}");
let result = docker.stop_container(id.as_str(), None).await;
match result {
Ok(_) => {}
Err(error) => {
error!("Error stopping container by id '{}': {error}", &id[..12]);
}
}
let _ = sender.send(());
});
});
let _ = receiver.recv();
}
}
}
}
#[derive(Debug)]
pub struct ContainerSettings {
name: String,
qualifier: Qualifier,
env: HashMap<String, Option<String>>,
}
impl ContainerSettings {
pub fn name(&self) -> &str {
&self.name
}
pub fn fullname(&self) -> String {
match &self.qualifier {
Qualifier::Tag(tag) => format!("{}:{}", self.name, tag),
Qualifier::Digest(digest) => format!("{}@{}", self.name, digest),
}
}
pub fn qualifier(&self) -> &Qualifier {
&self.qualifier
}
pub fn environment(&self) -> &HashMap<String, Option<String>> {
&self.env
}
}
impl From<&ImageSettings> for ContainerSettings {
fn from(settings: &ImageSettings) -> Self {
ContainerSettings {
name: settings.name().to_owned(),
qualifier: settings.qualifier().clone(),
env: settings.environment().clone(),
}
}
}
#[async_trait]
pub trait ServiceContainer: Container {
fn internal_service_port(&self) -> &str;
async fn service_port(&self) -> Result<u16, TestcontainerError> {
self.host_port_for(self.internal_service_port()).await
}
}
#[async_trait]
pub trait AdminContainer: Container {
fn internal_admin_port(&self) -> &str;
async fn admin_port(&self) -> Result<u16, TestcontainerError> {
self.host_port_for(self.internal_admin_port()).await
}
}
#[async_trait]
pub trait DatabaseContainer: ServiceContainer {
async fn protocol(&self) -> Result<&str, TestcontainerError>;
async fn username(&self) -> Result<&str, TestcontainerError>;
async fn password(&self) -> Result<&str, TestcontainerError>;
async fn database(&self) -> Result<&str, TestcontainerError>;
async fn jdbc_url(&self) -> Result<String, TestcontainerError>;
async fn connect_cli(&self) -> Result<String, TestcontainerError>;
async fn connect_url(&self) -> Result<String, TestcontainerError> {
let username = self.username().await?;
let password = self.password().await?;
let protocol = self.protocol().await?;
let port = self.service_port().await?;
let database = self.database().await?;
Ok(format!(
"{protocol}://{username}:{password}@localhost:{port}/{database}"
))
}
}