-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtesting.rs
More file actions
505 lines (459 loc) · 16.5 KB
/
testing.rs
File metadata and controls
505 lines (459 loc) · 16.5 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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
//! Testing utilities for container lifecycle management.
//!
//! This module provides [`ContainerGuard`], an RAII wrapper that automatically
//! manages container lifecycle. When the guard goes out of scope, containers
//! are stopped and removed automatically.
//!
//! # Example
//!
//! ```rust,no_run
//! use docker_wrapper::testing::ContainerGuard;
//! use docker_wrapper::RedisTemplate;
//!
//! #[tokio::test]
//! async fn test_redis() -> Result<(), Box<dyn std::error::Error>> {
//! let guard = ContainerGuard::new(RedisTemplate::new("test-redis"))
//! .start()
//! .await?;
//!
//! // Use the container...
//! let url = guard.template().connection_url();
//!
//! Ok(())
//! // Container automatically stopped and removed here
//! }
//! ```
use crate::command::DockerCommand;
use crate::template::{Template, TemplateError};
use crate::{LogsCommand, PortCommand, RmCommand, StopCommand};
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
/// Options for controlling container lifecycle behavior.
#[derive(Debug, Clone)]
#[allow(clippy::struct_excessive_bools)]
pub struct GuardOptions {
/// Remove container on drop (default: true)
pub remove_on_drop: bool,
/// Stop container on drop (default: true)
pub stop_on_drop: bool,
/// Keep container running if test panics (default: false)
pub keep_on_panic: bool,
/// Capture container logs and print on panic (default: false)
pub capture_logs: bool,
/// Reuse existing container if already running (default: false)
pub reuse_if_running: bool,
/// Automatically wait for container to be ready after start (default: false)
pub wait_for_ready: bool,
}
impl Default for GuardOptions {
fn default() -> Self {
Self {
remove_on_drop: true,
stop_on_drop: true,
keep_on_panic: false,
capture_logs: false,
reuse_if_running: false,
wait_for_ready: false,
}
}
}
/// Builder for creating a [`ContainerGuard`] with custom options.
pub struct ContainerGuardBuilder<T: Template> {
template: T,
options: GuardOptions,
}
impl<T: Template> ContainerGuardBuilder<T> {
/// Create a new builder with the given template.
#[must_use]
pub fn new(template: T) -> Self {
Self {
template,
options: GuardOptions::default(),
}
}
/// Set whether to remove the container on drop (default: true).
#[must_use]
pub fn remove_on_drop(mut self, remove: bool) -> Self {
self.options.remove_on_drop = remove;
self
}
/// Set whether to stop the container on drop (default: true).
#[must_use]
pub fn stop_on_drop(mut self, stop: bool) -> Self {
self.options.stop_on_drop = stop;
self
}
/// Set whether to keep the container running if the test panics (default: false).
///
/// This is useful for debugging failed tests - you can inspect the container
/// state after the test fails.
#[must_use]
pub fn keep_on_panic(mut self, keep: bool) -> Self {
self.options.keep_on_panic = keep;
self
}
/// Set whether to capture container logs and print them on panic (default: false).
///
/// When enabled, container logs are buffered and printed to stderr if the
/// test panics, making it easier to debug failures.
#[must_use]
pub fn capture_logs(mut self, capture: bool) -> Self {
self.options.capture_logs = capture;
self
}
/// Set whether to reuse an existing container if already running (default: false).
///
/// This is useful for faster local development iteration - containers can
/// be kept running between test runs.
#[must_use]
pub fn reuse_if_running(mut self, reuse: bool) -> Self {
self.options.reuse_if_running = reuse;
self
}
/// Set whether to automatically wait for the container to be ready after starting (default: false).
///
/// When enabled, `start()` will not return until the container passes its
/// readiness check. This is useful for tests that need to immediately connect
/// to the service.
///
/// # Example
///
/// ```rust,no_run
/// # use docker_wrapper::testing::ContainerGuard;
/// # use docker_wrapper::RedisTemplate;
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let guard = ContainerGuard::new(RedisTemplate::new("test"))
/// .wait_for_ready(true)
/// .start()
/// .await?;
/// // Container is guaranteed ready at this point
/// # Ok(())
/// # }
/// ```
#[must_use]
pub fn wait_for_ready(mut self, wait: bool) -> Self {
self.options.wait_for_ready = wait;
self
}
/// Start the container and return a guard that manages its lifecycle.
///
/// If `reuse_if_running` is enabled and a container is already running,
/// it will be reused instead of starting a new one.
///
/// If `wait_for_ready` is enabled, this method will block until the
/// container passes its readiness check.
///
/// # Errors
///
/// Returns an error if the container fails to start or the readiness check times out.
pub async fn start(self) -> Result<ContainerGuard<T>, TemplateError> {
let wait_for_ready = self.options.wait_for_ready;
// Check if we should reuse an existing container
if self.options.reuse_if_running {
if let Ok(true) = self.template.is_running().await {
let guard = ContainerGuard {
template: self.template,
container_id: None, // We don't have the ID for reused containers
options: self.options,
was_reused: true,
cleaned_up: Arc::new(AtomicBool::new(false)),
};
// Wait for ready if configured (even for reused containers)
if wait_for_ready {
guard.wait_for_ready().await?;
}
return Ok(guard);
}
}
// Start the container
let container_id = self.template.start_and_wait().await?;
let guard = ContainerGuard {
template: self.template,
container_id: Some(container_id),
options: self.options,
was_reused: false,
cleaned_up: Arc::new(AtomicBool::new(false)),
};
// Wait for ready if configured
if wait_for_ready {
guard.wait_for_ready().await?;
}
Ok(guard)
}
}
/// RAII guard for automatic container lifecycle management.
///
/// When this guard is dropped, the container is automatically stopped and
/// removed (unless configured otherwise via [`ContainerGuardBuilder`]).
///
/// # Example
///
/// ```rust,no_run
/// use docker_wrapper::testing::ContainerGuard;
/// use docker_wrapper::RedisTemplate;
///
/// #[tokio::test]
/// async fn test_example() -> Result<(), Box<dyn std::error::Error>> {
/// let guard = ContainerGuard::new(RedisTemplate::new("test"))
/// .keep_on_panic(true) // Keep container for debugging if test fails
/// .capture_logs(true) // Print logs on failure
/// .start()
/// .await?;
///
/// // Container is automatically cleaned up when guard goes out of scope
/// Ok(())
/// }
/// ```
pub struct ContainerGuard<T: Template> {
template: T,
container_id: Option<String>,
options: GuardOptions,
was_reused: bool,
cleaned_up: Arc<AtomicBool>,
}
impl<T: Template> ContainerGuard<T> {
/// Create a new builder for a container guard.
///
/// Note: This returns a builder, not a `ContainerGuard`. Call `.start().await`
/// on the builder to create the guard.
#[allow(clippy::new_ret_no_self)]
pub fn new(template: T) -> ContainerGuardBuilder<T> {
ContainerGuardBuilder::new(template)
}
/// Get a reference to the underlying template.
#[must_use]
pub fn template(&self) -> &T {
&self.template
}
/// Get the container ID, if available.
///
/// This may be `None` if the container was reused from a previous run.
#[must_use]
pub fn container_id(&self) -> Option<&str> {
self.container_id.as_deref()
}
/// Check if this guard is reusing an existing container.
#[must_use]
pub fn was_reused(&self) -> bool {
self.was_reused
}
/// Check if the container is currently running.
///
/// # Errors
///
/// Returns an error if the Docker command fails.
pub async fn is_running(&self) -> Result<bool, TemplateError> {
self.template.is_running().await
}
/// Wait for the container to be ready.
///
/// This calls the underlying template's readiness check. The exact behavior
/// depends on the template implementation - for example, Redis templates
/// wait for a successful PING response.
///
/// # Errors
///
/// Returns an error if the readiness check times out or the Docker command fails.
///
/// # Example
///
/// ```rust,no_run
/// # use docker_wrapper::testing::ContainerGuard;
/// # use docker_wrapper::RedisTemplate;
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let guard = ContainerGuard::new(RedisTemplate::new("test"))
/// .start()
/// .await?;
///
/// // Wait for Redis to be ready to accept connections
/// guard.wait_for_ready().await?;
/// # Ok(())
/// # }
/// ```
pub async fn wait_for_ready(&self) -> Result<(), TemplateError> {
self.template.wait_for_ready().await
}
/// Get the host port mapped to a container port.
///
/// This is useful when using dynamic port allocation - Docker assigns
/// a random available host port which you can query with this method.
///
/// # Errors
///
/// Returns an error if the Docker command fails or no port mapping is found.
///
/// # Example
///
/// ```rust,no_run
/// # use docker_wrapper::testing::ContainerGuard;
/// # use docker_wrapper::RedisTemplate;
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let guard = ContainerGuard::new(RedisTemplate::new("test"))
/// .start()
/// .await?;
///
/// let host_port = guard.host_port(6379).await?;
/// println!("Redis available at localhost:{}", host_port);
/// # Ok(())
/// # }
/// ```
pub async fn host_port(&self, container_port: u16) -> Result<u16, TemplateError> {
let container_name = self.template.config().name.clone();
let result = PortCommand::new(&container_name)
.port(container_port)
.run()
.await
.map_err(TemplateError::DockerError)?;
// Return the first matching port mapping
if let Some(mapping) = result.port_mappings.first() {
return Ok(mapping.host_port);
}
Err(TemplateError::InvalidConfig(format!(
"No host port mapping found for container port {container_port}"
)))
}
/// Get the container logs.
///
/// # Errors
///
/// Returns an error if the Docker command fails.
pub async fn logs(&self) -> Result<String, TemplateError> {
let container_name = self.template.config().name.clone();
let result = LogsCommand::new(&container_name)
.execute()
.await
.map_err(TemplateError::DockerError)?;
Ok(format!("{}{}", result.stdout, result.stderr))
}
/// Manually stop the container.
///
/// The container will still be removed on drop if `remove_on_drop` is enabled.
///
/// # Errors
///
/// Returns an error if the Docker command fails.
pub async fn stop(&self) -> Result<(), TemplateError> {
self.template.stop().await
}
/// Manually clean up the container (stop and remove).
///
/// After calling this, the drop implementation will not attempt cleanup again.
///
/// # Errors
///
/// Returns an error if the Docker commands fail.
pub async fn cleanup(&self) -> Result<(), TemplateError> {
if self.cleaned_up.swap(true, Ordering::SeqCst) {
return Ok(()); // Already cleaned up
}
if self.options.stop_on_drop {
let _ = self.template.stop().await;
}
if self.options.remove_on_drop {
let _ = self.template.remove().await;
}
Ok(())
}
}
impl<T: Template> Drop for ContainerGuard<T> {
fn drop(&mut self) {
// Skip cleanup if already done
if self.cleaned_up.load(Ordering::SeqCst) {
return;
}
// Skip cleanup for reused containers if not configured to clean them
if self.was_reused && !self.options.remove_on_drop {
return;
}
// Check if we're panicking
let panicking = std::thread::panicking();
if panicking && self.options.keep_on_panic {
let name = &self.template.config().name;
eprintln!("[ContainerGuard] Test panicked, keeping container '{name}' for debugging");
if self.options.capture_logs {
// Try to get logs - spawn a thread to avoid runtime conflicts
let container_name = self.template.config().name.clone();
let _ = std::thread::spawn(move || {
if let Ok(rt) = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
{
if let Ok(result) =
rt.block_on(async { LogsCommand::new(&container_name).execute().await })
{
let logs = format!("{}{}", result.stdout, result.stderr);
eprintln!("[ContainerGuard] Container logs for '{container_name}':");
eprintln!("{logs}");
}
}
})
.join();
}
return;
}
// Mark as cleaned up
self.cleaned_up.store(true, Ordering::SeqCst);
// Perform cleanup - need to spawn a runtime since Drop isn't async
let should_stop = self.options.stop_on_drop;
let should_remove = self.options.remove_on_drop;
let container_name = self.template.config().name.clone();
if !should_stop && !should_remove {
return;
}
// Perform cleanup - try to use existing runtime if available,
// otherwise create a new one (for non-async contexts)
if tokio::runtime::Handle::try_current().is_ok() {
// We're in an async context - use spawn_blocking to avoid blocking the runtime
let container_name_clone = container_name.clone();
let _ = std::thread::spawn(move || {
let rt = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.expect("Failed to create runtime for cleanup");
rt.block_on(async {
if should_stop {
let _ = StopCommand::new(&container_name_clone).execute().await;
}
if should_remove {
let _ = RmCommand::new(&container_name_clone).force().run().await;
}
});
})
.join();
} else {
// Not in an async context - create a new runtime
if let Ok(rt) = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
{
rt.block_on(async {
if should_stop {
let _ = StopCommand::new(&container_name).execute().await;
}
if should_remove {
let _ = RmCommand::new(&container_name).force().run().await;
}
});
}
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_guard_options_default() {
let opts = GuardOptions::default();
assert!(opts.remove_on_drop);
assert!(opts.stop_on_drop);
assert!(!opts.keep_on_panic);
assert!(!opts.capture_logs);
assert!(!opts.reuse_if_running);
assert!(!opts.wait_for_ready);
}
#[test]
fn test_builder_options() {
// We can't easily test the builder without a real template,
// but we can at least verify the module compiles
}
}