2019-12-24 16:53:48 +03:00
|
|
|
#![allow(unused_macros)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
use std::{
|
|
|
|
fmt,
|
|
|
|
fs::{create_dir_all, remove_dir_all, OpenOptions},
|
|
|
|
io::{self, Write},
|
|
|
|
path::Path,
|
|
|
|
process::Command,
|
|
|
|
sync::{Arc, RwLock},
|
|
|
|
};
|
2020-08-03 19:33:23 +03:00
|
|
|
use swc_common::{
|
|
|
|
chain, comments::SingleThreadedComments, errors::Handler, sync::Lrc, FileName, SourceMap,
|
|
|
|
};
|
2020-02-05 14:20:25 +03:00
|
|
|
use swc_ecma_ast::*;
|
2019-12-24 16:53:48 +03:00
|
|
|
use swc_ecma_codegen::Emitter;
|
2020-07-31 12:49:07 +03:00
|
|
|
use swc_ecma_parser::{error::Error, lexer::Lexer, Parser, StringInput, Syntax};
|
2020-07-23 20:18:22 +03:00
|
|
|
use swc_ecma_transforms::helpers::{InjectHelpers, HELPERS};
|
2020-07-31 12:49:07 +03:00
|
|
|
use swc_ecma_utils::DropSpan;
|
2020-07-23 20:18:22 +03:00
|
|
|
use swc_ecma_visit::{Fold, FoldWith};
|
2019-12-24 16:53:48 +03:00
|
|
|
use tempfile::tempdir_in;
|
|
|
|
|
2020-07-23 20:18:22 +03:00
|
|
|
pub fn validating(name: &'static str, tr: impl Fold + 'static) -> Box<dyn Fold> {
|
|
|
|
Box::new(chain!(
|
2019-12-24 16:53:48 +03:00
|
|
|
tr,
|
|
|
|
swc_ecma_transforms::debug::validator::Validator { name },
|
2020-07-23 20:18:22 +03:00
|
|
|
))
|
2019-12-24 16:53:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! validating {
|
|
|
|
($folder:expr) => {{
|
|
|
|
common::validating(stringify!($folder), $folder)
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! validate {
|
|
|
|
($e:expr) => {{
|
2020-07-23 20:18:22 +03:00
|
|
|
use swc_ecma_visit::FoldWith;
|
2019-12-24 16:53:48 +03:00
|
|
|
if cfg!(debug_assertions) {
|
|
|
|
$e.fold_with(&mut swc_ecma_transforms::debug::validator::Validator {
|
|
|
|
name: concat!(file!(), ':', line!(), ':', column!()),
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
$e
|
|
|
|
}
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Tester<'a> {
|
2020-08-03 19:33:23 +03:00
|
|
|
pub cm: Lrc<SourceMap>,
|
2019-12-24 16:53:48 +03:00
|
|
|
pub handler: &'a Handler,
|
2020-07-31 12:49:07 +03:00
|
|
|
pub comments: SingleThreadedComments,
|
2019-12-24 16:53:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Tester<'a> {
|
|
|
|
pub fn run<F>(op: F)
|
|
|
|
where
|
|
|
|
F: FnOnce(&mut Tester<'_>) -> Result<(), ()>,
|
|
|
|
{
|
|
|
|
let out = ::testing::run_test(false, |cm, handler| {
|
|
|
|
swc_ecma_transforms::util::HANDLER.set(handler, || {
|
|
|
|
HELPERS.set(&Default::default(), || {
|
|
|
|
op(&mut Tester {
|
|
|
|
cm,
|
|
|
|
handler,
|
2020-07-31 12:49:07 +03:00
|
|
|
comments: Default::default(),
|
2019-12-24 16:53:48 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
match out {
|
|
|
|
Ok(()) => {}
|
|
|
|
Err(stderr) => panic!("Stderr:\n{}", stderr),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_parser<F, T>(
|
|
|
|
&mut self,
|
|
|
|
file_name: &str,
|
|
|
|
syntax: Syntax,
|
|
|
|
src: &str,
|
|
|
|
op: F,
|
|
|
|
) -> Result<T, ()>
|
|
|
|
where
|
2020-07-31 12:49:07 +03:00
|
|
|
F: FnOnce(&mut Parser<Lexer<StringInput>>) -> Result<T, Error>,
|
2019-12-24 16:53:48 +03:00
|
|
|
{
|
|
|
|
let fm = self
|
|
|
|
.cm
|
|
|
|
.new_source_file(FileName::Real(file_name.into()), src.into());
|
|
|
|
|
2020-07-31 12:49:07 +03:00
|
|
|
let mut p = Parser::new(syntax, StringInput::from(&*fm), Some(&self.comments));
|
2020-07-25 14:26:04 +03:00
|
|
|
let res = op(&mut p);
|
|
|
|
|
|
|
|
for e in p.take_errors() {
|
|
|
|
e.into_diagnostic(&self.handler).emit();
|
|
|
|
}
|
2019-12-24 16:53:48 +03:00
|
|
|
|
2020-07-25 14:26:04 +03:00
|
|
|
res.map_err(|e| e.into_diagnostic(&self.handler).emit())
|
2019-12-24 16:53:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn parse_module(&mut self, file_name: &str, src: &str) -> Result<Module, ()> {
|
2020-07-25 14:26:04 +03:00
|
|
|
self.with_parser(file_name, Syntax::default(), src, |p| p.parse_module())
|
2019-12-24 16:53:48 +03:00
|
|
|
}
|
|
|
|
|
2020-07-23 20:18:22 +03:00
|
|
|
pub fn apply_transform<T: Fold>(
|
2019-12-24 16:53:48 +03:00
|
|
|
&mut self,
|
|
|
|
mut tr: T,
|
|
|
|
name: &str,
|
|
|
|
syntax: Syntax,
|
|
|
|
src: &str,
|
|
|
|
) -> Result<Module, ()> {
|
|
|
|
let fm = self
|
|
|
|
.cm
|
|
|
|
.new_source_file(FileName::Real(name.into()), src.into());
|
|
|
|
|
|
|
|
let module = {
|
2020-07-31 12:49:07 +03:00
|
|
|
let mut p = Parser::new(syntax, StringInput::from(&*fm), None);
|
2020-07-25 14:26:04 +03:00
|
|
|
let res = p.parse_module().map_err(|e| {
|
|
|
|
e.into_diagnostic(&self.handler).emit();
|
|
|
|
});
|
|
|
|
|
|
|
|
for e in p.take_errors() {
|
|
|
|
e.into_diagnostic(&self.handler).emit();
|
|
|
|
}
|
|
|
|
|
|
|
|
res?
|
2019-12-24 16:53:48 +03:00
|
|
|
};
|
|
|
|
|
2020-07-31 12:49:07 +03:00
|
|
|
let module = validate!(module)
|
|
|
|
.fold_with(&mut tr)
|
|
|
|
.fold_with(&mut DropSpan {
|
|
|
|
preserve_ctxt: true,
|
|
|
|
})
|
|
|
|
.fold_with(&mut Normalizer);
|
2019-12-24 16:53:48 +03:00
|
|
|
|
|
|
|
Ok(module)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn print(&mut self, module: &Module) -> String {
|
|
|
|
let mut wr = Buf(Arc::new(RwLock::new(vec![])));
|
|
|
|
{
|
|
|
|
let mut emitter = Emitter {
|
|
|
|
cfg: Default::default(),
|
|
|
|
cm: self.cm.clone(),
|
2020-07-23 20:18:22 +03:00
|
|
|
wr: Box::new(swc_ecma_codegen::text_writer::JsWriter::new(
|
2019-12-24 16:53:48 +03:00
|
|
|
self.cm.clone(),
|
|
|
|
"\n",
|
|
|
|
&mut wr,
|
2020-03-02 14:49:08 +03:00
|
|
|
None,
|
2020-07-23 20:18:22 +03:00
|
|
|
)),
|
2019-12-24 16:53:48 +03:00
|
|
|
comments: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
// println!("Emitting: {:?}", module);
|
|
|
|
emitter.emit_module(&module).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
let r = wr.0.read().unwrap();
|
|
|
|
let s = String::from_utf8_lossy(&*r);
|
|
|
|
s.to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-23 20:18:22 +03:00
|
|
|
fn make_tr<F, P>(_: &'static str, op: F, tester: &mut Tester<'_>) -> impl Fold
|
2019-12-24 16:53:48 +03:00
|
|
|
where
|
|
|
|
F: FnOnce(&mut Tester<'_>) -> P,
|
2020-07-23 20:18:22 +03:00
|
|
|
P: Fold,
|
2019-12-24 16:53:48 +03:00
|
|
|
{
|
|
|
|
op(tester)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
macro_rules! test_transform {
|
|
|
|
($syntax:expr, $tr:expr, $input:expr, $expected:expr) => {
|
|
|
|
test_transform!($syntax, $tr, $input, $expected, false)
|
|
|
|
};
|
|
|
|
|
|
|
|
($syntax:expr, $tr:expr, $input:expr, $expected:expr, $ok_if_code_eq:expr) => {{
|
|
|
|
common::test_transform($syntax, $tr, $input, $expected, $ok_if_code_eq);
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn test_transform<F, P>(syntax: Syntax, tr: F, input: &str, expected: &str, ok_if_code_eq: bool)
|
|
|
|
where
|
|
|
|
F: FnOnce(&mut Tester<'_>) -> P,
|
2020-07-23 20:18:22 +03:00
|
|
|
P: Fold,
|
2019-12-24 16:53:48 +03:00
|
|
|
{
|
|
|
|
Tester::run(|tester| {
|
2020-07-23 20:18:22 +03:00
|
|
|
let expected = tester.apply_transform(
|
|
|
|
DropSpan {
|
|
|
|
preserve_ctxt: true,
|
|
|
|
},
|
|
|
|
"output.js",
|
|
|
|
syntax,
|
|
|
|
expected,
|
|
|
|
)?;
|
2019-12-24 16:53:48 +03:00
|
|
|
|
2020-02-13 05:45:14 +03:00
|
|
|
println!(">>>>> Orig <<<<<\n{}", input);
|
2019-12-24 16:53:48 +03:00
|
|
|
println!("----- Actual -----");
|
|
|
|
|
|
|
|
let tr = make_tr("actual", tr, tester);
|
|
|
|
let actual = tester.apply_transform(tr, "input.js", syntax, input)?;
|
|
|
|
|
|
|
|
match ::std::env::var("PRINT_HYGIENE") {
|
|
|
|
Ok(ref s) if s == "1" => {
|
|
|
|
let hygiene_src = tester.print(&actual.clone().fold_with(&mut HygieneVisualizer));
|
|
|
|
println!("----- Hygiene -----\n{}", hygiene_src);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
2020-07-31 12:49:07 +03:00
|
|
|
let actual = actual
|
|
|
|
.fold_with(&mut swc_ecma_transforms::debug::validator::Validator { name: "actual-1" })
|
|
|
|
.fold_with(&mut swc_ecma_transforms::hygiene())
|
|
|
|
.fold_with(&mut swc_ecma_transforms::debug::validator::Validator { name: "actual-2" })
|
|
|
|
.fold_with(&mut swc_ecma_transforms::fixer(None))
|
|
|
|
.fold_with(&mut swc_ecma_transforms::debug::validator::Validator { name: "actual-3" });
|
2019-12-24 16:53:48 +03:00
|
|
|
|
|
|
|
if actual == expected {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
|
|
|
let (actual_src, expected_src) = (tester.print(&actual), tester.print(&expected));
|
|
|
|
|
|
|
|
if actual_src == expected_src {
|
|
|
|
if ok_if_code_eq {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
// Diff it
|
|
|
|
println!(">>>>> Code <<<<<\n{}", actual_src);
|
|
|
|
assert_eq!(actual, expected, "different ast was detected");
|
|
|
|
return Err(());
|
|
|
|
}
|
|
|
|
|
|
|
|
println!(">>>>> Code <<<<<\n{}", actual_src);
|
|
|
|
if actual_src != expected_src {
|
|
|
|
panic!(
|
|
|
|
r#"assertion failed: `(left == right)`
|
|
|
|
{}"#,
|
|
|
|
::testing::diff(&actual_src, &expected_src),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Err(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq)]
|
|
|
|
pub struct DebugUsingDisplay<'a>(pub &'a str);
|
|
|
|
impl<'a> fmt::Debug for DebugUsingDisplay<'a> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
fmt::Display::fmt(self.0, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Test transformation.
|
|
|
|
#[cfg(test)]
|
|
|
|
macro_rules! test {
|
|
|
|
(ignore, $syntax:expr, $tr:expr, $test_name:ident, $input:expr, $expected:expr) => {
|
|
|
|
#[test]
|
|
|
|
#[ignore]
|
|
|
|
fn $test_name() {
|
|
|
|
test_transform!($syntax, $tr, $input, $expected)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
($syntax:expr, $tr:expr, $test_name:ident, $input:expr, $expected:expr) => {
|
|
|
|
#[test]
|
|
|
|
fn $test_name() {
|
|
|
|
test_transform!($syntax, $tr, $input, $expected)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
($syntax:expr, $tr:expr, $test_name:ident, $input:expr, $expected:expr, ok_if_code_eq) => {
|
|
|
|
#[test]
|
|
|
|
fn $test_name() {
|
|
|
|
test_transform!($syntax, $tr, $input, $expected, true)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! exec_tr {
|
|
|
|
($syntax:expr, $tr:expr, $test_name:ident, $input:expr) => {{
|
|
|
|
common::exec_tr(stringify!($test_name), $syntax, $tr, $input);
|
|
|
|
}};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn exec_tr<F, P>(test_name: &'static str, syntax: Syntax, tr: F, input: &str)
|
|
|
|
where
|
|
|
|
F: FnOnce(&mut Tester<'_>) -> P,
|
2020-07-23 20:18:22 +03:00
|
|
|
P: Fold,
|
2019-12-24 16:53:48 +03:00
|
|
|
{
|
|
|
|
Tester::run(|tester| {
|
|
|
|
let tr = make_tr(test_name, tr, tester);
|
|
|
|
|
|
|
|
let module = tester.apply_transform(
|
|
|
|
tr,
|
|
|
|
"input.js",
|
|
|
|
syntax,
|
|
|
|
&format!(
|
|
|
|
"it('should work', function () {{
|
|
|
|
{}
|
|
|
|
}})",
|
|
|
|
input
|
|
|
|
),
|
|
|
|
)?;
|
|
|
|
match ::std::env::var("PRINT_HYGIENE") {
|
|
|
|
Ok(ref s) if s == "1" => {
|
|
|
|
let hygiene_src = tester.print(&module.clone().fold_with(&mut HygieneVisualizer));
|
|
|
|
println!("----- Hygiene -----\n{}", hygiene_src);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
2020-07-31 12:49:07 +03:00
|
|
|
let module = module
|
|
|
|
.fold_with(&mut swc_ecma_transforms::debug::validator::Validator { name: "actual-1" })
|
|
|
|
.fold_with(&mut swc_ecma_transforms::hygiene())
|
|
|
|
.fold_with(&mut swc_ecma_transforms::debug::validator::Validator { name: "actual-2" })
|
|
|
|
.fold_with(&mut swc_ecma_transforms::fixer(None))
|
|
|
|
.fold_with(&mut swc_ecma_transforms::debug::validator::Validator { name: "actual-3" });
|
2019-12-24 16:53:48 +03:00
|
|
|
|
|
|
|
let src_without_helpers = tester.print(&module);
|
|
|
|
let module = module.fold_with(&mut InjectHelpers {});
|
|
|
|
|
|
|
|
let src = tester.print(&module);
|
|
|
|
let root = Path::new(env!("CARGO_MANIFEST_DIR"))
|
|
|
|
.join("target")
|
|
|
|
.join("testing")
|
|
|
|
.join(test_name);
|
|
|
|
|
|
|
|
// Remove outputs from previous tests
|
|
|
|
let _ = remove_dir_all(&root);
|
|
|
|
|
|
|
|
create_dir_all(&root).expect("failed to create parent directory for temp directory");
|
|
|
|
|
|
|
|
let tmp_dir = tempdir_in(&root).expect("failed to create a temp directory");
|
|
|
|
create_dir_all(&tmp_dir).unwrap();
|
|
|
|
|
|
|
|
let path = tmp_dir.path().join(format!("{}.test.js", test_name));
|
|
|
|
|
|
|
|
let mut tmp = OpenOptions::new()
|
|
|
|
.create(true)
|
|
|
|
.write(true)
|
|
|
|
.open(&path)
|
|
|
|
.expect("failed to create a temp file");
|
|
|
|
write!(tmp, "{}", src).expect("failed to write to temp file");
|
|
|
|
tmp.flush().unwrap();
|
|
|
|
|
|
|
|
println!(
|
|
|
|
"\t>>>>> Orig <<<<<\n{}\n\t>>>>> Code <<<<<\n{}",
|
|
|
|
input, src_without_helpers
|
|
|
|
);
|
|
|
|
|
|
|
|
let status = Command::new("jest")
|
|
|
|
.args(&["--testMatch", &format!("{}", path.display())])
|
|
|
|
.current_dir(root)
|
|
|
|
.status()
|
|
|
|
.expect("failed to run jest");
|
|
|
|
if status.success() {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
::std::mem::forget(tmp_dir);
|
|
|
|
panic!("Execution failed")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Test transformation.
|
|
|
|
#[cfg(test)]
|
|
|
|
macro_rules! test_exec {
|
|
|
|
(ignore, $syntax:expr, $tr:expr, $test_name:ident, $input:expr) => {
|
|
|
|
#[test]
|
|
|
|
#[ignore]
|
|
|
|
fn $test_name() {
|
|
|
|
exec_tr!($syntax, $tr, $test_name, $input)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
($syntax:expr, $tr:expr, $test_name:ident, $input:expr) => {
|
|
|
|
#[test]
|
|
|
|
fn $test_name() {
|
|
|
|
if ::std::env::var("EXEC").unwrap_or(String::from("")) == "0" {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
exec_tr!($syntax, $tr, $test_name, $input)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
struct Buf(Arc<RwLock<Vec<u8>>>);
|
|
|
|
impl Write for Buf {
|
|
|
|
fn write(&mut self, data: &[u8]) -> io::Result<usize> {
|
|
|
|
self.0.write().unwrap().write(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn flush(&mut self) -> io::Result<()> {
|
|
|
|
self.0.write().unwrap().flush()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Normalizer;
|
2020-07-23 20:18:22 +03:00
|
|
|
impl Fold for Normalizer {
|
|
|
|
fn fold_pat_or_expr(&mut self, node: PatOrExpr) -> PatOrExpr {
|
|
|
|
let node = node.fold_children_with(self);
|
|
|
|
|
|
|
|
match node {
|
|
|
|
PatOrExpr::Pat(pat) => match *pat {
|
|
|
|
Pat::Expr(expr) => PatOrExpr::Expr(expr),
|
|
|
|
_ => PatOrExpr::Pat(pat),
|
|
|
|
},
|
|
|
|
_ => node,
|
2019-12-24 16:53:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct HygieneVisualizer;
|
2020-07-23 20:18:22 +03:00
|
|
|
impl Fold for HygieneVisualizer {
|
|
|
|
fn fold_ident(&mut self, ident: Ident) -> Ident {
|
2019-12-24 16:53:48 +03:00
|
|
|
Ident {
|
|
|
|
sym: format!("{}{:?}", ident.sym, ident.span.ctxt()).into(),
|
|
|
|
..ident
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|