25 releases (15 breaking)

0.16.7 May 1, 2024
0.15.0 Oct 5, 2023
0.14.0 Jun 1, 2022
0.12.0 Jan 28, 2021
0.3.1 Oct 23, 2018

#12 in Testing

Download history 24579/week @ 2024-01-24 25438/week @ 2024-01-31 23022/week @ 2024-02-07 25266/week @ 2024-02-14 25276/week @ 2024-02-21 26220/week @ 2024-02-28 25712/week @ 2024-03-06 26128/week @ 2024-03-13 26058/week @ 2024-03-20 23851/week @ 2024-03-27 27790/week @ 2024-04-03 28790/week @ 2024-04-10 27234/week @ 2024-04-17 29723/week @ 2024-04-24 32723/week @ 2024-05-01 23391/week @ 2024-05-08

118,787 downloads per month
Used in 100 crates (86 directly)

MIT/Apache

120KB
2.5K SLoC

Testcontainers-rs

Continuous Integration Crates.io Docs.rs Slack

Testcontainers-rs is the official Rust language fork of http://testcontainers.org.

Usage

testcontainers is the core crate

The crate provides an API for working with containers in a test environment.

  1. Depend on testcontainers
  2. Implement testcontainers::core::Image for necessary docker-images
  3. Run it with any available runner testcontainers::runners::* (use blocking feature for synchronous API)

Example:

  • Blocking API (under blocking feature)
use testcontainers::{core::WaitFor, runners::SyncRunner, GenericImage};

#[test]
fn test_redis() {
    let container = GenericImage::new("redis", "7.2.4")
        .with_exposed_port(6379)
        .with_wait_for(WaitFor::message_on_stdout("Ready to accept connections"))
        .start();
}
  • Async API
use testcontainers::{core::WaitFor, runners::AsyncRunner, GenericImage};

#[tokio::test]
async fn test_redis() {
    let container = GenericImage::new("redis", "7.2.4")
        .with_exposed_port(6379)
        .with_wait_for(WaitFor::message_on_stdout("Ready to accept connections"))
        .start()
        .await;
}

Ready-to-use images

The easiest way to use testcontainers is to depend on ready-to-use images (aka modules).

Modules are available as a community-maintained crate: testcontainers-modules

License

Licensed under either of

at your option.

Dependencies

~21–34MB
~636K SLoC