2021-06-27 13:27:36 -04:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
use std::fs;
|
|
|
|
use tempfile::TempDir;
|
|
|
|
use test_util as util;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn branch() {
|
|
|
|
let tempdir = TempDir::new().expect("tempdir fail");
|
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
let status = util::deno_cmd()
|
2021-08-11 10:20:47 -04:00
|
|
|
.current_dir(util::testdata_path())
|
2021-06-27 13:27:36 -04:00
|
|
|
.arg("test")
|
|
|
|
.arg("--quiet")
|
|
|
|
.arg("--unstable")
|
|
|
|
.arg(format!("--coverage={}", tempdir.to_str().unwrap()))
|
2021-08-11 10:20:47 -04:00
|
|
|
.arg("coverage/branch_test.ts")
|
2021-06-27 13:27:36 -04:00
|
|
|
.stdout(std::process::Stdio::piped())
|
|
|
|
.stderr(std::process::Stdio::inherit())
|
|
|
|
.status()
|
|
|
|
.expect("failed to spawn test runner");
|
|
|
|
|
|
|
|
assert!(status.success());
|
|
|
|
|
|
|
|
let output = util::deno_cmd()
|
2021-08-11 10:20:47 -04:00
|
|
|
.current_dir(util::testdata_path())
|
2021-06-27 13:27:36 -04:00
|
|
|
.arg("coverage")
|
|
|
|
.arg("--quiet")
|
|
|
|
.arg("--unstable")
|
|
|
|
.arg(format!("{}/", tempdir.to_str().unwrap()))
|
|
|
|
.stdout(std::process::Stdio::piped())
|
|
|
|
.stderr(std::process::Stdio::inherit())
|
|
|
|
.output()
|
|
|
|
.expect("failed to spawn coverage reporter");
|
|
|
|
|
|
|
|
let actual =
|
|
|
|
util::strip_ansi_codes(std::str::from_utf8(&output.stdout).unwrap())
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
let expected = fs::read_to_string(
|
2021-08-11 10:20:47 -04:00
|
|
|
util::testdata_path().join("coverage/expected_branch.out"),
|
2021-06-27 13:27:36 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
if !util::wildcard_match(&expected, &actual) {
|
|
|
|
println!("OUTPUT\n{}\nOUTPUT", actual);
|
|
|
|
println!("EXPECTED\n{}\nEXPECTED", expected);
|
|
|
|
panic!("pattern match failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(output.status.success());
|
|
|
|
|
|
|
|
let output = util::deno_cmd()
|
2021-08-11 10:20:47 -04:00
|
|
|
.current_dir(util::testdata_path())
|
2021-06-27 13:27:36 -04:00
|
|
|
.arg("coverage")
|
|
|
|
.arg("--quiet")
|
|
|
|
.arg("--unstable")
|
|
|
|
.arg("--lcov")
|
|
|
|
.arg(format!("{}/", tempdir.to_str().unwrap()))
|
|
|
|
.stdout(std::process::Stdio::piped())
|
|
|
|
.stderr(std::process::Stdio::inherit())
|
|
|
|
.output()
|
|
|
|
.expect("failed to spawn coverage reporter");
|
|
|
|
|
|
|
|
let actual =
|
|
|
|
util::strip_ansi_codes(std::str::from_utf8(&output.stdout).unwrap())
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
let expected = fs::read_to_string(
|
2021-08-11 10:20:47 -04:00
|
|
|
util::testdata_path().join("coverage/expected_branch.lcov"),
|
2021-06-27 13:27:36 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
if !util::wildcard_match(&expected, &actual) {
|
|
|
|
println!("OUTPUT\n{}\nOUTPUT", actual);
|
|
|
|
println!("EXPECTED\n{}\nEXPECTED", expected);
|
|
|
|
panic!("pattern match failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(output.status.success());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn complex() {
|
|
|
|
let tempdir = TempDir::new().expect("tempdir fail");
|
|
|
|
let status = util::deno_cmd()
|
2021-08-11 10:20:47 -04:00
|
|
|
.current_dir(util::testdata_path())
|
2021-06-27 13:27:36 -04:00
|
|
|
.arg("test")
|
|
|
|
.arg("--quiet")
|
|
|
|
.arg("--unstable")
|
|
|
|
.arg(format!("--coverage={}", tempdir.path().to_str().unwrap()))
|
2021-08-11 10:20:47 -04:00
|
|
|
.arg("coverage/complex_test.ts")
|
2021-06-27 13:27:36 -04:00
|
|
|
.stdout(std::process::Stdio::piped())
|
|
|
|
.stderr(std::process::Stdio::inherit())
|
|
|
|
.status()
|
|
|
|
.expect("failed to spawn test runner");
|
|
|
|
|
|
|
|
assert!(status.success());
|
|
|
|
|
|
|
|
let output = util::deno_cmd()
|
2021-08-11 10:20:47 -04:00
|
|
|
.current_dir(util::testdata_path())
|
2021-06-27 13:27:36 -04:00
|
|
|
.arg("coverage")
|
|
|
|
.arg("--quiet")
|
|
|
|
.arg("--unstable")
|
|
|
|
.arg(format!("{}/", tempdir.path().to_str().unwrap()))
|
|
|
|
.stdout(std::process::Stdio::piped())
|
|
|
|
.stderr(std::process::Stdio::inherit())
|
|
|
|
.output()
|
|
|
|
.expect("failed to spawn coverage reporter");
|
|
|
|
|
|
|
|
let actual =
|
|
|
|
util::strip_ansi_codes(std::str::from_utf8(&output.stdout).unwrap())
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
let expected = fs::read_to_string(
|
2021-08-11 10:20:47 -04:00
|
|
|
util::testdata_path().join("coverage/expected_complex.out"),
|
2021-06-27 13:27:36 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
if !util::wildcard_match(&expected, &actual) {
|
|
|
|
println!("OUTPUT\n{}\nOUTPUT", actual);
|
|
|
|
println!("EXPECTED\n{}\nEXPECTED", expected);
|
|
|
|
panic!("pattern match failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(output.status.success());
|
|
|
|
|
|
|
|
let output = util::deno_cmd()
|
2021-08-11 10:20:47 -04:00
|
|
|
.current_dir(util::testdata_path())
|
2021-06-27 13:27:36 -04:00
|
|
|
.arg("coverage")
|
|
|
|
.arg("--quiet")
|
|
|
|
.arg("--unstable")
|
|
|
|
.arg("--lcov")
|
|
|
|
.arg(format!("{}/", tempdir.path().to_str().unwrap()))
|
|
|
|
.stdout(std::process::Stdio::piped())
|
|
|
|
.stderr(std::process::Stdio::inherit())
|
|
|
|
.output()
|
|
|
|
.expect("failed to spawn coverage reporter");
|
|
|
|
|
|
|
|
let actual =
|
|
|
|
util::strip_ansi_codes(std::str::from_utf8(&output.stdout).unwrap())
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
let expected = fs::read_to_string(
|
2021-08-11 10:20:47 -04:00
|
|
|
util::testdata_path().join("coverage/expected_complex.lcov"),
|
2021-06-27 13:27:36 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
if !util::wildcard_match(&expected, &actual) {
|
|
|
|
println!("OUTPUT\n{}\nOUTPUT", actual);
|
|
|
|
println!("EXPECTED\n{}\nEXPECTED", expected);
|
|
|
|
panic!("pattern match failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(output.status.success());
|
|
|
|
}
|