[][src]Trait testcontainers::Image

pub trait Image: Default where
    <Self::Args as IntoIterator>::Item == String,
    <Self::EnvVars as IntoIterator>::Item == (String, String)
{ type Args: Default + IntoIterator; type EnvVars: Default + IntoIterator; fn descriptor(&self) -> String;
fn wait_until_ready<D>(&self, container: &Container<D, Self>)
    where
        D: Docker
;
fn args(&self) -> Self::Args;
fn env_vars(&self) -> Self::EnvVars;
fn with_args(self, arguments: Self::Args) -> Self; }

Represents a docker image.

Implementations are required to implement Default. The default instance of an Image should have a meaningful configuration! It should be possible to run the default instance of an Image and get back a working container!

Associated Types

type Args: Default + IntoIterator

A type representing the arguments for an Image.

There are a couple of things regarding the arguments of images:

  1. Similar to the Default implementation of an Image, the Default instance of its arguments should be meaningful!
  2. Implementations should be conservative about which arguments they expose. Many times, users will either go with the default arguments or just override one or two. When defining the arguments of your image, consider that the whole purpose is to facilitate integration testing. Only expose those that actually make sense for this case.

type EnvVars: Default + IntoIterator

A type representing the environment variables for an Image.

There are a couple of things regarding the arguments of images:

  1. Similar to the Default implementation of an Image, the Default instance of its environment variables should be meaningful!
  2. Implementations should be conservative about which environment variables they expose. Many times, users will either go with the default ones or just override one or two. When defining the environment variables of your image, consider that the whole purpose is to facilitate integration testing. Only expose those that actually make sense for this case.
Loading content...

Required methods

fn descriptor(&self) -> String

The descriptor of the docker image.

This should return a full-qualified descriptor. Implementations are encouraged to include a tag that will not change (i.e. NOT latest) in order to prevent test code from randomly breaking because the underlying docker suddenly changed.

fn wait_until_ready<D>(&self, container: &Container<D, Self>) where
    D: Docker

Blocks the current thread until the started container is ready.

This method is the 🍞 and butter of the whole testcontainers library. Containers are rarely instantly available as soon as they are started. Most of them take some time to boot up.

Implementations MUST block the current thread until the passed-in container is ready to be interacted with. The container instance provides access to logs of the container.

Most implementations will very likely want to make use of this to wait for a particular message to be emitted.

fn args(&self) -> Self::Args

Returns the arguments this instance was created with.

fn env_vars(&self) -> Self::EnvVars

Returns the environment variables this instance was created with.

fn with_args(self, arguments: Self::Args) -> Self

Re-configures the current instance of this image with the given arguments.

Loading content...

Implementors

impl Image for BitcoinCore[src]

type Args = BitcoinCoreImageArgs

type EnvVars = HashMap<String, String, RandomState>

impl Image for DynamoDb[src]

type Args = DynamoDbArgs

type EnvVars = HashMap<String, String, RandomState>

impl Image for ElasticMQ[src]

type Args = ElasticMQArgs

type EnvVars = HashMap<String, String, RandomState>

impl Image for GenericImage[src]

type Args = Vec<String>

type EnvVars = HashMap<String, String, RandomState>

impl Image for ParityEthereum[src]

impl Image for Postgres[src]

type Args = PostgresArgs

type EnvVars = HashMap<String, String, RandomState>

impl Image for Redis[src]

type Args = RedisArgs

type EnvVars = HashMap<String, String, RandomState>

impl Image for GanacheCli[src]

type Args = GanacheCliArgs

type EnvVars = HashMap<String, String, RandomState>

Loading content...