forked from testcontainers/testcontainers-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_ext.rs
More file actions
418 lines (352 loc) · 14.4 KB
/
image_ext.rs
File metadata and controls
418 lines (352 loc) · 14.4 KB
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
use std::time::Duration;
use bollard_stubs::models::ResourcesUlimits;
use crate::{
core::{
copy::{CopyDataSource, CopyToContainer},
logs::consumer::LogConsumer,
CgroupnsMode, ContainerPort, Host, Mount, PortMapping,
},
ContainerRequest, Image,
};
#[cfg(feature = "reusable-containers")]
#[derive(Eq, Copy, Clone, Debug, Default, PartialEq)]
pub enum ReuseDirective {
#[default]
Never,
Always,
CurrentSession,
}
#[cfg(feature = "reusable-containers")]
impl std::fmt::Display for ReuseDirective {
fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
formatter.write_str(match self {
Self::Never => "never",
Self::Always => "always",
Self::CurrentSession => "current-session",
})
}
}
/// Represents an extension for the [`Image`] trait.
/// Allows to override image defaults and container configuration.
pub trait ImageExt<I: Image> {
/// Returns a new [`ContainerRequest`] with the specified (overridden) `CMD` ([`Image::cmd`]).
///
/// # Examples
/// ```rust,no_run
/// use testcontainers::{GenericImage, ImageExt};
///
/// let image = GenericImage::new("image", "tag");
/// let cmd = ["arg1", "arg2"];
/// let overridden_cmd = image.clone().with_cmd(cmd);
///
/// assert!(overridden_cmd.cmd().eq(cmd));
///
/// let another_container_req = image.with_cmd(cmd);
///
/// assert!(another_container_req.cmd().eq(overridden_cmd.cmd()));
/// ```
fn with_cmd(self, cmd: impl IntoIterator<Item = impl Into<String>>) -> ContainerRequest<I>;
/// Overrides the fully qualified image name (consists of `{domain}/{owner}/{image}`).
/// Can be used to specify a custom registry or owner.
fn with_name(self, name: impl Into<String>) -> ContainerRequest<I>;
/// Overrides the image tag.
///
/// There is no guarantee that the specified tag for an image would result in a
/// running container. Users of this API are advised to use this at their own risk.
fn with_tag(self, tag: impl Into<String>) -> ContainerRequest<I>;
/// Sets the container name.
fn with_container_name(self, name: impl Into<String>) -> ContainerRequest<I>;
/// Sets the network the container will be connected to.
fn with_network(self, network: impl Into<String>) -> ContainerRequest<I>;
/// Adds the specified label to the container.
///
/// **Note**: all keys in the `org.testcontainers.*` namespace should be regarded
/// as reserved by `testcontainers` internally, and should not be expected or relied
/// upon to be applied correctly if supplied as a value for `key`.
fn with_label(self, key: impl Into<String>, value: impl Into<String>) -> ContainerRequest<I>;
/// Adds the specified labels to the container.
///
/// **Note**: all keys in the `org.testcontainers.*` namespace should be regarded
/// as reserved by `testcontainers` internally, and should not be expected or relied
/// upon to be applied correctly if they are included in `labels`.
fn with_labels(
self,
labels: impl IntoIterator<Item = (impl Into<String>, impl Into<String>)>,
) -> ContainerRequest<I>;
/// Adds an environment variable to the container.
fn with_env_var(self, name: impl Into<String>, value: impl Into<String>)
-> ContainerRequest<I>;
/// Adds a host to the container.
fn with_host(self, key: impl Into<String>, value: impl Into<Host>) -> ContainerRequest<I>;
/// Adds a mount to the container.
fn with_mount(self, mount: impl Into<Mount>) -> ContainerRequest<I>;
/// Copies some source into the container as file
fn with_copy_to(
self,
target: impl Into<String>,
source: impl Into<CopyDataSource>,
) -> ContainerRequest<I>;
/// Adds a port mapping to the container, mapping the host port to the container's internal port.
///
/// # Examples
/// ```rust,no_run
/// use testcontainers::{GenericImage, ImageExt};
/// use testcontainers::core::IntoContainerPort;
///
/// let image = GenericImage::new("image", "tag").with_mapped_port(8080, 80.tcp());
/// ```
fn with_mapped_port(self, host_port: u16, container_port: ContainerPort)
-> ContainerRequest<I>;
/// Adds a resource ulimit to the container.
///
/// # Examples
/// ```rust,no_run
/// use testcontainers::{GenericImage, ImageExt};
///
/// let image = GenericImage::new("image", "tag").with_ulimit("nofile", 65536, Some(65536));
/// ```
fn with_ulimit(self, name: &str, soft: i64, hard: Option<i64>) -> ContainerRequest<I>;
/// Sets the container to run in privileged mode.
fn with_privileged(self, privileged: bool) -> ContainerRequest<I>;
/// Adds the capabilities to the container
fn with_cap_add(self, capability: impl Into<String>) -> ContainerRequest<I>;
/// Drops the capabilities from the container's capabilities
fn with_cap_drop(self, capability: impl Into<String>) -> ContainerRequest<I>;
/// cgroup namespace mode for the container. Possible values are:
/// - [`CgroupnsMode::Private`]: the container runs in its own private cgroup namespace
/// - [`CgroupnsMode::Host`]: use the host system's cgroup namespace
///
/// If not specified, the daemon default is used, which can either be `\"private\"` or `\"host\"`, depending on daemon version, kernel support and configuration.
fn with_cgroupns_mode(self, cgroupns_mode: CgroupnsMode) -> ContainerRequest<I>;
/// Sets the usernamespace mode for the container when usernamespace remapping option is enabled.
fn with_userns_mode(self, userns_mode: &str) -> ContainerRequest<I>;
/// Sets the shared memory size in bytes
fn with_shm_size(self, bytes: u64) -> ContainerRequest<I>;
/// Sets the startup timeout for the container. The default is 60 seconds.
fn with_startup_timeout(self, timeout: Duration) -> ContainerRequest<I>;
/// Sets the working directory. The default is defined by the underlying image, which in turn may default to `/`.
fn with_working_dir(self, working_dir: impl Into<String>) -> ContainerRequest<I>;
/// Adds the log consumer to the container.
///
/// Allows to follow the container logs for the whole lifecycle of the container, starting from the creation.
fn with_log_consumer(self, log_consumer: impl LogConsumer + 'static) -> ContainerRequest<I>;
/// Flag the container as being exempt from the default `testcontainers` remove-on-drop lifecycle,
/// indicating that the container should be kept running, and that executions with the same configuration
/// reuse it instead of starting a "fresh" container instance.
///
/// **NOTE:** Reusable Containers is an experimental feature, and its behavior is therefore subject
/// to change. Containers marked as `reuse` **_will not_** be stopped or cleaned up when their associated
/// `Container` or `ContainerAsync` is dropped.
#[cfg(feature = "reusable-containers")]
fn with_reuse(self, reuse: ReuseDirective) -> ContainerRequest<I>;
/// Sets the user that commands are run as inside the container.
fn with_user(self, user: impl Into<String>) -> ContainerRequest<I>;
/// Sets the container's root filesystem to be mounted as read-only
fn with_readonly_rootfs(self, readonly_rootfs: bool) -> ContainerRequest<I>;
/// Sets security options for the container
fn with_security_opt(self, security_opt: impl Into<String>) -> ContainerRequest<I>;
}
/// Implements the [`ImageExt`] trait for the every type that can be converted into a [`ContainerRequest`].
impl<RI: Into<ContainerRequest<I>>, I: Image> ImageExt<I> for RI {
fn with_cmd(self, cmd: impl IntoIterator<Item = impl Into<String>>) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
overridden_cmd: cmd.into_iter().map(Into::into).collect(),
..container_req
}
}
fn with_name(self, name: impl Into<String>) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
image_name: Some(name.into()),
..container_req
}
}
fn with_tag(self, tag: impl Into<String>) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
image_tag: Some(tag.into()),
..container_req
}
}
fn with_container_name(self, name: impl Into<String>) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
container_name: Some(name.into()),
..container_req
}
}
fn with_network(self, network: impl Into<String>) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
network: Some(network.into()),
..container_req
}
}
fn with_label(self, key: impl Into<String>, value: impl Into<String>) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req.labels.insert(key.into(), value.into());
container_req
}
fn with_labels(
self,
labels: impl IntoIterator<Item = (impl Into<String>, impl Into<String>)>,
) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req.labels.extend(
labels
.into_iter()
.map(|(key, value)| (key.into(), value.into())),
);
container_req
}
fn with_env_var(
self,
name: impl Into<String>,
value: impl Into<String>,
) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req.env_vars.insert(name.into(), value.into());
container_req
}
fn with_host(self, key: impl Into<String>, value: impl Into<Host>) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req.hosts.insert(key.into(), value.into());
container_req
}
fn with_mount(self, mount: impl Into<Mount>) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req.mounts.push(mount.into());
container_req
}
fn with_copy_to(
self,
target: impl Into<String>,
source: impl Into<CopyDataSource>,
) -> ContainerRequest<I> {
let mut container_req = self.into();
let target: String = target.into();
container_req
.copy_to_sources
.push(CopyToContainer::new(source, target));
container_req
}
fn with_mapped_port(
self,
host_port: u16,
container_port: ContainerPort,
) -> ContainerRequest<I> {
let container_req = self.into();
let mut ports = container_req.ports.unwrap_or_default();
ports.push(PortMapping::new(host_port, container_port));
ContainerRequest {
ports: Some(ports),
..container_req
}
}
fn with_ulimit(self, name: &str, soft: i64, hard: Option<i64>) -> ContainerRequest<I> {
let container_req = self.into();
let mut ulimits = container_req.ulimits.unwrap_or_default();
ulimits.push(ResourcesUlimits {
name: Some(name.into()),
soft: Some(soft),
hard,
});
ContainerRequest {
ulimits: Some(ulimits),
..container_req
}
}
fn with_privileged(self, privileged: bool) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
privileged,
..container_req
}
}
fn with_cap_add(self, capability: impl Into<String>) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req
.cap_add
.get_or_insert_with(Vec::new)
.push(capability.into());
container_req
}
fn with_cap_drop(self, capability: impl Into<String>) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req
.cap_drop
.get_or_insert_with(Vec::new)
.push(capability.into());
container_req
}
fn with_cgroupns_mode(self, cgroupns_mode: CgroupnsMode) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
cgroupns_mode: Some(cgroupns_mode),
..container_req
}
}
fn with_userns_mode(self, userns_mode: &str) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
userns_mode: Some(String::from(userns_mode)),
..container_req
}
}
fn with_shm_size(self, bytes: u64) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
shm_size: Some(bytes),
..container_req
}
}
fn with_startup_timeout(self, timeout: Duration) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
startup_timeout: Some(timeout),
..container_req
}
}
fn with_working_dir(self, working_dir: impl Into<String>) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
working_dir: Some(working_dir.into()),
..container_req
}
}
fn with_log_consumer(self, log_consumer: impl LogConsumer + 'static) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req.log_consumers.push(Box::new(log_consumer));
container_req
}
#[cfg(feature = "reusable-containers")]
fn with_reuse(self, reuse: ReuseDirective) -> ContainerRequest<I> {
ContainerRequest {
reuse,
..self.into()
}
}
fn with_user(self, user: impl Into<String>) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
user: Some(user.into()),
..container_req
}
}
fn with_readonly_rootfs(self, readonly_rootfs: bool) -> ContainerRequest<I> {
let container_req = self.into();
ContainerRequest {
readonly_rootfs,
..container_req
}
}
fn with_security_opt(self, security_opt: impl Into<String>) -> ContainerRequest<I> {
let mut container_req = self.into();
container_req
.security_opts
.get_or_insert_with(Vec::new)
.push(security_opt.into());
container_req
}
}