pub struct IntegrationTestContext<'a> {
    pub pack_stdout: String,
    pub pack_stderr: String,
    pub image_name: String,
    pub app_dir: PathBuf,
    /* private fields */
}
Expand description

Context for a currently executing integration test.

Fields

pack_stdout: String

Standard output of pack, interpreted as an UTF-8 string.

pack_stderr: String

Standard error of pack, interpreted as an UTF-8 string.

image_name: String

The name of the image this integration test created.

app_dir: PathBuf

The directory of the app this integration test uses.

This is a copy of the app_dir directory passed to IntegrationTest::new and unique to this integration test run. It is safe to modify the directory contents inside the test.

Implementations

Prepares a new container with the image from the integration test.

This will not create nor run the container immediately. Use the returned PrepareContainerContext to configure the container, then call start_with_default_process on it to actually create and start the container.

Example:
use libcnb_test::IntegrationTest;

IntegrationTest::new("heroku/buildpacks:20", "test-fixtures/empty-app").run_test(|context| {
    context.prepare_container().start_with_default_process(|container| {
        // ...
    });
});

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more