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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
|
//! Integration Tests for cargo auditable
use std::{
collections::HashMap,
ffi::OsStr,
io::Write,
path::PathBuf,
process::{Command, Output, Stdio},
};
use auditable_serde::{DependencyKind, VersionInfo};
use cargo_metadata::{
camino::{Utf8Path, Utf8PathBuf},
Artifact, TargetKind,
};
// Path to cargo-auditable binary under test
const EXE: &str = env!("CARGO_BIN_EXE_cargo-auditable");
// Path to Cargo itself
const CARGO: &str = env!("CARGO");
/// Run cargo auditable with --manifest-path <cargo_toml_path arg> and extra args,
/// returning of map of workspace member names -> produced binaries (bin and cdylib)
/// Reads the AUDITABLE_TEST_TARGET environment variable to determine the target to compile for
/// Uses `CARGO_BUILD_SBOM` environment variable to enable SBOM generation if `sbom` is true
fn run_cargo_auditable<P>(
cargo_toml_path: P,
args: &[&str],
env: &[(&str, &OsStr)],
sbom: bool,
) -> HashMap<String, Vec<Utf8PathBuf>>
where
P: AsRef<OsStr>,
{
// run `cargo clean` before performing the build,
// otherwise already built binaries will be used
// and we won't actually test the *current* version of `cargo auditable`
let status = Command::new(CARGO)
.arg("clean")
.arg("--manifest-path")
.arg(&cargo_toml_path)
.status()
.unwrap();
assert!(status.success(), "Failed to invoke `cargo clean`!");
let mut command = Command::new(EXE);
command
.arg("auditable")
.arg("build")
.arg("--release")
.arg("--manifest-path")
.arg(&cargo_toml_path)
// We'll parse these to get binary paths
.arg("--message-format=json");
if sbom {
command.arg("-Z").arg("sbom");
command.env("CARGO_BUILD_SBOM", "true");
// Enable SBOM tests to run on stable rust
command.env("RUSTC_BOOTSTRAP", "1");
}
command.args(args);
if let Ok(target) = std::env::var("AUDITABLE_TEST_TARGET") {
if args.iter().all(|arg| !arg.starts_with("--target")) {
command.arg(format!("--target={target}"));
}
}
for (name, value) in env {
command.env(name, value);
}
let output = command
// We don't need to read stderr, so inherit for easier test debugging
.stderr(Stdio::inherit())
.stdout(Stdio::piped())
.output()
.unwrap();
ensure_build_succeeded(&output);
let mut bins = HashMap::new();
std::str::from_utf8(&output.stdout)
.unwrap()
.lines()
.flat_map(|line: &str| {
let mut binaries = vec![];
if let Ok(artifact) = serde_json::from_str::<Artifact>(line) {
// workspace member name is first word in package ID
let member = artifact
.package_id
.to_string()
.split(' ')
.next()
.unwrap()
.to_string();
// bin targets are straightforward - use executable
if let Some(executable) = artifact.executable {
binaries.push((member, executable));
// cdylibs less so
} else if artifact
.target
.kind
.iter()
.any(|kind| *kind == TargetKind::CDyLib)
{
// Detect files with .so (Linux), .dylib (Mac) and .dll (Windows) extensions
artifact
.filenames
.into_iter()
.filter(|f| {
f.extension() == Some("dylib")
|| f.extension() == Some("so")
|| f.extension() == Some("dll")
})
.for_each(|f| {
binaries.push((member.clone(), f));
});
}
}
binaries
})
.for_each(|(package, binary)| {
bins.entry(pkgid_to_bin_name(&package))
.or_insert(Vec::new())
.push(binary);
});
bins
}
fn pkgid_to_bin_name(pkgid: &str) -> String {
// the input is string in the format such as
// "path+file:///home/shnatsel/Code/cargo-auditable/cargo-auditable/tests/fixtures/lib_and_bin_crate#0.1.0"
// (for full docs see `cargo pkgid`)
// and we need just the crate name, e.g. "lib_and_bin_crate".
// Weirdly it doesn't use OS path separator, it always uses '/'
pkgid
.rsplit_once('/')
.unwrap()
.1
.split_once('#')
.unwrap()
.0
.to_owned()
}
fn ensure_build_succeeded(output: &Output) {
if !output.status.success() {
let stderr = std::io::stderr();
let mut handle = stderr.lock();
handle.write_all(&output.stdout).unwrap();
handle.write_all(&output.stderr).unwrap();
handle.flush().unwrap();
panic!("Build with `cargo auditable` failed");
}
}
fn get_dependency_info(binary: &Utf8Path) -> VersionInfo {
auditable_info::audit_info_from_file(binary.as_std_path(), Default::default()).unwrap()
}
/*#[test]
fn test_cargo_auditable_workspaces() {
test_cargo_auditable_workspaces_inner(false);
test_cargo_auditable_workspaces_inner(true);
}
fn test_cargo_auditable_workspaces_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml =
PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/workspace/Cargo.toml");
// Run in workspace root with default features
let bins = run_cargo_auditable(&workspace_cargo_toml, &[], &[], sbom);
eprintln!("Test fixture binary map: {bins:?}");
// No binaries for library_crate
assert!(!bins.contains_key("library_crate"));
// binary_and_cdylib_crate
let binary_and_cdylib_crate_bins = bins.get("binary_and_cdylib_crate").unwrap();
match std::env::var("AUDITABLE_TEST_TARGET") {
// musl targets do not produce cdylibs by default: https://github.com/rust-lang/cargo/issues/8607
// So when targeting musl, we only check that the binary has been built, not the cdylib.
Ok(target) if target.contains("musl") => assert!(!binary_and_cdylib_crate_bins.is_empty()),
// everything else should build both the binary and cdylib
_ => assert_eq!(binary_and_cdylib_crate_bins.len(), 2),
}
for binary in binary_and_cdylib_crate_bins {
let dep_info = get_dependency_info(binary);
eprintln!("{binary} dependency info: {dep_info:?}");
// binary_and_cdylib_crate should have two dependencies, library_crate and itself
assert!(dep_info.packages.len() == 2);
assert!(dep_info.packages.iter().any(|p| p.name == "library_crate"));
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "binary_and_cdylib_crate"));
}
// crate_with_features should create a binary with two dependencies, library_crate and itself
let crate_with_features_bin = &bins.get("crate_with_features").unwrap()[0];
let dep_info = get_dependency_info(crate_with_features_bin);
eprintln!("{crate_with_features_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 2);
assert!(dep_info.packages.iter().any(|p| p.name == "library_crate"));
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "crate_with_features"));
// Run enabling binary_and_cdylib_crate feature
let bins = run_cargo_auditable(
&workspace_cargo_toml,
&["--features", "binary_and_cdylib_crate"],
&[],
sbom,
);
// crate_with_features should now have three dependencies, library_crate binary_and_cdylib_crate and crate_with_features,
let crate_with_features_bin = &bins.get("crate_with_features").unwrap()[0];
let dep_info = get_dependency_info(crate_with_features_bin);
eprintln!("{crate_with_features_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 3);
assert!(dep_info.packages.iter().any(|p| p.name == "library_crate"));
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "crate_with_features"));
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "binary_and_cdylib_crate"));
// Run without default features
let bins = run_cargo_auditable(&workspace_cargo_toml, &["--no-default-features"], &[], sbom);
// crate_with_features should now only depend on itself
let crate_with_features_bin = &bins.get("crate_with_features").unwrap()[0];
let dep_info = get_dependency_info(crate_with_features_bin);
eprintln!("{crate_with_features_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 1);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "crate_with_features"));
}
/// This exercises a small real-world project
#[test]
fn test_self_hosting() {
test_self_hosting_inner(false);
test_self_hosting_inner(true);
}
fn test_self_hosting_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml =
PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("../rust-audit-info/Cargo.toml");
// Run in workspace root with default features
let bins = run_cargo_auditable(workspace_cargo_toml, &[], &[], sbom);
eprintln!("Self-hosting binary map: {bins:?}");
// verify that the dependency info is present at all
let bin = &bins.get("rust-audit-info").unwrap()[0];
let dep_info = get_dependency_info(bin);
eprintln!("{bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() > 1);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "rust-audit-info"));
}
#[test]
fn test_lto() {
test_lto_inner(false);
test_lto_inner(true);
}
fn test_lto_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/lto_binary_crate/Cargo.toml");
// Run in workspace root with default features
let bins = run_cargo_auditable(workspace_cargo_toml, &[], &[], sbom);
eprintln!("LTO binary map: {bins:?}");
// lto_binary_crate should only depend on itself
let lto_binary_crate_bin = &bins.get("lto_binary_crate").unwrap()[0];
let dep_info = get_dependency_info(lto_binary_crate_bin);
eprintln!("{lto_binary_crate_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 1);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "lto_binary_crate"));
}
#[test]
fn test_lto_stripped() {
test_lto_stripped_inner(false);
test_lto_stripped_inner(true);
}
fn test_lto_stripped_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/lto_stripped_binary/Cargo.toml");
// Run in workspace root with default features
let bins = run_cargo_auditable(workspace_cargo_toml, &[], &[], sbom);
eprintln!("Stripped binary map: {bins:?}");
// lto_stripped_binary should only depend on itself
let lto_stripped_binary_bin = &bins.get("lto_stripped_binary").unwrap()[0];
let dep_info = get_dependency_info(lto_stripped_binary_bin);
eprintln!("{lto_stripped_binary_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 1);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "lto_stripped_binary"));
}
#[test]
fn test_bin_and_lib_in_one_crate() {
test_bin_and_lib_in_one_crate_inner(false);
test_bin_and_lib_in_one_crate_inner(true);
}
fn test_bin_and_lib_in_one_crate_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/lib_and_bin_crate/Cargo.toml");
let bins = run_cargo_auditable(workspace_cargo_toml, &["--bin=some_binary"], &[], sbom);
eprintln!("Test fixture binary map: {bins:?}");
// lib_and_bin_crate should only depend on itself
let lib_and_bin_crate_bin = &bins.get("lib_and_bin_crate").unwrap()[0];
let dep_info = get_dependency_info(lib_and_bin_crate_bin);
eprintln!("{lib_and_bin_crate_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 1);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "lib_and_bin_crate"));
}
#[test]
fn test_build_script() {
test_build_script_inner(false);
test_build_script_inner(true);
}
fn test_build_script_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/crate_with_build_script/Cargo.toml");
let bins = run_cargo_auditable(workspace_cargo_toml, &[], &[], sbom);
eprintln!("Test fixture binary map: {bins:?}");
// crate_with_build_script should only depend on itself
let crate_with_build_script_bin = &bins.get("crate_with_build_script").unwrap()[0];
let dep_info = get_dependency_info(crate_with_build_script_bin);
eprintln!("{crate_with_build_script_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 1);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "crate_with_build_script"));
}
#[test]
fn test_platform_specific_deps() {
test_platform_specific_deps_inner(false);
test_platform_specific_deps_inner(true);
}
fn test_platform_specific_deps_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/platform_specific_deps/Cargo.toml");
// Run in workspace root with default features
let bins = run_cargo_auditable(workspace_cargo_toml, &[], &[], sbom);
eprintln!("Test fixture binary map: {bins:?}");
let test_target = std::env::var("AUDITABLE_TEST_TARGET");
if test_target.is_err() || !test_target.unwrap().starts_with("m68k") {
// 'with_platform_dep' should only depend on 'should_not_be_included' on m68k processors
// and we're not building for those, so it should be omitted
let bin = &bins.get("with_platform_dep").unwrap()[0];
let dep_info = get_dependency_info(bin);
eprintln!("{bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 1);
assert!(!dep_info
.packages
.iter()
.any(|p| p.name == "should_not_be_included"));
}
}
#[test]
fn test_build_then_runtime_dep() {
test_build_then_runtime_dep_inner(false);
test_build_then_runtime_dep_inner(true);
}
fn test_build_then_runtime_dep_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/build_then_runtime_dep/Cargo.toml");
// Run in workspace root with default features
let bins = run_cargo_auditable(workspace_cargo_toml, &[], &[], sbom);
eprintln!("Test fixture binary map: {bins:?}");
// check that the build types are propagated correctly
let toplevel_crate_bin = &bins.get("top_level_crate").unwrap()[0];
let dep_info = get_dependency_info(toplevel_crate_bin);
eprintln!("{toplevel_crate_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 3);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "build_dep" && p.kind == DependencyKind::Build));
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "runtime_dep_of_build_dep" && p.kind == DependencyKind::Build));
}
#[test]
fn test_runtime_then_build_dep() {
test_runtime_then_build_dep_inner(false);
test_runtime_then_build_dep_inner(true);
}
fn test_runtime_then_build_dep_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/runtime_then_build_dep/Cargo.toml");
// Run in workspace root with default features
let bins = run_cargo_auditable(workspace_cargo_toml, &[], &[], sbom);
eprintln!("Test fixture binary map: {bins:?}");
// check that the build types are propagated correctly
let toplevel_crate_bin = &bins.get("top_level_crate").unwrap()[0];
let dep_info = get_dependency_info(toplevel_crate_bin);
eprintln!("{toplevel_crate_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 3);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "runtime_dep" && p.kind == DependencyKind::Runtime));
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "build_dep_of_runtime_dep" && p.kind == DependencyKind::Build));
}
#[test]
fn test_custom_rustc_path() {
test_custom_rustc_path_inner(false);
test_custom_rustc_path_inner(true);
}
fn test_custom_rustc_path_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/custom_rustc_path/Cargo.toml");
// locate rustc
let rustc_path = which::which("rustc").unwrap();
// Run in workspace root with a custom path to rustc
let bins = run_cargo_auditable(
workspace_cargo_toml,
&[],
&[("RUSTC", rustc_path.as_ref())],
sbom,
);
eprintln!("Test fixture binary map: {bins:?}");
// check that the build types are propagated correctly
let toplevel_crate_bin = &bins.get("top_level_crate").unwrap()[0];
let dep_info = get_dependency_info(toplevel_crate_bin);
eprintln!("{toplevel_crate_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 3);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "runtime_dep" && p.kind == DependencyKind::Runtime));
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "build_dep_of_runtime_dep" && p.kind == DependencyKind::Build));
}*/
#[test]
fn test_workspace_member_version_info() {
// Test that `/path/to/cargo-auditable rustc -vV works when compiling a workspace member
//
// Never happens with Cargo - it does call `rustc -vV`,
// but either bypasses the wrapper or doesn't set CARGO_PRIMARY_PACKAGE=true.
// However it does happen with `sccache`:
// https://github.com/rust-secure-code/cargo-auditable/issues/87
let mut command = Command::new(EXE);
command.env("CARGO_PRIMARY_PACKAGE", "true");
command.args(["rustc", "-vV"]);
let status = command.status().unwrap();
assert!(status.success());
}
/*#[test]
fn test_wasm() {
test_wasm_inner(false);
test_wasm_inner(true);
}
fn test_wasm_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml =
PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/wasm_crate/Cargo.toml");
// Run in workspace root with default features
run_cargo_auditable(
workspace_cargo_toml,
&["--target=wasm32-unknown-unknown"],
&[],
sbom,
);
// check that the build types are propagated correctly
let dep_info = get_dependency_info(
"tests/fixtures/wasm_crate/target/wasm32-unknown-unknown/release/wasm_crate.wasm".into(),
);
eprintln!("wasm_crate.wasm dependency info: {dep_info:?}");
assert_eq!(dep_info.packages.len(), 16);
}
#[test]
fn test_path_not_equal_name() {
test_path_not_equal_name_inner(false);
test_path_not_equal_name_inner(true);
}
fn test_path_not_equal_name_inner(sbom: bool) {
// This tests a case where a path dependency's directory name is not equal to the crate name.
let cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/path_not_equal_name/foo/Cargo.toml");
let bins = run_cargo_auditable(cargo_toml, &[], &[], sbom);
let foo_bin = &bins.get("foo").unwrap()[0];
let dep_info = get_dependency_info(foo_bin);
eprintln!("{foo_bin} dependency info: {dep_info:?}");
assert!(dep_info.packages.len() == 3);
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "bar" && p.kind == DependencyKind::Runtime));
assert!(dep_info
.packages
.iter()
.any(|p| p.name == "baz" && p.kind == DependencyKind::Runtime));
}
#[test]
fn test_proc_macro() {
test_proc_macro_inner(false);
test_proc_macro_inner(true);
}
fn test_proc_macro_inner(sbom: bool) {
// Path to workspace fixture Cargo.toml. See that file for overview of workspace members and their dependencies.
let workspace_cargo_toml = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("tests/fixtures/proc-macro-dependency/Cargo.toml");
// Run in workspace root with default features
let bins = run_cargo_auditable(workspace_cargo_toml, &[], &[], sbom);
eprintln!("Proc macro binary map: {bins:?}");
// proc-macro-dependency should depend on
let binary = &bins.get("proc-macro-dependency").unwrap()[0];
let dep_info = get_dependency_info(binary);
eprintln!("{binary} dependency info: {dep_info:?}");
// locate the serde_derive proc macro package
let serde_derive_info = dep_info
.packages
.iter()
.find(|p| p.name == "serde_derive")
.expect("Could not find 'serde_derive' in the embedded dependency list!");
assert_eq!(serde_derive_info.kind, DependencyKind::Build);
// locate the syn package which is norm a dependency of serde-derive
let syn_info = dep_info
.packages
.iter()
.find(|p| p.name == "syn")
.expect("Could not find 'syn' in the embedded dependency list!");
assert_eq!(syn_info.kind, DependencyKind::Build);
}
*/
|