use std::rc::Rc;
use anyhow::Result;
use serde::Serialize;
use crate::arg_parser::CliArgParserKind;
use crate::arg_parser::CliArgs;
use crate::arg_parser::FilePatternArgs;
use crate::arg_parser::OutputFilePathsSubCommand;
use crate::arg_parser::create_cli_parser;
use crate::environment::CanonicalizedPathBuf;
use crate::environment::Environment;
use crate::plugins::PluginResolver;
use crate::resolution::ResolvePluginsScopeAndPathsOptions;
use crate::resolution::get_plugins_scope_from_args;
use crate::resolution::resolve_plugins_scope_and_paths;
use crate::utils::get_table_text;
use crate::utils::is_out_of_date;
pub fn output_version<TEnvironment: Environment>(environment: &TEnvironment) -> Result<()> {
log_stdout_info!(environment, "{} {}", env!("CARGO_PKG_NAME"), environment.cli_version());
Ok(())
}
pub async fn output_help<TEnvironment: Environment>(
args: &CliArgs,
environment: &TEnvironment,
plugin_resolver: &Rc<PluginResolver<TEnvironment>>,
help_text: &str,
) -> Result<()> {
log_stdout_info!(environment, help_text);
let scope_result = get_plugins_scope_from_args(args, environment, plugin_resolver).await;
match scope_result {
Ok(scope) => {
if !scope.plugins.is_empty() {
let table_text = get_table_text(scope.plugins.values().map(|plugin| (plugin.name(), plugin.info().help_url.as_str())).collect());
log_stdout_info!(environment, "\nPLUGINS HELP:");
log_stdout_info!(
environment,
&console_static_text::ansi::strip_ansi_codes(&table_text.render(
4, None,
))
);
}
}
Err(err) => {
log_debug!(environment, "Error getting plugins for help. {:#}", err.to_string());
}
}
if let Some(latest_version) = is_out_of_date(environment).await {
log_stdout_info!(
environment,
"\nLatest version: {} (Current is {})\nDownload the latest version by running: dprint upgrade",
latest_version,
environment.cli_version(),
);
}
Ok(())
}
pub async fn output_license<TEnvironment: Environment>(
args: &CliArgs,
environment: &TEnvironment,
plugin_resolver: &Rc<PluginResolver<TEnvironment>>,
) -> Result<()> {
log_stdout_info!(environment, "==== DPRINT CLI LICENSE ====");
log_stdout_info!(environment, std::str::from_utf8(include_bytes!("../../LICENSE"))?);
for plugin in get_plugins_scope_from_args(args, environment, plugin_resolver).await?.plugins.values() {
log_stdout_info!(environment, "\n==== {} LICENSE ====", plugin.name().to_uppercase());
let initialized_plugin = plugin.initialize().await?;
log_stdout_info!(environment, &initialized_plugin.license_text().await?);
}
Ok(())
}
pub fn clear_cache(environment: &impl Environment) -> Result<()> {
let cache_dir = environment.get_cache_dir();
remove_cache_dir_killing_processes(environment, &cache_dir)?;
log_stdout_info!(environment, "Deleted {}", cache_dir.display());
Ok(())
}
fn remove_cache_dir_killing_processes(environment: &impl Environment, cache_dir: &CanonicalizedPathBuf) -> std::io::Result<()> {
let mut err = match environment.remove_dir_all(cache_dir) {
Ok(()) => return Ok(()),
Err(err) => err,
};
let retries = std::cmp::max(1, environment.kill_processes_using_dir(cache_dir) * 2);
for _ in 0..retries {
match environment.remove_dir_all(cache_dir) {
Ok(()) => return Ok(()),
Err(e) => {
log_debug!(environment, "Failed deleting cache directory. Killing running processes and retrying. {:#}", e);
err = e;
environment.kill_processes_using_dir(cache_dir);
}
}
}
Err(err)
}
pub async fn output_file_paths<TEnvironment: Environment>(
cmd: &OutputFilePathsSubCommand,
args: &CliArgs,
environment: &TEnvironment,
plugin_resolver: &Rc<PluginResolver<TEnvironment>>,
) -> Result<()> {
let scopes = resolve_plugins_scope_and_paths(
args,
&cmd.patterns,
environment,
plugin_resolver,
ResolvePluginsScopeAndPathsOptions { skip_traversal: false },
)
.await?;
let file_paths = scopes.iter().flat_map(|x| x.file_paths_by_plugins.all_file_paths());
for file_path in file_paths {
log_stdout_info!(environment, "{}", file_path.display())
}
Ok(())
}
pub async fn incremental_state<TEnvironment: Environment>(
args: &CliArgs,
environment: &TEnvironment,
plugin_resolver: &Rc<PluginResolver<TEnvironment>>,
) -> Result<()> {
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct IncrementalState {
configs: Vec<ConfigIncrementalState>,
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct ConfigIncrementalState {
path: String,
hash: String,
plugins: Vec<PluginIncrementalState>,
}
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
struct PluginIncrementalState {
name: String,
version: String,
}
let scopes = resolve_plugins_scope_and_paths(
args,
&FilePatternArgs::default(),
environment,
plugin_resolver,
ResolvePluginsScopeAndPathsOptions { skip_traversal: false },
)
.await?;
let mut configs = Vec::new();
for scope_and_paths in scopes.iter() {
let scope = &scope_and_paths.scope;
let Some(config) = scope.config.as_ref() else {
continue;
};
scope.ensure_valid_for_cli_args(args)?;
configs.push(ConfigIncrementalState {
path: config.source.to_string(),
hash: format!("{:016x}", scope.plugins_hash()),
plugins: scope
.plugins
.values()
.map(|plugin| PluginIncrementalState {
name: plugin.name().to_string(),
version: plugin.info().version.to_string(),
})
.collect(),
});
}
configs.sort_by(|a, b| a.path.cmp(&b.path));
let output = IncrementalState { configs };
environment.log_machine_readable(serde_json::to_string_pretty(&output)?.as_bytes());
Ok(())
}
pub fn completions<TEnvironment: Environment>(shell: clap_complete::Shell, environment: &TEnvironment) -> Result<()> {
let mut cmd = create_cli_parser(CliArgParserKind::ForCompletions);
let mut buffer = Vec::new();
clap_complete::generate(shell, &mut cmd, "dprint", &mut buffer);
environment.log_machine_readable(&buffer);
Ok(())
}
#[cfg(test)]
mod test {
use pretty_assertions::assert_eq;
use crate::environment::Environment;
use crate::environment::TestEnvironment;
use crate::environment::TestEnvironmentBuilder;
use crate::test_helpers::get_expected_help_text;
use crate::test_helpers::run_test_cli;
#[test]
fn should_output_version_with_v() {
let environment = TestEnvironment::new();
run_test_cli(vec!["-v"], &environment).unwrap();
let logged_messages = environment.take_stdout_messages();
assert_eq!(logged_messages, vec![format!("dprint {}", environment.cli_version())]);
}
#[test]
fn should_output_version_with_no_plugins() {
let environment = TestEnvironment::new();
run_test_cli(vec!["--version"], &environment).unwrap();
let logged_messages = environment.take_stdout_messages();
assert_eq!(logged_messages, vec![format!("dprint {}", environment.cli_version())]);
}
#[test]
fn should_output_version_and_ignore_plugins() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_and_process_plugin().build();
run_test_cli(vec!["--version"], &environment).unwrap();
let logged_messages = environment.take_stdout_messages();
assert_eq!(logged_messages, vec![format!("dprint {}", environment.cli_version())]);
}
#[test]
fn should_output_help_with_no_plugins() {
let environment = TestEnvironment::new();
run_test_cli(vec!["--help"], &environment).unwrap();
let logged_messages = environment.take_stdout_messages();
assert_eq!(logged_messages, vec![get_expected_help_text()]);
}
#[test]
fn should_output_help_no_sub_commands() {
let environment = TestEnvironment::new();
run_test_cli(vec![], &environment).unwrap();
let logged_messages = environment.take_stdout_messages();
assert_eq!(logged_messages, vec![get_expected_help_text()]);
}
#[test]
fn should_output_help_with_plugins() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_and_process_plugin().build();
run_test_cli(vec!["--help"], &environment).unwrap();
assert_eq!(
environment.take_stdout_messages(),
vec![
get_expected_help_text(),
"\nPLUGINS HELP:",
" test-plugin https://dprint.dev/plugins/test\r\n test-process-plugin https://dprint.dev/plugins/test-process"
]
);
}
#[test]
fn should_output_help_when_cli_not_out_of_date() {
let environment = TestEnvironment::new();
environment.add_remote_file_bytes("https://plugins.dprint.dev/cli.json", r#"{ "version": "0.0.0" }"#.as_bytes().to_vec());
run_test_cli(vec!["--help"], &environment).unwrap();
let logged_messages = environment.take_stdout_messages();
assert_eq!(logged_messages, vec![get_expected_help_text()]);
}
#[test]
fn should_output_help_when_cli_out_of_date() {
let environment = TestEnvironment::new();
environment.add_remote_file_bytes("https://plugins.dprint.dev/cli.json", r#"{ "version": "0.1.0" }"#.as_bytes().to_vec());
run_test_cli(vec!["--help"], &environment).unwrap();
let logged_messages = environment.take_stdout_messages();
assert_eq!(
logged_messages,
vec![
get_expected_help_text(),
concat!(
"\nLatest version: 0.1.0 (Current is 0.0.0)",
"\nDownload the latest version by running: dprint upgrade",
)
]
);
}
#[test]
fn should_output_resolved_file_paths() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_and_process_plugin()
.write_file("/file.txt", "const t=4;")
.write_file("/file2.txt", "const t=4;")
.write_file("/file3.txt_ps", "const t=4;")
.build();
run_test_cli(vec!["output-file-paths", "**/*.*"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.txt", "/file2.txt", "/file3.txt_ps"]);
}
#[test]
fn should_not_output_file_paths_not_supported_by_plugins() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_and_process_plugin()
.write_file("/file.ts", "const t=4;")
.write_file("/file2.ts", "const t=4;")
.build();
run_test_cli(vec!["output-file-paths", "**/*.*"], &environment).unwrap();
assert_eq!(environment.take_stdout_messages().len(), 0);
}
#[test]
fn should_output_resolved_file_paths_when_using_backslashes() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_and_process_plugin()
.write_file("/file.txt", "const t=4;")
.write_file("/file2.txt", "const t=4;")
.write_file("/file3.txt_ps", "const t=4;")
.build();
run_test_cli(vec!["output-file-paths", "**\\*.*"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.txt", "/file2.txt", "/file3.txt_ps"]);
}
#[test]
fn should_output_associations_in_resolved_paths() {
let environment = TestEnvironmentBuilder::new()
.add_remote_wasm_plugin()
.with_default_config(|config_file| {
config_file
.add_includes("**/*.other")
.add_config_section(
"test-plugin",
r#"{
"associations": [
"**/*.other"
],
"ending": "wasm"
}"#,
)
.add_remote_wasm_plugin();
})
.write_file("/file.txt", "") .write_file("/file.other", "")
.initialize()
.build();
run_test_cli(vec!["output-file-paths", "**/*.*"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.other"]);
}
#[test]
fn should_handle_associations_with_only_exclude() {
let environment = TestEnvironmentBuilder::new()
.add_remote_process_plugin()
.add_remote_wasm_plugin()
.with_default_config(|config_file| {
config_file
.add_config_section(
"test-plugin",
r#"{
"associations": [
"!**/exclude/**/*.txt"
],
"ending": "wasm"
}"#,
)
.add_config_section(
"testProcessPlugin",
r#"{
"associations": [
"!**/exclude/test-process-plugin-exact-file"
],
}"#,
)
.add_remote_process_plugin()
.add_remote_wasm_plugin();
})
.write_file("/file.txt", "")
.write_file("/test/exclude/other.txt", "")
.write_file("/test/exclude/test-process-plugin-exact-file", "")
.write_file("/test/exclude/test.txt_ps", "")
.write_file("/test/test-process-plugin-exact-file", "")
.initialize()
.build();
run_test_cli(vec!["output-file-paths", "**/*"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(
logged_messages,
vec!["/file.txt", "/test/exclude/test.txt_ps", "/test/test-process-plugin-exact-file"]
);
}
#[test]
fn should_filter_by_cwd_in_sub_dir() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt").add_excludes("sub/file4.txt");
})
.write_file("/file.txt", "const t=4;")
.write_file("/file2.txt", "const t=4;")
.write_file("/sub/file3.txt", "const t=4;")
.write_file("/sub/file4.txt", "const t=4;")
.write_file("/sub2/file5.txt", "const t=4;")
.set_cwd("/sub")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/sub/file3.txt"]);
}
#[test]
fn providing_includes_to_cli_should_not_override_negated_includes() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt")
.add_includes("!sub/file4.txt")
.add_includes("!sub3/sub/**/*.txt")
.add_includes("sub3/sub/dir/file.txt");
})
.write_file("/file.txt", "const t=4;")
.write_file("/file2.txt", "const t=4;")
.write_file("/sub/file3.txt", "const t=4;")
.write_file("/sub/file4.txt", "const t=4;")
.write_file("/sub2/file5.txt", "const t=4;")
.write_file("/sub3/sub/dir/file.txt", "const t=4;")
.write_file("/sub3/sub/dir/ignored.txt", "const t=4;")
.build();
{
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(
logged_messages,
vec!["/file.txt", "/file2.txt", "/sub/file3.txt", "/sub2/file5.txt", "/sub3/sub/dir/file.txt"]
);
}
{
run_test_cli(vec!["output-file-paths", "./sub/*.*"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(
logged_messages,
vec![
"/sub/file3.txt",
]
);
}
{
run_test_cli(vec!["output-file-paths", "./sub3/**/*.*"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(
logged_messages,
vec![
"/sub3/sub/dir/file.txt",
]
);
}
}
#[test]
fn should_respect_gitignore() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt");
})
.write_file("/file1.txt", "")
.write_file("/file2.txt", "")
.write_file("/file3.txt", "")
.write_file(".gitignore", "file2.txt")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file1.txt", "/file3.txt",]);
}
#[test]
fn should_respect_gitignore_sub_dir() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt");
})
.write_file("/file1.txt", "")
.write_file("/file2.txt", "")
.write_file("/file3.txt", "")
.write_file("/sub/.gitignore", "file1.txt")
.write_file("/sub/file1.txt", "")
.write_file("/sub/file2.txt", "")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file1.txt", "/file2.txt", "/file3.txt", "/sub/file2.txt"]);
}
#[test]
fn should_include_gitignored_explicitly_specified_file() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt").add_includes("file1.txt");
})
.write_file("/file1.txt", "")
.write_file("/file2.txt", "")
.write_file("/.gitignore", "file1.txt")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file1.txt", "/file2.txt"]);
}
#[test]
fn should_include_gitignored_explicitly_specified_dir() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt").add_includes("sub_dir");
})
.write_file("/file.txt", "")
.write_file("/sub_dir/file.txt", "")
.write_file("/sub_dir/sub/file.txt", "")
.write_file("/sub_dir2/file.txt", "")
.write_file("/.gitignore", "sub_dir\nsub_dir2")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.txt", "/sub_dir/file.txt", "/sub_dir/sub/file.txt"]);
}
#[test]
fn unexcluding_gitignored_file() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_excludes("!file1.txt");
})
.write_file("/file1.txt", "")
.write_file("/.gitignore", "file1.txt")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file1.txt"]);
}
#[test]
fn unexcluding_gitignored_dir() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_excludes("!sub_dir");
})
.write_file("/file1.txt", "")
.write_file("/sub_dir/sub.txt", "")
.write_file("/file2.txt", "")
.write_file("/.gitignore", "file1.txt\nsub_dir")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file2.txt", "/sub_dir/sub.txt"]);
}
#[test]
fn excluded_include_and_excluded_gitignore() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt").add_includes("!sub/sub_dir/*.txt");
})
.write_file("/sub/sub_dir/.gitignore", "!not_ignored.txt\n")
.write_file("/sub/sub_dir/not_ignored.txt", "")
.write_file("/sub/sub_dir/sub.txt", "")
.write_file("/data.txt", "")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/data.txt"]);
}
#[test]
fn include_and_excluded_gitignore_subdir() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt");
})
.write_file("/sub/sub_dir/.gitignore", "ignored.txt\n")
.write_file("/sub/sub_dir/ignored.txt", "")
.write_file("/sub/sub_dir/sub.txt", "")
.write_file("/data.txt", "")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/data.txt", "/sub/sub_dir/sub.txt"]);
}
#[test]
fn no_gitignore_flag() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt");
})
.write_file("/file1.txt", "")
.write_file("/file2.txt", "")
.write_file("/file3.txt", "")
.write_file(".gitignore", "file2.txt")
.build();
run_test_cli(vec!["output-file-paths", "--no-gitignore"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file1.txt", "/file2.txt", "/file3.txt"]);
}
#[test]
fn no_gitignore_flag_sub_dir() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt");
})
.write_file("/file1.txt", "")
.write_file("/sub/.gitignore", "file1.txt")
.write_file("/sub/file1.txt", "")
.write_file("/sub/file2.txt", "")
.build();
run_test_cli(vec!["output-file-paths", "--no-gitignore"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file1.txt", "/sub/file1.txt", "/sub/file2.txt"]);
}
#[test]
fn no_gitignore_flag_ignored_dir() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt");
})
.write_file("/file.txt", "")
.write_file("/ignored_dir/file.txt", "")
.write_file("/ignored_dir/sub/file.txt", "")
.write_file("/.gitignore", "ignored_dir")
.build();
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.txt"]);
run_test_cli(vec!["output-file-paths", "--no-gitignore"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.txt", "/ignored_dir/file.txt", "/ignored_dir/sub/file.txt"]);
}
#[test]
fn global_gitignore_env_var() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt");
})
.write_file("/.git/HEAD", "")
.write_file("/global_ignore", "ignored.txt")
.write_file("/file.txt", "")
.write_file("/ignored.txt", "")
.write_file("/sub/ignored.txt", "")
.build();
environment.set_global_gitignore_path("/global_ignore");
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.txt", "/ignored.txt", "/sub/ignored.txt"]);
environment.set_env_var("DPRINT_GLOBAL_GITIGNORE", Some("1"));
run_test_cli(vec!["output-file-paths"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.txt"]);
run_test_cli(vec!["output-file-paths", "--no-gitignore"], &environment).unwrap();
let mut logged_messages = environment.take_stdout_messages();
logged_messages.sort();
assert_eq!(logged_messages, vec!["/file.txt", "/ignored.txt", "/sub/ignored.txt"]);
}
#[test]
fn should_clear_cache_directory() {
let environment = TestEnvironment::new();
environment.mk_dir_all("/cache").unwrap();
assert_eq!(environment.path_exists("/cache"), true);
run_test_cli(vec!["clear-cache"], &environment).unwrap();
assert_eq!(environment.take_stdout_messages(), vec!["Deleted /cache"]);
assert_eq!(environment.path_exists("/cache"), false);
}
#[test]
fn should_clear_cache_directory_killing_running_process_plugins() {
let environment = TestEnvironment::new();
let plugin_exe = "/cache/plugins/test-plugin/0.1.0/x86_64/test-plugin.exe";
environment.mk_dir_all("/cache/plugins/test-plugin/0.1.0/x86_64").unwrap();
environment.write_file(plugin_exe, "").unwrap();
environment.add_running_process(plugin_exe);
run_test_cli(vec!["clear-cache"], &environment).unwrap();
assert_eq!(environment.take_stdout_messages(), vec!["Deleted /cache"]);
assert_eq!(environment.path_exists("/cache"), false);
assert_eq!(environment.is_process_running(plugin_exe), false);
}
#[test]
fn should_clear_cache_directory_retrying_when_process_plugin_restarts() {
let environment = TestEnvironment::new();
let plugin_exe = "/cache/plugins/test-plugin/0.1.0/x86_64/test-plugin.exe";
environment.mk_dir_all("/cache/plugins/test-plugin/0.1.0/x86_64").unwrap();
environment.write_file(plugin_exe, "").unwrap();
environment.add_running_process_with_restarts(plugin_exe, 1);
run_test_cli(vec!["clear-cache"], &environment).unwrap();
assert_eq!(environment.take_stdout_messages(), vec!["Deleted /cache"]);
assert_eq!(environment.path_exists("/cache"), false);
assert_eq!(environment.is_process_running(plugin_exe), false);
}
#[test]
fn should_clear_cache_directory_retrying_once_on_transient_failure() {
let environment = TestEnvironment::new();
environment.mk_dir_all("/cache").unwrap();
environment.set_remove_dir_all_failures(1);
run_test_cli(vec!["clear-cache"], &environment).unwrap();
assert_eq!(environment.take_stdout_messages(), vec!["Deleted /cache"]);
assert_eq!(environment.path_exists("/cache"), false);
}
#[test]
fn should_error_clearing_cache_when_process_plugin_keeps_restarting() {
let environment = TestEnvironment::new();
let plugin_exe = "/cache/plugins/test-plugin/0.1.0/x86_64/test-plugin.exe";
environment.mk_dir_all("/cache/plugins/test-plugin/0.1.0/x86_64").unwrap();
environment.write_file(plugin_exe, "").unwrap();
environment.add_running_process_with_restarts(plugin_exe, usize::MAX);
let err = run_test_cli(vec!["clear-cache"], &environment).err().unwrap();
assert!(err.to_string().contains("a process is using a file within it"), "{}", err);
assert_eq!(environment.path_exists("/cache"), true);
}
#[test]
fn should_output_license_for_sub_command_with_no_plugins() {
let environment = TestEnvironment::new();
run_test_cli(vec!["license"], &environment).unwrap();
assert_eq!(
environment.take_stdout_messages(),
vec!["==== DPRINT CLI LICENSE ====", std::str::from_utf8(include_bytes!("../../LICENSE")).unwrap()]
);
}
#[test]
fn should_output_license_for_sub_command_with_plugins() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_and_process_plugin().build();
run_test_cli(vec!["license"], &environment).unwrap();
assert_eq!(
environment.take_stdout_messages(),
vec![
"==== DPRINT CLI LICENSE ====",
std::str::from_utf8(include_bytes!("../../LICENSE")).unwrap(),
"\n==== TEST-PLUGIN LICENSE ====",
r#"The MIT License (MIT)
Copyright (c) 2019 David Sherret
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"#,
"\n==== TEST-PROCESS-PLUGIN LICENSE ====",
"License text."
]
);
}
#[test]
fn should_output_shell_completions() {
let environment = TestEnvironment::new();
for kind in ["bash", "elvish", "fish", "powershell", "zsh"] {
run_test_cli(vec!["completions", kind], &environment).unwrap();
let logged_messages = environment.take_stdout_messages();
assert_eq!(logged_messages.len(), 1);
assert!(!logged_messages[0].contains("hidden"));
}
}
#[test]
fn should_output_incremental_state() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_and_process_plugin().build();
run_test_cli(vec!["incremental-state"], &environment).unwrap();
let messages = environment.take_stdout_messages();
assert_eq!(messages.len(), 1);
let json: serde_json::Value = serde_json::from_str(&messages[0]).unwrap();
let configs = json["configs"].as_array().unwrap();
assert_eq!(configs.len(), 1);
let config = &configs[0];
assert_eq!(config["path"], "/dprint.json");
assert_eq!(config["hash"].as_str().unwrap().len(), 16);
let mut plugins = config["plugins"]
.as_array()
.unwrap()
.iter()
.map(|p| (p["name"].as_str().unwrap().to_string(), p["version"].as_str().unwrap().to_string()))
.collect::<Vec<_>>();
plugins.sort();
assert_eq!(
plugins,
vec![
("test-plugin".to_string(), "0.2.0".to_string()),
("test-process-plugin".to_string(), "0.1.0".to_string()),
]
);
}
#[test]
fn incremental_state_hash_is_deterministic() {
fn get_hash(environment: &TestEnvironment) -> String {
run_test_cli(vec!["incremental-state"], environment).unwrap();
let json: serde_json::Value = serde_json::from_str(&environment.take_stdout_messages()[0]).unwrap();
json["configs"][0]["hash"].as_str().unwrap().to_string()
}
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin().build();
assert_eq!(get_hash(&environment), get_hash(&environment));
let environment_changed = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_remote_wasm_plugin().add_config_section(
"test-plugin",
r#"{
"ending": "different"
}"#,
);
})
.build();
assert_ne!(get_hash(&environment), get_hash(&environment_changed));
}
#[test]
fn incremental_state_with_descendant_config() {
let environment = TestEnvironmentBuilder::with_initialized_remote_wasm_plugin()
.with_default_config(|c| {
c.add_includes("**/*.txt");
})
.with_local_config("/sub/dprint.json", |c| {
c.add_remote_wasm_plugin().add_includes("**/*.txt");
})
.write_file("/sub/file.txt", "")
.build();
run_test_cli(vec!["incremental-state"], &environment).unwrap();
let json: serde_json::Value = serde_json::from_str(&environment.take_stdout_messages()[0]).unwrap();
let configs = json["configs"].as_array().unwrap();
let paths = configs.iter().map(|c| c["path"].as_str().unwrap()).collect::<Vec<_>>();
assert_eq!(paths, vec!["/dprint.json", "/sub/dprint.json"]);
}
}