34 releases (10 breaking)

0.14.0-beta.1 Jun 19, 2023
0.11.4 Nov 12, 2024
0.11.3 Oct 17, 2024
0.9.0 Jul 30, 2024
0.1.0-beta.1 Jun 28, 2023

#22 in Testing

Download history 13403/week @ 2024-07-28 15380/week @ 2024-08-04 17757/week @ 2024-08-11 14725/week @ 2024-08-18 17487/week @ 2024-08-25 19356/week @ 2024-09-01 16363/week @ 2024-09-08 13985/week @ 2024-09-15 16276/week @ 2024-09-22 18447/week @ 2024-09-29 13638/week @ 2024-10-06 16662/week @ 2024-10-13 18347/week @ 2024-10-20 16688/week @ 2024-10-27 18145/week @ 2024-11-03 17384/week @ 2024-11-10

71,117 downloads per month
Used in 44 crates (41 directly)

MIT license

270KB
5K SLoC

testcontainers-modules

Continuous Integration Crates.io Docs.rs

Community maintained modules for testcontainers

Provides modules to use for testing components in accordance with testcontainers-rs. Every module is treated as a feature inside this crate.

Usage

  1. Depend on testcontainers-modules with necessary features (e.g postgres, minio and etc)
    • Enable blocking feature if you want to use modules within synchronous tests (feature-gate for SyncRunner)
  2. Then start using the modules inside your tests with either AsyncRunner or SyncRunner

Simple example of using postgres module with SyncRunner (blocking and postgres features enabled):

use testcontainers_modules::{postgres, testcontainers::runners::SyncRunner};

#[test]
fn test_with_postgres() {
    let container = postgres::Postgres::default().start().unwrap();
    let host_ip = container.get_host().unwrap();
    let host_port = container.get_host_port_ipv4(5432).unwrap();
}

Note: you don't need to explicitly depend on testcontainers as it's re-exported dependency of testcontainers-modules with aligned version between these crates. For example:

use testcontainers_modules::testcontainers::ImageExt;

You can also see examples for more details.

How to override module defaults (version, tag, ENV-variables)

Just use RunnableImage:

use testcontainers_modules::{
    redis::Redis,
    testcontainers::{ContainerRequest, ImageExt}
};


/// Create a Redis module with `6.2-alpine` tag and custom password
fn create_redis() -> ContainerRequest<Redis> {
    Redis::default()
        .with_tag("6.2-alpine")
        .with_env_var("REDIS_PASSWORD", "my_secret_password")
}

License

Dependencies

~23–40MB
~746K SLoC