2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-09-11 09:53:42 -04:00
|
|
|
use deno_core::serde_json;
|
2023-01-12 20:59:13 -05:00
|
|
|
use test_util as util;
|
|
|
|
use test_util::TempDir;
|
2024-05-08 16:07:56 -04:00
|
|
|
use util::assert_contains;
|
2023-09-11 09:53:42 -04:00
|
|
|
use util::assert_starts_with;
|
2023-08-29 15:02:54 -04:00
|
|
|
use util::env_vars_for_npm_tests;
|
2024-05-08 16:07:56 -04:00
|
|
|
use util::PathRef;
|
2023-03-13 09:40:46 -04:00
|
|
|
use util::TestContext;
|
|
|
|
use util::TestContextBuilder;
|
2023-01-12 20:59:13 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn branch() {
|
|
|
|
run_coverage_text("branch", "ts");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn complex() {
|
|
|
|
run_coverage_text("complex", "ts");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn final_blankline() {
|
|
|
|
run_coverage_text("final_blankline", "js");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_snaps() {
|
|
|
|
no_snaps_included("no_snaps_included", "ts");
|
|
|
|
}
|
|
|
|
|
2023-06-08 14:10:37 -04:00
|
|
|
// TODO(mmastrac): The exclusion to make this test pass doesn't seem to work on windows.
|
|
|
|
#[cfg_attr(windows, ignore)]
|
2023-04-19 17:30:52 -04:00
|
|
|
#[test]
|
|
|
|
fn no_tests() {
|
|
|
|
no_tests_included("foo", "mts");
|
|
|
|
no_tests_included("foo", "ts");
|
|
|
|
no_tests_included("foo", "js");
|
|
|
|
}
|
|
|
|
|
2023-01-12 20:59:13 -05:00
|
|
|
#[test]
|
|
|
|
fn error_if_invalid_cache() {
|
2023-03-13 09:40:46 -04:00
|
|
|
let context = TestContextBuilder::new().use_temp_cwd().build();
|
2023-07-26 18:52:31 -04:00
|
|
|
let temp_dir_path = context.temp_dir().path();
|
|
|
|
let other_temp_dir = TempDir::new();
|
|
|
|
let other_tempdir = other_temp_dir.path().join("cov");
|
2023-01-12 20:59:13 -05:00
|
|
|
|
|
|
|
let invalid_cache_path = util::testdata_path().join("coverage/invalid_cache");
|
|
|
|
let mod_before_path = util::testdata_path()
|
|
|
|
.join(&invalid_cache_path)
|
|
|
|
.join("mod_before.ts");
|
|
|
|
let mod_after_path = util::testdata_path()
|
|
|
|
.join(&invalid_cache_path)
|
|
|
|
.join("mod_after.ts");
|
|
|
|
let mod_test_path = util::testdata_path()
|
|
|
|
.join(&invalid_cache_path)
|
|
|
|
.join("mod.test.ts");
|
|
|
|
|
2023-07-26 18:52:31 -04:00
|
|
|
let mod_temp_path = temp_dir_path.join("mod.ts");
|
|
|
|
let mod_test_temp_path = temp_dir_path.join("mod.test.ts");
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-11 08:58:55 -05:00
|
|
|
// Write the initial mod.ts file
|
2024-05-08 16:07:56 -04:00
|
|
|
mod_before_path.copy(&mod_temp_path);
|
2023-01-12 20:59:13 -05:00
|
|
|
// And the test file
|
2024-05-08 16:07:56 -04:00
|
|
|
mod_test_path.copy(&mod_test_temp_path);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
|
|
|
// Generate coverage
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
2023-07-26 18:52:31 -04:00
|
|
|
format!("--coverage={}", other_tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
|
|
|
// Modify the file between deno test and deno coverage, thus invalidating the cache
|
2024-05-08 16:07:56 -04:00
|
|
|
mod_after_path.copy(&mod_temp_path);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
2023-07-26 18:52:31 -04:00
|
|
|
.args_vec(vec!["coverage".to_string(), format!("{}/", other_tempdir)])
|
2023-03-13 09:40:46 -04:00
|
|
|
.run();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
output.assert_exit_code(1);
|
|
|
|
let out = output.combined_output();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
|
|
|
// Expect error
|
2023-03-13 09:40:46 -04:00
|
|
|
let error = util::strip_ansi_codes(out).to_string();
|
2024-05-08 16:07:56 -04:00
|
|
|
assert_contains!(error, "error: Missing transpiled source code");
|
|
|
|
assert_contains!(error, "Before generating coverage report, run `deno test --coverage` to ensure consistent state.");
|
2023-01-12 20:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn run_coverage_text(test_name: &str, extension: &str) {
|
2023-03-13 09:40:46 -04:00
|
|
|
let context = TestContext::default();
|
2023-07-26 18:52:31 -04:00
|
|
|
let tempdir = context.temp_dir();
|
2023-01-12 20:59:13 -05:00
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"-A".to_string(),
|
|
|
|
"--quiet".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("--coverage={}", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
format!("coverage/{test_name}_test.{extension}"),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
2023-12-11 22:42:57 -05:00
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
2023-12-12 06:53:41 -05:00
|
|
|
"--detailed".to_string(),
|
2023-12-11 22:42:57 -05:00
|
|
|
format!("{}/", tempdir),
|
|
|
|
])
|
2023-03-13 09:40:46 -04:00
|
|
|
.split_output()
|
|
|
|
.run();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
|
|
|
// Verify there's no "Check" being printed
|
2023-03-13 09:40:46 -04:00
|
|
|
assert!(output.stderr().is_empty());
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_stdout_matches_file(
|
2023-01-27 10:43:16 -05:00
|
|
|
util::testdata_path().join(format!("coverage/{test_name}_expected.out")),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
output.assert_exit_code(0);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
"--lcov".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("{}/", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
])
|
|
|
|
.run();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_matches_file(
|
2023-01-27 10:43:16 -05:00
|
|
|
util::testdata_path().join(format!("coverage/{test_name}_expected.lcov")),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
output.assert_exit_code(0);
|
2023-01-12 20:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn multifile_coverage() {
|
2023-03-13 09:40:46 -04:00
|
|
|
let context = TestContext::default();
|
2023-07-26 18:52:31 -04:00
|
|
|
let tempdir = context.temp_dir();
|
2023-01-12 20:59:13 -05:00
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("--coverage={}", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
format!("coverage/multifile/"),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
2023-12-11 22:42:57 -05:00
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
2023-12-12 06:53:41 -05:00
|
|
|
"--detailed".to_string(),
|
2023-12-11 22:42:57 -05:00
|
|
|
format!("{}/", tempdir),
|
|
|
|
])
|
2023-03-13 09:40:46 -04:00
|
|
|
.split_output()
|
|
|
|
.run();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
|
|
|
// Verify there's no "Check" being printed
|
2023-03-13 09:40:46 -04:00
|
|
|
assert!(output.stderr().is_empty());
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_stdout_matches_file(
|
2023-01-12 20:59:13 -05:00
|
|
|
util::testdata_path().join("coverage/multifile/expected.out"),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-03-13 09:40:46 -04:00
|
|
|
output.assert_exit_code(0);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
"--lcov".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("{}/", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
])
|
|
|
|
.run();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_matches_file(
|
2023-01-12 20:59:13 -05:00
|
|
|
util::testdata_path().join("coverage/multifile/expected.lcov"),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
output.assert_exit_code(0);
|
2023-01-12 20:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn no_snaps_included(test_name: &str, extension: &str) {
|
2023-03-13 09:40:46 -04:00
|
|
|
let context = TestContext::default();
|
2023-07-26 18:52:31 -04:00
|
|
|
let tempdir = context.temp_dir();
|
2023-01-12 20:59:13 -05:00
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
"--allow-read".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("--coverage={}", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
format!("coverage/no_snaps_included/{test_name}_test.{extension}"),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
|
|
|
"--include=no_snaps_included.ts".to_string(),
|
2023-12-12 06:53:41 -05:00
|
|
|
"--detailed".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("{}/", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
])
|
|
|
|
.split_output()
|
|
|
|
.run();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
|
|
|
// Verify there's no "Check" being printed
|
2023-03-13 09:40:46 -04:00
|
|
|
assert!(output.stderr().is_empty());
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_stdout_matches_file(
|
2023-01-12 20:59:13 -05:00
|
|
|
util::testdata_path().join("coverage/no_snaps_included/expected.out"),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-04-19 17:30:52 -04:00
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_tests_included(test_name: &str, extension: &str) {
|
|
|
|
let context = TestContext::default();
|
2023-07-26 18:52:31 -04:00
|
|
|
let tempdir = context.temp_dir();
|
2023-04-19 17:30:52 -04:00
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
"--allow-read".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("--coverage={}", tempdir),
|
2023-04-19 17:30:52 -04:00
|
|
|
format!("coverage/no_tests_included/{test_name}.test.{extension}"),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("--exclude={}", util::std_path().canonicalize()),
|
2023-12-12 06:53:41 -05:00
|
|
|
"--detailed".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("{}/", tempdir),
|
2023-04-19 17:30:52 -04:00
|
|
|
])
|
|
|
|
.split_output()
|
|
|
|
.run();
|
|
|
|
|
|
|
|
// Verify there's no "Check" being printed
|
|
|
|
assert!(output.stderr().is_empty());
|
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_stdout_matches_file(
|
2023-04-19 17:30:52 -04:00
|
|
|
util::testdata_path().join("coverage/no_tests_included/expected.out"),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
output.assert_exit_code(0);
|
2023-01-12 20:59:13 -05:00
|
|
|
}
|
|
|
|
|
2023-03-30 13:40:22 -04:00
|
|
|
#[test]
|
|
|
|
fn no_npm_cache_coverage() {
|
2023-08-29 15:02:54 -04:00
|
|
|
let context = TestContext::with_http_server();
|
2023-07-26 18:52:31 -04:00
|
|
|
let tempdir = context.temp_dir();
|
2023-03-30 13:40:22 -04:00
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
"--allow-read".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("--coverage={}", tempdir),
|
2023-03-30 13:40:22 -04:00
|
|
|
format!("coverage/no_npm_coverage/no_npm_coverage_test.ts"),
|
|
|
|
])
|
2023-08-29 15:02:54 -04:00
|
|
|
.envs(env_vars_for_npm_tests())
|
2023-03-30 13:40:22 -04:00
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
2023-12-11 22:42:57 -05:00
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
2023-12-12 06:53:41 -05:00
|
|
|
"--detailed".to_string(),
|
2023-12-11 22:42:57 -05:00
|
|
|
format!("{}/", tempdir),
|
|
|
|
])
|
2023-03-30 13:40:22 -04:00
|
|
|
.split_output()
|
|
|
|
.run();
|
|
|
|
|
|
|
|
// Verify there's no "Check" being printed
|
|
|
|
assert!(output.stderr().is_empty());
|
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_stdout_matches_file(
|
2023-03-30 13:40:22 -04:00
|
|
|
util::testdata_path().join("coverage/no_npm_coverage/expected.out"),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-03-30 13:40:22 -04:00
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
}
|
|
|
|
|
2023-01-12 20:59:13 -05:00
|
|
|
#[test]
|
|
|
|
fn no_transpiled_lines() {
|
2023-03-13 09:40:46 -04:00
|
|
|
let context = TestContext::default();
|
2023-07-26 18:52:31 -04:00
|
|
|
let tempdir = context.temp_dir();
|
2023-01-12 20:59:13 -05:00
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("--coverage={}", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
"coverage/no_transpiled_lines/".to_string(),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
|
|
|
"--include=no_transpiled_lines/index.ts".to_string(),
|
2023-12-12 06:53:41 -05:00
|
|
|
"--detailed".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("{}/", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_matches_file(
|
2023-01-12 20:59:13 -05:00
|
|
|
util::testdata_path().join("coverage/no_transpiled_lines/expected.out"),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
output.assert_exit_code(0);
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2023-03-13 09:40:46 -04:00
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
|
|
|
"--lcov".to_string(),
|
|
|
|
"--include=no_transpiled_lines/index.ts".to_string(),
|
2023-06-10 11:09:45 -04:00
|
|
|
format!("{}/", tempdir),
|
2023-03-13 09:40:46 -04:00
|
|
|
])
|
|
|
|
.run();
|
2023-01-12 20:59:13 -05:00
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
output.assert_matches_file(
|
2023-01-12 20:59:13 -05:00
|
|
|
util::testdata_path().join("coverage/no_transpiled_lines/expected.lcov"),
|
2024-05-08 16:07:56 -04:00
|
|
|
);
|
2023-03-13 09:40:46 -04:00
|
|
|
output.assert_exit_code(0);
|
2023-01-12 20:59:13 -05:00
|
|
|
}
|
2023-09-11 09:53:42 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_internal_code() {
|
|
|
|
let context = TestContext::default();
|
|
|
|
let tempdir = context.temp_dir();
|
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
format!("--coverage={}", tempdir),
|
|
|
|
"coverage/no_internal_code_test.ts".to_string(),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
// Check that coverage files contain no internal urls
|
2024-05-08 16:07:56 -04:00
|
|
|
let paths = tempdir.read_dir();
|
2023-09-11 09:53:42 -04:00
|
|
|
for path in paths {
|
2024-05-08 16:07:56 -04:00
|
|
|
let unwrapped = PathRef::new(path.unwrap().path());
|
|
|
|
let data = unwrapped.read_to_string();
|
2023-09-11 09:53:42 -04:00
|
|
|
|
|
|
|
let value: serde_json::Value = serde_json::from_str(&data).unwrap();
|
|
|
|
let url = value["url"].as_str().unwrap();
|
|
|
|
assert_starts_with!(url, "file:");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn no_internal_node_code() {
|
|
|
|
let context = TestContext::default();
|
|
|
|
let tempdir = context.temp_dir();
|
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
"--no-check".to_string(),
|
|
|
|
format!("--coverage={}", tempdir),
|
|
|
|
"coverage/no_internal_node_code_test.ts".to_string(),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
// Check that coverage files contain no internal urls
|
2024-05-08 16:07:56 -04:00
|
|
|
let paths = tempdir.read_dir();
|
2023-09-11 09:53:42 -04:00
|
|
|
for path in paths {
|
2024-05-08 16:07:56 -04:00
|
|
|
let unwrapped = PathRef::new(path.unwrap().path());
|
|
|
|
let data = unwrapped.read_to_string();
|
2023-09-11 09:53:42 -04:00
|
|
|
|
|
|
|
let value: serde_json::Value = serde_json::from_str(&data).unwrap();
|
|
|
|
let url = value["url"].as_str().unwrap();
|
|
|
|
assert_starts_with!(url, "file:");
|
|
|
|
}
|
|
|
|
}
|
2023-12-08 02:54:52 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_html_reporter() {
|
|
|
|
let context = TestContext::default();
|
|
|
|
let tempdir = context.temp_dir();
|
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
format!("--coverage={}", tempdir),
|
|
|
|
"coverage/multisource".to_string(),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"coverage".to_string(),
|
|
|
|
"--html".to_string(),
|
|
|
|
format!("{}/", tempdir),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.assert_matches_text("HTML coverage report has been generated at [WILDCARD]/cov/html/index.html\n");
|
|
|
|
|
2024-05-08 16:07:56 -04:00
|
|
|
let index_html = tempdir.join("html").join("index.html").read_to_string();
|
|
|
|
assert_contains!(index_html, "<h1>Coverage report for all files</h1>");
|
|
|
|
assert_contains!(index_html, "baz/");
|
|
|
|
assert_contains!(index_html, "href='baz/index.html'");
|
|
|
|
assert_contains!(index_html, "foo.ts");
|
|
|
|
assert_contains!(index_html, "href='foo.ts.html'");
|
|
|
|
assert_contains!(index_html, "bar.ts");
|
|
|
|
assert_contains!(index_html, "href='bar.ts.html'");
|
|
|
|
|
|
|
|
let foo_ts_html = tempdir.join("html").join("foo.ts.html").read_to_string();
|
|
|
|
assert_contains!(foo_ts_html, "<h1>Coverage report for foo.ts</h1>");
|
|
|
|
|
|
|
|
let bar_ts_html = tempdir.join("html").join("bar.ts.html").read_to_string();
|
|
|
|
assert_contains!(bar_ts_html, "<h1>Coverage report for bar.ts</h1>");
|
2023-12-11 05:24:20 -05:00
|
|
|
// Check <T> in source code is escaped to <T>
|
2024-05-08 16:07:56 -04:00
|
|
|
assert_contains!(bar_ts_html, "<T>");
|
|
|
|
|
|
|
|
let baz_index_html = tempdir
|
|
|
|
.join("html")
|
|
|
|
.join("baz")
|
|
|
|
.join("index.html")
|
|
|
|
.read_to_string();
|
|
|
|
assert_contains!(baz_index_html, "<h1>Coverage report for baz/</h1>");
|
|
|
|
assert_contains!(baz_index_html, "qux.ts");
|
|
|
|
assert_contains!(baz_index_html, "href='qux.ts.html'");
|
|
|
|
assert_contains!(baz_index_html, "quux.ts");
|
|
|
|
assert_contains!(baz_index_html, "href='quux.ts.html'");
|
|
|
|
|
|
|
|
let baz_qux_ts_html = tempdir
|
|
|
|
.join("html")
|
|
|
|
.join("baz")
|
|
|
|
.join("qux.ts.html")
|
|
|
|
.read_to_string();
|
|
|
|
assert_contains!(baz_qux_ts_html, "<h1>Coverage report for baz/qux.ts</h1>");
|
|
|
|
|
|
|
|
let baz_quux_ts_html = tempdir
|
|
|
|
.join("html")
|
|
|
|
.join("baz")
|
|
|
|
.join("quux.ts.html")
|
|
|
|
.read_to_string();
|
|
|
|
assert_contains!(
|
|
|
|
baz_quux_ts_html,
|
|
|
|
"<h1>Coverage report for baz/quux.ts</h1>"
|
|
|
|
);
|
2023-12-08 02:54:52 -05:00
|
|
|
}
|
2023-12-11 22:42:57 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_summary_reporter() {
|
|
|
|
let context = TestContext::default();
|
|
|
|
let tempdir = context.temp_dir();
|
|
|
|
let tempdir = tempdir.path().join("cov");
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
format!("--coverage={}", tempdir),
|
|
|
|
"coverage/multisource".to_string(),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.skip_output_check();
|
|
|
|
|
|
|
|
let output = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec!["coverage".to_string(), format!("{}/", tempdir)])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(0);
|
|
|
|
output.assert_matches_text(
|
|
|
|
"----------------------------------
|
|
|
|
File | Branch % | Line % |
|
|
|
|
----------------------------------
|
|
|
|
bar.ts | 0.0 | 57.1 |
|
|
|
|
baz/quux.ts | 0.0 | 28.6 |
|
|
|
|
baz/qux.ts | 100.0 | 100.0 |
|
|
|
|
foo.ts | 50.0 | 76.9 |
|
|
|
|
----------------------------------
|
|
|
|
All files | 40.0 | 61.0 |
|
|
|
|
----------------------------------
|
|
|
|
",
|
|
|
|
);
|
|
|
|
}
|
2024-05-13 17:18:38 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_collect_summary_with_no_matches() {
|
|
|
|
let context: TestContext = TestContext::default();
|
|
|
|
let temp_dir: &TempDir = context.temp_dir();
|
|
|
|
let temp_dir_path: PathRef = PathRef::new(temp_dir.path().join("cov"));
|
|
|
|
|
|
|
|
let empty_test_dir: PathRef = temp_dir_path.join("empty_dir");
|
|
|
|
empty_test_dir.create_dir_all();
|
|
|
|
|
|
|
|
let output: util::TestCommandOutput = context
|
|
|
|
.new_command()
|
|
|
|
.args_vec(vec![
|
|
|
|
"test".to_string(),
|
|
|
|
"--quiet".to_string(),
|
|
|
|
"--allow-read".to_string(),
|
|
|
|
format!("--coverage={}", temp_dir_path.as_path().display()),
|
|
|
|
empty_test_dir.as_path().to_str().unwrap().to_string(),
|
|
|
|
])
|
|
|
|
.run();
|
|
|
|
|
|
|
|
output.assert_exit_code(1);
|
|
|
|
|
|
|
|
let actual: &str = output.combined_output();
|
|
|
|
let expected_message: &str = "error: No test modules found";
|
|
|
|
assert_contains!(actual, expected_message);
|
|
|
|
|
|
|
|
// Check the contents of the coverage directory, ignoring 'empty_dir'
|
|
|
|
let mut unexpected_contents: Vec<std::path::PathBuf> = Vec::new();
|
|
|
|
for entry in std::fs::read_dir(temp_dir_path.as_path())
|
|
|
|
.unwrap()
|
|
|
|
.flatten()
|
|
|
|
{
|
|
|
|
if entry.file_name() != "empty_dir" {
|
|
|
|
// Ignore the 'empty_dir'
|
|
|
|
unexpected_contents.push(entry.path());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Report unexpected contents
|
|
|
|
if !unexpected_contents.is_empty() {
|
|
|
|
eprintln!("Unexpected files or directories in the coverage directory:");
|
|
|
|
for path in &unexpected_contents {
|
|
|
|
eprintln!("{:?}", path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assert that the coverage directory is otherwise empty
|
|
|
|
assert!(
|
|
|
|
unexpected_contents.is_empty(),
|
|
|
|
"Expected the coverage directory to be empty except for 'empty_dir', but found: {:?}",
|
|
|
|
unexpected_contents
|
|
|
|
);
|
|
|
|
}
|