swc/crates/swc_ecma_minifier/tests/terser_exec.rs

310 lines
8.6 KiB
Rust
Raw Normal View History

extern crate swc_node_base;
use std::{
fmt::Debug,
fs::read_to_string,
path::{Path, PathBuf},
process::Command,
sync::mpsc,
thread,
time::{Duration, Instant},
};
use ansi_term::Color;
use anyhow::{anyhow, bail, Context, Error};
use serde::Deserialize;
use swc_common::{comments::SingleThreadedComments, errors::Handler, sync::Lrc, Mark, SourceMap};
use swc_ecma_ast::*;
use swc_ecma_codegen::{
text_writer::{omit_trailing_semi, JsWriter, WriteJs},
Emitter,
};
use swc_ecma_minifier::{
optimize,
option::{terser::TerserCompressorOptions, CompressOptions, ExtraOptions, MinifyOptions},
};
use swc_ecma_parser::{
lexer::{input::SourceFileInput, Lexer},
EsConfig, Parser, Syntax,
};
use swc_ecma_transforms_base::{fixer::fixer, hygiene::hygiene, resolver};
use swc_ecma_visit::{FoldWith, VisitMutWith};
use testing::assert_eq;
#[testing::fixture(
"tests/terser/compress/**/input.js",
exclude(
"ie8",
"blocks/issue_1672_for/",
"collapse_vars/issue_1631_1/",
"collapse_vars/issue_1631_2/",
"collapse_vars/issue_1631_3/",
"dead_code/issue_2749/",
"dead_code/try_catch_finally/",
"drop_unused/issue_1715_1/",
"drop_unused/issue_1715_2/",
"drop_unused/issue_1715_3/",
"drop_unused/issue_1830_1/",
"drop_unused/issue_1830_2/",
"drop_unused/var_catch_toplevel/",
"evaluate/issue_1760_1/",
"functions/issue_2620_4/",
"functions/issue_3016_3/",
"functions/issue_3076/",
"issue_1105/assorted_Infinity_NaN_undefined_in_with_scope/",
"issue_1105/assorted_Infinity_NaN_undefined_in_with_scope_keep_infinity/",
"issue_1733/function_catch_catch/",
"issue_1750/case_1/",
"properties/issue_3188_3/",
"rename/function_catch_catch/",
"yield/issue_2689/",
)
)]
fn terser_exec(input: PathBuf) {
let dir = input.parent().unwrap();
let config = dir.join("config.json");
let config = read_to_string(&config).expect("failed to read config.json");
eprintln!("---- {} -----\n{}", Color::Green.paint("Config"), config);
let _ = testing::run_test2(false, |cm, handler| {
let input_src = read_to_string(&input).map_err(|_| {
eprintln!("WTF?");
})?;
// This can change the output
if input_src.contains("/*#/PURE/*/") {
return Ok(());
}
let input_stdout = stdout_of(&input_src, Duration::from_millis(500)).map_err(|_| {
eprintln!("This test is not executable test");
})?;
// Formmating
if input_stdout.contains("function") {
return Ok(());
}
let expected_src = read_to_string(&dir.join("output.terser.js")).map_err(|_| {
eprintln!("This test does not have `output.terser.js`");
})?;
let expected_stdout =
stdout_of(&expected_src, Duration::from_millis(500)).map_err(|_| {
eprintln!("This test is not executable test");
})?;
if input_stdout != expected_stdout {
eprintln!("This test is not for execution");
return Err(());
}
eprintln!("Optimizing");
let output = run(cm.clone(), &handler, &input, &config);
let output_module = match output {
Some(v) => v,
None => return Err(()),
};
let actual = print(cm, &[output_module], false, false);
let actual_stdout = stdout_of(&actual, Duration::from_secs(5)).unwrap();
eprintln!(
"---- {} -----\n{}",
Color::Green.paint("Expected"),
expected_src
);
eprintln!("---- {} -----\n{}", Color::Green.paint("Actual"), actual);
eprintln!(
"---- {} -----\n{}",
Color::Green.paint("Expected stdout"),
expected_stdout
);
eprintln!(
"---- {} -----\n{}",
Color::Green.paint("Actual stdout"),
actual_stdout
);
println!("{}", input.display());
assert_eq!(expected_stdout, actual_stdout);
Ok(())
});
}
#[derive(Debug, Clone, Deserialize)]
struct TestOptions {
#[serde(default)]
defaults: bool,
#[serde(default)]
passes: usize,
}
fn parse_compressor_config(cm: Lrc<SourceMap>, s: &str) -> Result<(bool, CompressOptions), Error> {
let opts: TestOptions =
serde_json::from_str(s).context("failed to deserialize value into a compressor config")?;
let mut c: TerserCompressorOptions =
serde_json::from_str(s).context("failed to deserialize value into a compressor config")?;
c.defaults = opts.defaults;
c.const_to_let = Some(false);
c.passes = opts.passes;
Ok((c.module, c.into_config(cm)))
}
fn run(cm: Lrc<SourceMap>, handler: &Handler, input: &Path, config: &str) -> Option<Module> {
let _ = rayon::ThreadPoolBuilder::new()
.thread_name(|i| format!("rayon-{}", i + 1))
.build_global();
let (_module, config) = parse_compressor_config(cm.clone(), config).ok()?;
if config.ie8 {
return None;
}
let fm = cm.load_file(input).expect("failed to load input.js");
let comments = SingleThreadedComments::default();
eprintln!("---- {} -----\n{}", Color::Green.paint("Input"), fm.src);
let unresolved_mark = Mark::new();
let top_level_mark = Mark::new();
let minification_start = Instant::now();
let lexer = Lexer::new(
Syntax::Es(EsConfig {
jsx: true,
..Default::default()
}),
Default::default(),
SourceFileInput::from(&*fm),
Some(&comments),
);
let mut parser = Parser::new_from(lexer);
let program = parser
.parse_module()
.map_err(|err| {
err.into_diagnostic(handler).emit();
})
.map(|module| module.fold_with(&mut resolver(unresolved_mark, top_level_mark, false)));
// Ignore parser errors.
//
// This is typically related to strict mode caused by module context.
let program = match program {
Ok(v) => v,
_ => return None,
};
let optimization_start = Instant::now();
let mut output = optimize(
program,
cm,
Some(&comments),
None,
&MinifyOptions {
compress: Some(config),
mangle: None,
..Default::default()
},
&ExtraOptions {
unresolved_mark,
top_level_mark,
},
);
let end = Instant::now();
tracing::info!(
"optimize({}) took {:?}",
input.display(),
end - optimization_start
);
output.visit_mut_with(&mut hygiene());
let output = output.fold_with(&mut fixer(None));
let end = Instant::now();
tracing::info!(
"process({}) took {:?}",
input.display(),
end - minification_start
);
Some(output)
}
fn stdout_of(code: &str, timeout: Duration) -> Result<String, Error> {
eprintln!("Executing node with timeout: {:?}", timeout);
let code = code.to_string();
let (sender, receiver) = mpsc::channel();
let timer_sender = sender.clone();
let _t = thread::spawn(move || {
let res = (|| {
let actual_output = Command::new("node")
.arg("-e")
.arg(&code)
.output()
.context("failed to execute output of minifier")?;
if !actual_output.status.success() {
bail!(
"failed to execute:\n{}\n{}",
String::from_utf8_lossy(&actual_output.stdout),
String::from_utf8_lossy(&actual_output.stderr)
)
}
Ok(String::from_utf8_lossy(&actual_output.stdout).to_string())
})();
let _ = sender.send(res);
});
let _timer = thread::spawn(move || {
thread::sleep(timeout);
let _ = timer_sender.send(Err(anyhow!("node timed out")));
});
receiver.recv().unwrap()
}
fn print<N: swc_ecma_codegen::Node>(
cm: Lrc<SourceMap>,
nodes: &[N],
minify: bool,
skip_semi: bool,
) -> String {
let mut buf = vec![];
{
let mut wr: Box<dyn WriteJs> = Box::new(JsWriter::new(cm.clone(), "\n", &mut buf, None));
if minify || skip_semi {
wr = Box::new(omit_trailing_semi(wr));
}
let mut emitter = Emitter {
cfg: swc_ecma_codegen::Config { minify },
cm,
comments: None,
wr,
};
for n in nodes {
n.emit_with(&mut emitter).unwrap();
}
}
String::from_utf8(buf).unwrap()
}