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

#13 in Testing

Download history 26688/week @ 2024-01-29 23169/week @ 2024-02-05 25257/week @ 2024-02-12 24064/week @ 2024-02-19 25209/week @ 2024-02-26 26445/week @ 2024-03-04 26100/week @ 2024-03-11 25840/week @ 2024-03-18 24974/week @ 2024-03-25 26557/week @ 2024-04-01 28234/week @ 2024-04-08 28510/week @ 2024-04-15 27756/week @ 2024-04-22 31373/week @ 2024-04-29 31356/week @ 2024-05-06 29201/week @ 2024-05-13

121,087 downloads per month
Used in 101 crates (87 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–37MB
~651K SLoC