2018-01-12 10:53:06 +03:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
#![feature(conservative_impl_trait)]
|
|
|
|
#![feature(specialization)]
|
|
|
|
#![feature(test)]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate slog;
|
|
|
|
extern crate swc_common;
|
2018-01-12 14:22:45 +03:00
|
|
|
extern crate swc_ecma_parser;
|
2018-01-12 10:53:06 +03:00
|
|
|
extern crate test;
|
|
|
|
extern crate testing;
|
|
|
|
use slog::Logger;
|
|
|
|
use std::env;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::fs::read_dir;
|
|
|
|
use std::io::{self, Read};
|
|
|
|
use std::path::Path;
|
2018-01-23 15:38:48 +03:00
|
|
|
use std::rc::Rc;
|
2018-01-15 04:33:18 +03:00
|
|
|
use swc_common::{FoldWith, Folder};
|
2018-01-23 15:38:48 +03:00
|
|
|
use swc_common::FileName;
|
2018-01-12 10:53:06 +03:00
|
|
|
use swc_common::Span;
|
2018-01-23 15:38:48 +03:00
|
|
|
use swc_common::errors::{CodeMap, FilePathMapping};
|
2018-01-22 04:45:08 +03:00
|
|
|
use swc_common::errors::Handler;
|
2018-01-23 15:38:48 +03:00
|
|
|
use swc_ecma_parser::{FileMapInput, PResult, Parser, Session};
|
2018-01-12 14:22:45 +03:00
|
|
|
use swc_ecma_parser::ast::*;
|
2018-01-12 10:53:06 +03:00
|
|
|
use test::{test_main, Options, TestDesc, TestDescAndFn, TestFn, TestName};
|
|
|
|
use test::ShouldPanic::No;
|
|
|
|
|
|
|
|
const IGNORED_PASS_TESTS: &[&str] = &[
|
2018-01-13 14:42:52 +03:00
|
|
|
// Temporalily ignored
|
|
|
|
"431ecef8c85d4d24.js",
|
|
|
|
"8386fbff927a9e0e.js",
|
2018-01-12 10:53:06 +03:00
|
|
|
// Wrong tests (variable name or value is different)
|
|
|
|
"0339fa95c78c11bd.js",
|
|
|
|
"0426f15dac46e92d.js",
|
|
|
|
"0b4d61559ccce0f9.js",
|
|
|
|
"0f88c334715d2489.js",
|
|
|
|
"1093d98f5fc0758d.js",
|
|
|
|
"15d9592709b947a0.js",
|
|
|
|
"2179895ec5cc6276.js",
|
|
|
|
"247a3a57e8176ebd.js",
|
|
|
|
"441a92357939904a.js",
|
|
|
|
"47f974d6fc52e3e4.js",
|
|
|
|
"4e1a0da46ca45afe.js",
|
|
|
|
"5829d742ab805866.js",
|
|
|
|
"589dc8ad3b9aa28f.js",
|
|
|
|
"598a5cedba92154d.js",
|
|
|
|
"72d79750e81ef03d.js",
|
|
|
|
"7788d3c1e1247da9.js",
|
|
|
|
"7b72d7b43bedc895.js",
|
|
|
|
"7dab6e55461806c9.js",
|
|
|
|
"82c827ccaecbe22b.js",
|
|
|
|
"87a9b0d1d80812cc.js",
|
|
|
|
"8c80f7ee04352eba.js",
|
|
|
|
"96f5d93be9a54573.js",
|
|
|
|
"988e362ed9ddcac5.js",
|
|
|
|
"9bcae7c7f00b4e3c.js",
|
|
|
|
"a8a03a88237c4e8f.js",
|
|
|
|
"ad06370e34811a6a.js",
|
|
|
|
"b0fdc038ee292aba.js",
|
|
|
|
"b62c6dd890bef675.js",
|
|
|
|
"cb211fadccb029c7.js",
|
|
|
|
"ce968fcdf3a1987c.js",
|
|
|
|
"db3c01738aaf0b92.js",
|
|
|
|
"e1387fe892984e2b.js",
|
|
|
|
"e71c1d5f0b6b833c.js",
|
|
|
|
"e8ea384458526db0.js",
|
|
|
|
// We don't implement Annex B fully.
|
|
|
|
"1c1e2a43fe5515b6.js",
|
|
|
|
"3dabeca76119d501.js",
|
|
|
|
"52aeec7b8da212a2.js",
|
|
|
|
"59ae0289778b80cd.js",
|
|
|
|
"a4d62a651f69d815.js",
|
|
|
|
"c06df922631aeabc.js",
|
|
|
|
];
|
|
|
|
|
|
|
|
fn add_test<F: FnOnce() + Send + 'static>(
|
|
|
|
tests: &mut Vec<TestDescAndFn>,
|
|
|
|
name: String,
|
|
|
|
ignore: bool,
|
|
|
|
f: F,
|
|
|
|
) {
|
|
|
|
tests.push(TestDescAndFn {
|
|
|
|
desc: TestDesc {
|
|
|
|
name: TestName::DynTestName(name),
|
|
|
|
ignore: ignore,
|
|
|
|
should_panic: No,
|
|
|
|
allow_fail: false,
|
|
|
|
},
|
|
|
|
testfn: TestFn::DynTestFn(box f),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-26 15:53:30 +03:00
|
|
|
fn error_tests(tests: &mut Vec<TestDescAndFn>) -> Result<(), io::Error> {
|
|
|
|
const IGNORED_ERROR_TESTS: &[&str] = &[
|
|
|
|
// Wrong tests
|
|
|
|
"0d5e450f1da8a92a.js",
|
|
|
|
"748656edbfb2d0bb.js",
|
|
|
|
"79f882da06f88c9f.js",
|
|
|
|
"92b6af54adef3624.js",
|
|
|
|
"ef2d369cccc5386c.js",
|
|
|
|
// Temporarily ignore tests for using octal escape before use strict
|
|
|
|
"147fa078a7436e0e.js",
|
|
|
|
"15a6123f6b825c38.js",
|
|
|
|
"3bc2b27a7430f818.js",
|
|
|
|
];
|
|
|
|
|
|
|
|
let root = {
|
|
|
|
let mut root = Path::new(env!("CARGO_MANIFEST_DIR")).to_path_buf();
|
|
|
|
root.push("tests");
|
|
|
|
root.push("test262-parser");
|
|
|
|
root
|
|
|
|
};
|
|
|
|
|
|
|
|
eprintln!("Loading tests from {}", root.display());
|
|
|
|
|
|
|
|
const TYPES: &[&str] = [
|
|
|
|
"fail" /* TODO
|
|
|
|
* "early" */
|
|
|
|
];
|
|
|
|
|
|
|
|
for err_type in TYPES {
|
|
|
|
let dir = root.join(err_type);
|
|
|
|
|
|
|
|
for entry in read_dir(&dir)? {
|
|
|
|
let entry = entry?;
|
|
|
|
let file_name = entry
|
|
|
|
.path()
|
|
|
|
.strip_prefix(&dir)
|
|
|
|
.expect("failed to string prefix")
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
let input = {
|
|
|
|
let mut buf = String::new();
|
|
|
|
File::open(entry.path())?.read_to_string(&mut buf)?;
|
|
|
|
buf
|
|
|
|
};
|
|
|
|
|
|
|
|
let ignore = IGNORED_ERROR_TESTS.contains(&&*file_name);
|
|
|
|
|
|
|
|
let module = file_name.contains("module");
|
|
|
|
|
|
|
|
let name = format!("parser::error::{}::{}", err_type, file_name);
|
|
|
|
add_test(tests, name, ignore, move || {
|
|
|
|
eprintln!(
|
|
|
|
"\n\nRunning error reporting test {}\nSource:\n{}\n",
|
|
|
|
file_name, input
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut sess = TestSess::new();
|
|
|
|
|
|
|
|
// Parse source
|
|
|
|
let err = if module {
|
|
|
|
sess.parse_module(&file_name, &input)
|
|
|
|
.expect_err("should fail, but parsed as")
|
|
|
|
} else {
|
|
|
|
sess.parse_script(&file_name, &input)
|
|
|
|
.expect_err("should fail, but parsed as")
|
|
|
|
};
|
|
|
|
|
|
|
|
// Diff it.
|
|
|
|
err.emit();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn identity_tests(tests: &mut Vec<TestDescAndFn>) -> Result<(), io::Error> {
|
2018-01-12 10:53:06 +03:00
|
|
|
let root = {
|
|
|
|
let mut root = Path::new(env!("CARGO_MANIFEST_DIR")).to_path_buf();
|
|
|
|
root.push("tests");
|
|
|
|
root.push("test262-parser");
|
|
|
|
root
|
|
|
|
};
|
|
|
|
|
|
|
|
eprintln!("Loading tests from {}", root.display());
|
|
|
|
|
|
|
|
let pass_dir = root.join("pass");
|
|
|
|
|
|
|
|
let files = read_dir(&pass_dir)?;
|
|
|
|
|
|
|
|
for entry in files {
|
|
|
|
let entry = entry?;
|
|
|
|
let file_name = entry
|
|
|
|
.path()
|
|
|
|
.strip_prefix(&pass_dir)
|
|
|
|
.expect("failed to string prefix")
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
let input = {
|
|
|
|
let mut buf = String::new();
|
|
|
|
File::open(entry.path())?.read_to_string(&mut buf)?;
|
|
|
|
buf
|
|
|
|
};
|
|
|
|
let explicit = {
|
|
|
|
let mut buf = String::new();
|
|
|
|
File::open(root.join("pass-explicit").join(&file_name))?.read_to_string(&mut buf)?;
|
|
|
|
buf
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: remove this
|
|
|
|
let ignore = IGNORED_PASS_TESTS.contains(&&*file_name);
|
|
|
|
|
|
|
|
let module = file_name.contains("module");
|
|
|
|
|
2018-01-26 15:53:30 +03:00
|
|
|
let name = format!("test262-identity-{}", file_name);
|
2018-01-12 10:53:06 +03:00
|
|
|
add_test(tests, name, ignore, move || {
|
2018-01-26 15:53:30 +03:00
|
|
|
eprintln!(
|
2018-01-12 10:53:06 +03:00
|
|
|
"\n\n\nRunning test {}\nSource:\n{}\nExplicit:\n{}",
|
|
|
|
file_name, input, explicit
|
|
|
|
);
|
|
|
|
|
2018-01-26 15:53:30 +03:00
|
|
|
let mut sess = TestSess::new();
|
2018-01-22 04:45:08 +03:00
|
|
|
|
2018-01-26 15:53:30 +03:00
|
|
|
if module {
|
|
|
|
let mut p = |ty, s| {
|
|
|
|
sess.parse_module(&file_name, s)
|
|
|
|
.map(normalize)
|
|
|
|
.unwrap_or_else(|err| {
|
2018-01-22 04:45:08 +03:00
|
|
|
err.emit();
|
|
|
|
panic!("failed to parse {} code:\n{}", ty, s)
|
2018-01-12 10:53:06 +03:00
|
|
|
})
|
2018-01-26 15:53:30 +03:00
|
|
|
};
|
|
|
|
let src = p("", &input);
|
|
|
|
let expected = p("explicit ", &explicit);
|
|
|
|
assert_eq!(src, expected);
|
|
|
|
} else {
|
|
|
|
let mut p = |ty, s| {
|
|
|
|
sess.parse_script(&file_name, s)
|
|
|
|
.map(normalize)
|
|
|
|
.unwrap_or_else(|err| {
|
2018-01-22 04:45:08 +03:00
|
|
|
err.emit();
|
|
|
|
panic!("failed to parse {} code:\n{}", ty, s)
|
2018-01-12 10:53:06 +03:00
|
|
|
})
|
2018-01-26 15:53:30 +03:00
|
|
|
};
|
|
|
|
let src = p("", &input);
|
|
|
|
let expected = p("explicit ", &explicit);
|
|
|
|
assert_eq!(src, expected);
|
2018-01-12 10:53:06 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn logger(file_name: &str, src: &str) -> Logger {
|
|
|
|
let (f, s): (String, String) = (file_name.into(), src.into());
|
|
|
|
::testing::logger().new(o!("file name" => f, "src" => s,))
|
|
|
|
}
|
|
|
|
|
2018-01-22 04:45:08 +03:00
|
|
|
struct TestSess {
|
2018-01-23 15:38:48 +03:00
|
|
|
cm: Rc<CodeMap>,
|
2018-01-22 04:45:08 +03:00
|
|
|
handler: Handler,
|
|
|
|
logger: Logger,
|
2018-01-21 11:47:37 +03:00
|
|
|
}
|
|
|
|
|
2018-01-22 04:45:08 +03:00
|
|
|
impl TestSess {
|
|
|
|
fn new() -> Self {
|
2018-01-23 15:38:48 +03:00
|
|
|
let cm = Rc::new(CodeMap::new(FilePathMapping::empty()));
|
|
|
|
|
2018-01-22 04:45:08 +03:00
|
|
|
let handler = ::swc_common::errors::Handler::with_tty_emitter(
|
|
|
|
::swc_common::errors::ColorConfig::Never,
|
|
|
|
true,
|
|
|
|
false,
|
2018-01-23 15:38:48 +03:00
|
|
|
Some(cm.clone()),
|
2018-01-22 04:45:08 +03:00
|
|
|
);
|
|
|
|
TestSess {
|
2018-01-23 15:38:48 +03:00
|
|
|
cm,
|
2018-01-22 04:45:08 +03:00
|
|
|
handler,
|
|
|
|
logger: ::testing::logger(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn parse_script<'a>(&'a mut self, file_name: &str, s: &str) -> PResult<'a, Vec<Stmt>> {
|
2018-01-26 15:53:30 +03:00
|
|
|
self.with_parser(file_name, s, |p| p.parse_script())
|
2018-01-22 04:45:08 +03:00
|
|
|
}
|
|
|
|
fn parse_module<'a>(&'a mut self, file_name: &str, s: &str) -> PResult<'a, Module> {
|
2018-01-26 15:53:30 +03:00
|
|
|
self.with_parser(file_name, s, |p| p.parse_module())
|
2018-01-22 04:45:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn with_parser<'a, F, Ret>(&'a mut self, file_name: &str, src: &str, f: F) -> PResult<'a, Ret>
|
|
|
|
where
|
2018-01-23 15:38:48 +03:00
|
|
|
F: FnOnce(&mut Parser<'a, FileMapInput>) -> PResult<'a, Ret>,
|
2018-01-22 04:45:08 +03:00
|
|
|
{
|
|
|
|
self.logger = logger(file_name, src);
|
2018-01-23 15:38:48 +03:00
|
|
|
let fm = self.cm
|
|
|
|
.new_filemap(FileName::Real(file_name.into()), src.into());
|
|
|
|
|
2018-01-22 04:45:08 +03:00
|
|
|
f(&mut Parser::new(
|
|
|
|
Session {
|
|
|
|
logger: &self.logger,
|
|
|
|
handler: &self.handler,
|
|
|
|
cfg: Default::default(),
|
|
|
|
},
|
2018-01-23 15:38:48 +03:00
|
|
|
(&*fm).into(),
|
2018-01-22 04:45:08 +03:00
|
|
|
))
|
|
|
|
}
|
2018-01-12 10:53:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn normalize<T>(mut t: T) -> T
|
|
|
|
where
|
|
|
|
Normalizer: Folder<T>,
|
|
|
|
{
|
|
|
|
loop {
|
|
|
|
let mut n = Normalizer {
|
|
|
|
did_something: false,
|
|
|
|
};
|
|
|
|
t = n.fold(t);
|
|
|
|
if !n.did_something {
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Normalizer {
|
|
|
|
did_something: bool,
|
|
|
|
}
|
|
|
|
impl Folder<Span> for Normalizer {
|
|
|
|
fn fold(&mut self, _: Span) -> Span {
|
2018-01-21 11:47:37 +03:00
|
|
|
Span::default()
|
2018-01-12 10:53:06 +03:00
|
|
|
}
|
|
|
|
}
|
2018-01-26 15:53:30 +03:00
|
|
|
impl Folder<Lit> for Normalizer {
|
|
|
|
fn fold(&mut self, lit: Lit) -> Lit {
|
|
|
|
match lit {
|
|
|
|
Lit::Str { value, .. } => Lit::Str {
|
|
|
|
value,
|
|
|
|
has_escape: false,
|
|
|
|
},
|
|
|
|
_ => lit,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-12 10:53:06 +03:00
|
|
|
impl Folder<ExprKind> for Normalizer {
|
|
|
|
fn fold(&mut self, e: ExprKind) -> ExprKind {
|
|
|
|
match e {
|
|
|
|
ExprKind::Paren(e) => self.fold(e.node),
|
2018-01-16 05:35:05 +03:00
|
|
|
ExprKind::New(NewExpr { callee, args: None }) => {
|
2018-01-12 10:53:06 +03:00
|
|
|
self.did_something = true;
|
2018-01-16 05:35:05 +03:00
|
|
|
ExprKind::New(NewExpr {
|
2018-01-12 10:53:06 +03:00
|
|
|
callee: self.fold(callee),
|
|
|
|
args: Some(vec![]),
|
2018-01-16 05:35:05 +03:00
|
|
|
})
|
2018-01-12 10:53:06 +03:00
|
|
|
}
|
2018-01-16 05:35:05 +03:00
|
|
|
ExprKind::Seq(SeqExpr { exprs }) => {
|
2018-01-12 10:53:06 +03:00
|
|
|
let mut exprs = self.fold(exprs);
|
|
|
|
let need_work = exprs.iter().map(|e| &e.node).any(|n| match *n {
|
|
|
|
ExprKind::Seq { .. } => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
|
|
|
|
|
|
|
if need_work {
|
|
|
|
self.did_something = true;
|
|
|
|
exprs = exprs.into_iter().fold(vec![], |mut v, e| {
|
|
|
|
match e.node {
|
2018-01-16 05:35:05 +03:00
|
|
|
ExprKind::Seq(SeqExpr { exprs }) => v.extend(exprs),
|
2018-01-12 10:53:06 +03:00
|
|
|
_ => v.push(e),
|
|
|
|
}
|
|
|
|
v
|
|
|
|
});
|
|
|
|
}
|
2018-01-16 05:35:05 +03:00
|
|
|
ExprKind::Seq(SeqExpr { exprs })
|
2018-01-12 10:53:06 +03:00
|
|
|
}
|
|
|
|
_ => e.fold_children(self),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Folder<PropName> for Normalizer {
|
|
|
|
fn fold(&mut self, n: PropName) -> PropName {
|
|
|
|
match n {
|
|
|
|
PropName::Ident(Ident { sym, .. }) => {
|
|
|
|
self.did_something = true;
|
|
|
|
PropName::Str(String::from(&*sym))
|
|
|
|
}
|
|
|
|
PropName::Num(num) => {
|
|
|
|
self.did_something = true;
|
|
|
|
PropName::Str(num.to_string())
|
|
|
|
}
|
|
|
|
_ => n.fold_children(self),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2018-01-26 15:53:30 +03:00
|
|
|
fn identity() {
|
|
|
|
let args: Vec<_> = env::args().collect();
|
|
|
|
let mut tests = Vec::new();
|
|
|
|
identity_tests(&mut tests).unwrap();
|
|
|
|
test_main(&args, tests, Options::new());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn error() {
|
2018-01-12 10:53:06 +03:00
|
|
|
let args: Vec<_> = env::args().collect();
|
|
|
|
let mut tests = Vec::new();
|
2018-01-26 15:53:30 +03:00
|
|
|
error_tests(&mut tests).unwrap();
|
2018-01-12 10:53:06 +03:00
|
|
|
test_main(&args, tests, Options::new());
|
|
|
|
}
|