1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
use crate::docker::DockerRemoveImageCommand;
use crate::pack::PackBuildCommand;
use crate::util::CommandError;
use crate::{app, build, util, BuildConfig, BuildpackReference, PackResult, TestContext};
use std::borrow::Borrow;
use std::env;
use std::path::PathBuf;
use tempfile::tempdir;
/// Runner for libcnb integration tests.
///
/// # Example
/// ```no_run
/// use libcnb_test::{assert_contains, assert_empty, BuildConfig, TestRunner};
///
/// TestRunner::default().build(
/// BuildConfig::new("heroku/builder:22", "tests/fixtures/app"),
/// |context| {
/// assert_empty!(context.pack_stderr);
/// assert_contains!(context.pack_stdout, "Expected build output");
/// },
/// )
/// ```
#[derive(Default)]
pub struct TestRunner {}
impl TestRunner {
/// Starts a new integration test build.
///
/// This function copies the application to a temporary directory (if necessary), cross-compiles the current
/// crate, packages it as a buildpack and then invokes [pack](https://buildpacks.io/docs/tools/pack/)
/// to build a new Docker image with the buildpacks specified by the passed [`BuildConfig`].
///
/// Since this function is supposed to only be used in integration tests, failures are not
/// signalled via [`Result`](Result) values. Instead, this function panics whenever an unexpected error
/// occurred to simplify testing code.
///
/// # Example
/// ```no_run
/// use libcnb_test::{assert_contains, assert_empty, BuildConfig, TestRunner};
///
/// TestRunner::default().build(
/// BuildConfig::new("heroku/builder:22", "tests/fixtures/app"),
/// |context| {
/// assert_empty!(context.pack_stderr);
/// assert_contains!(context.pack_stdout, "Expected build output");
/// },
/// )
/// ```
pub fn build<C: Borrow<BuildConfig>, F: FnOnce(TestContext)>(&self, config: C, f: F) {
self.build_internal(util::random_docker_identifier(), config, f);
}
pub(crate) fn build_internal<C: Borrow<BuildConfig>, F: FnOnce(TestContext)>(
&self,
image_name: String,
config: C,
f: F,
) {
let config = config.borrow();
let cargo_manifest_dir = env::var("CARGO_MANIFEST_DIR")
.map(PathBuf::from)
.expect("Could not determine Cargo manifest directory");
let app_dir = {
let normalized_app_dir_path = if config.app_dir.is_relative() {
cargo_manifest_dir.join(&config.app_dir)
} else {
config.app_dir.clone()
};
assert!(
normalized_app_dir_path.is_dir(),
"App dir is not a valid directory: {}",
normalized_app_dir_path.display()
);
// Copy the app to a temporary directory if an app_dir_preprocessor is specified and run the
// preprocessor. Skip app copying if no changes to the app will be made.
if let Some(app_dir_preprocessor) = &config.app_dir_preprocessor {
let temporary_app_dir = app::copy_app(&normalized_app_dir_path)
.expect("Could not copy app to temporary location");
(app_dir_preprocessor)(temporary_app_dir.as_path().to_owned());
temporary_app_dir
} else {
normalized_app_dir_path.into()
}
};
let buildpacks_target_dir =
tempdir().expect("Could not create a temporary directory for compiled buildpacks");
let mut pack_command = PackBuildCommand::new(&config.builder_name, &app_dir, &image_name);
config.env.iter().for_each(|(key, value)| {
pack_command.env(key, value);
});
for buildpack in &config.buildpacks {
match buildpack {
BuildpackReference::CurrentCrate => {
let crate_buildpack_dir = build::package_crate_buildpack(
config.cargo_profile,
&config.target_triple,
&cargo_manifest_dir,
buildpacks_target_dir.path(),
).expect("Test references crate buildpack, but crate wasn't packaged as a buildpack. This is an internal libcnb-test error, please report any occurrences");
pack_command.buildpack(crate_buildpack_dir);
}
BuildpackReference::WorkspaceBuildpack(builpack_id) => {
let buildpack_dir = build::package_buildpack(
builpack_id,
config.cargo_profile,
&config.target_triple,
&cargo_manifest_dir,
buildpacks_target_dir.path()
).unwrap_or_else(|_| panic!("Test references buildpack `{builpack_id}`, but this directory wasn't packaged as a buildpack. This is an internal libcnb-test error, please report any occurrences"));
pack_command.buildpack(buildpack_dir);
}
BuildpackReference::Other(id) => {
pack_command.buildpack(id.clone());
}
};
}
let pack_result = util::run_command(pack_command);
let output = match (&config.expected_pack_result, pack_result) {
(PackResult::Success, Ok(output)) => output,
(PackResult::Failure, Err(CommandError::NonZeroExitCode { log_output, .. })) => {
log_output
}
(PackResult::Failure, Ok(log_output)) => {
// Ordinarily the Docker image created by `pack build` will either be cleaned up by
// `TestContext::Drop` later on, or will not have been created in the first place,
// if the `pack build` was not successful. However, in the case of an unexpectedly
// successful `pack build` we have to clean this image up manually before `panic`ing.
util::run_command(DockerRemoveImageCommand::new(image_name)).unwrap_or_else(
|command_err| panic!("Error removing Docker image:\n\n{command_err}"),
);
panic!("The pack build was expected to fail, but did not:\n\n{log_output}");
}
(_, Err(command_err)) => {
panic!("Error performing pack build:\n\n{command_err}");
}
};
let test_context = TestContext {
pack_stdout: output.stdout,
pack_stderr: output.stderr,
image_name,
config: config.clone(),
runner: self,
};
f(test_context);
}
}