use std::cell::RefCell;
use std::io::Write;
use std::path::PathBuf;
use std::rc::Rc;
use anyhow::Result;
use crossterm::style::Stylize;
use once_cell::sync::Lazy;
use thiserror::Error;
use crate::AppError;
use crate::arg_parser::parse_args;
use crate::environment::TestEnvironment;
use crate::plugins::PluginCache;
use crate::plugins::PluginResolver;
use crate::run_cli::run_cli;
use crate::utils::TestStdInReader;
#[macro_export]
macro_rules! assert_contains {
($string:expr, $($test:expr),+ $(,)?) => {
let string = &$string;
if !($(string.contains($test))||+) {
panic!("{:?} does not contain any of {:?}", string, [$($test),+]);
}
}
}
pub static TEST_PROCESS_PLUGIN_PATH: Lazy<PathBuf> = Lazy::new(|| {
let exe_name = if cfg!(windows) { "test-process-plugin.exe" } else { "test-process-plugin" };
let profile_name = if cfg!(debug_assertions) { "debug" } else { "release" };
let target_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("../../target");
assert!(target_dir.exists());
let file_path = target_dir.join(target_dir.join(env!("TARGET"))).join(profile_name).join(exe_name);
let file_path = if file_path.exists() {
file_path
} else {
target_dir.join(profile_name).join(exe_name)
};
std::fs::canonicalize(&file_path).unwrap_or_else(|err| {
panic!(
"Maybe run `cargo build` in the root of the repository?\n\nCould not canonicalize {}: {:#}",
file_path.display(),
err
)
})
});
pub static WASM_PLUGIN_BYTES: &'static [u8] = include_bytes!("../../test-plugin/test_plugin.wasm"); pub static WASM_PLUGIN_0_1_0_BYTES: &'static [u8] = include_bytes!("../../test-plugin/test_plugin_0_1_0.wasm");
pub static PROCESS_PLUGIN_ZIP_BYTES: Lazy<Vec<u8>> = Lazy::new(|| {
let buf: Vec<u8> = Vec::new();
let w = std::io::Cursor::new(buf);
let mut zip = zip::ZipWriter::new(w);
let options = zip::write::SimpleFileOptions::default().compression_method(zip::CompressionMethod::Stored);
zip
.start_file(
if cfg!(target_os = "windows") {
"test-process-plugin.exe"
} else {
"test-process-plugin"
},
options,
)
.unwrap();
let file_bytes = std::fs::read(&*TEST_PROCESS_PLUGIN_PATH).unwrap();
zip.write(&file_bytes).unwrap();
zip.finish().unwrap().into_inner()
});
pub static PROCESS_PLUGIN_ZIP_CHECKSUM: Lazy<String> = Lazy::new(|| crate::utils::get_sha256_checksum(&PROCESS_PLUGIN_ZIP_BYTES));
#[derive(Debug, Error)]
#[error("{inner:#}")]
pub struct TestAppError {
asserted_exit_code: RefCell<bool>,
inner: AppError,
}
impl TestAppError {
#[track_caller]
pub fn assert_exit_code(&self, exit_code: i32) {
self.asserted_exit_code.replace(true);
assert_eq!(self.inner.exit_code, exit_code);
}
}
impl From<AppError> for TestAppError {
fn from(inner: AppError) -> Self {
Self {
asserted_exit_code: Default::default(),
inner,
}
}
}
impl From<anyhow::Error> for TestAppError {
fn from(inner: anyhow::Error) -> Self {
Self {
asserted_exit_code: Default::default(),
inner: inner.into(),
}
}
}
impl Drop for TestAppError {
fn drop(&mut self) {
if std::thread::panicking() || self.inner.exit_code <= 1 {
return;
}
if !self.asserted_exit_code.borrow().clone() {
panic!("Exit code must be asserted. Was: {}", self.inner.exit_code);
}
}
}
pub fn run_test_cli(args: Vec<&str>, environment: &TestEnvironment) -> Result<(), TestAppError> {
run_test_cli_with_stdin(args, environment, TestStdInReader::default())
}
pub fn run_test_cli_with_stdin(args: Vec<&str>, environment: &TestEnvironment, stdin_reader: TestStdInReader) -> Result<(), TestAppError> {
let mut args: Vec<String> = args.into_iter().map(String::from).collect();
args.insert(0, String::from(""));
let plugin_cache = PluginCache::new(environment.clone());
let plugin_resolver = Rc::new(PluginResolver::new(environment.clone(), plugin_cache));
let args = parse_args(args, stdin_reader).map_err(|err| Into::<AppError>::into(err))?;
environment.set_stdout_machine_readable(args.is_stdout_machine_readable());
environment.set_log_level(args.log_level);
environment.run_in_runtime({
let environment = environment.clone();
async move {
let result = run_cli(&args, &environment, &plugin_resolver).await;
plugin_resolver.clear_and_shutdown_initialized().await;
Ok(result?)
}
})
}
pub fn get_test_wasm_plugin_checksum() -> String {
crate::utils::get_sha256_checksum(WASM_PLUGIN_BYTES)
}
pub struct TestProcessPluginFile(String);
impl Default for TestProcessPluginFile {
fn default() -> Self {
TestProcessPluginFileBuilder::default().build()
}
}
impl TestProcessPluginFile {
pub fn checksum(&self) -> String {
crate::utils::get_sha256_checksum(self.0.as_bytes())
}
pub fn text(&self) -> &str {
self.0.as_ref()
}
}
#[derive(Default)]
pub struct TestProcessPluginFileBuilder {
schema_version: Option<u32>,
name: Option<String>,
version: Option<String>,
zip_checksum: Option<String>,
}
impl TestProcessPluginFileBuilder {
#[allow(unused)]
pub fn schema_version(mut self, schema_version: u32) -> Self {
self.schema_version = Some(schema_version);
self
}
#[allow(unused)]
pub fn name(mut self, name: &str) -> Self {
self.name = Some(name.to_string());
self
}
pub fn version(mut self, version: &str) -> Self {
self.version = Some(version.to_string());
self
}
pub fn zip_checksum(mut self, zip_checksum: &str) -> Self {
self.zip_checksum = Some(zip_checksum.to_string());
self
}
pub fn build(self) -> TestProcessPluginFile {
TestProcessPluginFile(format!(
r#"{{
"schemaVersion": {0},
"name": "{1}",
"version": "{2}",
"windows-x86_64": {{
"reference": "https://github.com/dprint/test-process-plugin/releases/0.1.0/test-process-plugin.zip",
"checksum": "{3}"
}},
"windows-aarch64": {{
"reference": "https://github.com/dprint/test-process-plugin/releases/0.1.0/test-process-plugin.zip",
"checksum": "{3}"
}},
"linux-aarch64": {{
"reference": "https://github.com/dprint/test-process-plugin/releases/0.1.0/test-process-plugin.zip",
"checksum": "{3}"
}},
"linux-x86_64": {{
"reference": "https://github.com/dprint/test-process-plugin/releases/0.1.0/test-process-plugin.zip",
"checksum": "{3}"
}},
"darwin-x86_64": {{
"reference": "https://github.com/dprint/test-process-plugin/releases/0.1.0/test-process-plugin.zip",
"checksum": "{3}"
}},
"darwin-aarch64": {{
"reference": "https://github.com/dprint/test-process-plugin/releases/0.1.0/test-process-plugin.zip",
"checksum": "{3}"
}}
}}"#,
self.schema_version.unwrap_or(2),
self.name.unwrap_or("test-process-plugin".to_string()),
self.version.unwrap_or("0.1.0".to_string()),
self.zip_checksum.unwrap_or(PROCESS_PLUGIN_ZIP_CHECKSUM.to_string())
))
}
}
pub fn get_singular_formatted_text() -> String {
format!("Formatted {} file.", "1".bold().to_string())
}
pub fn get_plural_formatted_text(count: usize) -> String {
format!("Formatted {} files.", count.to_string().bold().to_string())
}
pub fn get_singular_check_text() -> String {
format!(
"Found {} not formatted file. Run {} to fix.",
"1".bold().to_string(),
"dprint fmt".bold().to_string()
)
}
pub fn get_plural_check_text(count: usize) -> String {
format!(
"Found {} not formatted files. Run {} to fix.",
count.to_string().bold().to_string(),
"dprint fmt".bold().to_string()
)
}
pub fn get_expected_help_text() -> &'static str {
concat!(
"dprint ",
env!("CARGO_PKG_VERSION"),
r#"
Copyright 2019 by David Sherret
Auto-formats source code based on the specified plugins.
USAGE:
dprint <SUBCOMMAND> [OPTIONS] [--] [file patterns]...
SUBCOMMANDS:
init Initializes a configuration file in the current directory.
fmt Formats the source files and writes the result to the file system.
check Checks for any files that haven't been formatted.
config Functionality related to the configuration file.
output-file-paths Prints the resolved file paths for the plugins based on the args and configuration.
output-resolved-config Prints the resolved configuration for the plugins based on the args and configuration.
output-format-times Prints the amount of time it takes to format each file. Use this for debugging.
clear-cache Deletes the plugin cache directory.
upgrade Upgrades the dprint executable.
completions Generate shell completions script for dprint
license Outputs the software license.
lsp Starts up a language server for formatting files.
More details at `dprint help <SUBCOMMAND>`
OPTIONS:
-c, --config <config> Path or url to JSON configuration file. Defaults to dprint.json(c) or .dprint.json(c) in current or ancestor directory when not provided.
--config-discovery=<BOOLEAN> Sets the config discovery mode. Set to `false` to completely disable, `ignore-descendants` to avoid finding config files in child directories, or `global` to only use the global config file.
--plugins <urls/files>... List of urls or file paths of plugins to use. This overrides what is specified in the config file.
-L, --log-level <log-level> Set log level [default: info] [possible values: debug, info, warn, error, silent]
ENVIRONMENT VARIABLES:
DPRINT_MAX_THREADS Limit the number of threads dprint uses for
formatting (ex. DPRINT_MAX_THREADS=4).
DPRINT_CACHE_DIR Directory to store the dprint cache. Note that this
directory may be periodically deleted by the CLI.
DPRINT_CONFIG_DIR Global config directory to store a global dprint.json file.
Defaults to the dprint sub folder in the system configuration
directory.
DPRINT_CONFIG_DISCOVERY
Sets the config discovery mode. Set to "false"/"0" to disable
or "global" to always use the global config file.
DPRINT_CERT Load certificate authority from PEM encoded file.
DPRINT_TLS_CA_STORE Comma-separated list of order dependent certificate stores.
Possible values: "mozilla" and "system".
Defaults to "mozilla,system".
DPRINT_IGNORE_CERTS Unsafe way to get dprint to ignore certificates. Specify 1
to ignore all certificates or a comma separated list of specific
hosts to ignore (ex. dprint.dev,localhost,[::],127.0.0.1)
DPRINT_EDITOR Editor used for editing config files.
HTTPS_PROXY Proxy to use when downloading plugins or configuration
files (also supports HTTP_PROXY and NO_PROXY).
GETTING STARTED:
1. Navigate to the root directory of a code repository.
2. Run `dprint init` to create a dprint.json file in that directory.
3. Modify configuration file if necessary.
4. Run `dprint fmt` or `dprint check`.
EXAMPLES:
Write formatted files to file system:
dprint fmt
Check for files that haven't been formatted:
dprint check
Specify path to config file other than the default:
dprint fmt --config path/to/config/dprint.json
Search for files using the specified file patterns:
dprint fmt "**/*.{ts,tsx,js,jsx,json}"
"#
)
}