rust/src/librustc/front/test.rs

472 lines
14 KiB
Rust
Raw Normal View History

2014-02-13 19:49:11 -06:00
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// Code that generates a test runner to run all the tests in a crate
#![allow(dead_code)]
#![allow(unused_imports)]
2014-03-05 08:36:01 -06:00
use driver::session::Session;
use front::config;
2013-12-21 19:14:53 -06:00
use std::cell::RefCell;
use std::gc::{Gc, GC};
use std::slice;
use std::vec;
use syntax::ast_util::*;
use syntax::attr::AttrMetaMethods;
2012-09-04 13:54:36 -05:00
use syntax::attr;
use syntax::codemap::{DUMMY_SP, Span, ExpnInfo, NameAndSpan, MacroAttribute};
2013-01-30 11:56:33 -06:00
use syntax::codemap;
use syntax::ext::base::ExtCtxt;
use syntax::ext::expand::ExpansionConfig;
use syntax::fold::Folder;
use syntax::fold;
use syntax::owned_slice::OwnedSlice;
use syntax::parse::token::InternedString;
use syntax::parse::token;
use syntax::print::pprust;
use syntax::{ast, ast_util};
use syntax::util::small_vector::SmallVector;
struct Test {
span: Span,
path: Vec<ast::Ident> ,
bench: bool,
ignore: bool,
should_fail: bool
}
2013-12-25 12:10:33 -06:00
struct TestCtxt<'a> {
2014-03-05 08:36:01 -06:00
sess: &'a Session,
path: RefCell<Vec<ast::Ident>>,
2013-12-25 12:10:33 -06:00
ext_cx: ExtCtxt<'a>,
testfns: RefCell<Vec<Test> >,
2014-02-13 19:49:11 -06:00
is_test_crate: bool,
2013-09-27 21:46:09 -05:00
config: ast::CrateConfig,
}
// Traverse the crate, collecting all the test functions, eliding any
// existing main functions, and synthesizing a main test harness
2014-03-05 08:36:01 -06:00
pub fn modify_for_testing(sess: &Session,
krate: ast::Crate) -> ast::Crate {
// We generate the test harness when building in the 'test'
// configuration, either with the '--test' or '--cfg test'
// command line options.
let should_test = attr::contains_name(krate.config.as_slice(), "test");
if should_test {
generate_test_harness(sess, krate)
} else {
strip_test_functions(krate)
}
}
2013-12-25 12:10:33 -06:00
struct TestHarnessGenerator<'a> {
cx: TestCtxt<'a>,
}
2013-12-25 12:10:33 -06:00
impl<'a> fold::Folder for TestHarnessGenerator<'a> {
2013-12-27 21:34:51 -06:00
fn fold_crate(&mut self, c: ast::Crate) -> ast::Crate {
let folded = fold::noop_fold_crate(c, self);
// Add a special __test module to the crate that will contain code
// generated for the test harness
ast::Crate {
2013-12-28 23:35:38 -06:00
module: add_test_module(&self.cx, &folded.module),
.. folded
}
}
2014-05-16 12:15:33 -05:00
fn fold_item(&mut self, i: Gc<ast::Item>) -> SmallVector<Gc<ast::Item>> {
2014-03-20 21:49:20 -05:00
self.cx.path.borrow_mut().push(i.ident);
debug!("current path: {}",
ast_util::path_name_i(self.cx.path.borrow().as_slice()));
if is_test_fn(&self.cx, i) || is_bench_fn(&self.cx, i) {
match i.node {
ast::ItemFn(_, ast::UnsafeFn, _, _, _) => {
let sess = self.cx.sess;
sess.span_fatal(i.span,
"unsafe functions cannot be used for \
tests");
}
_ => {
debug!("this is a test function");
let test = Test {
span: i.span,
path: self.cx.path.borrow().clone(),
bench: is_bench_fn(&self.cx, i),
2013-12-28 23:35:38 -06:00
ignore: is_ignored(&self.cx, i),
should_fail: should_fail(i)
};
2014-03-20 21:49:20 -05:00
self.cx.testfns.borrow_mut().push(test);
// debug!("have {} test/bench functions",
// cx.testfns.len());
}
}
}
2014-05-16 12:15:33 -05:00
let res = fold::noop_fold_item(&*i, self);
2014-03-20 21:49:20 -05:00
self.cx.path.borrow_mut().pop();
res
}
fn fold_mod(&mut self, m: &ast::Mod) -> ast::Mod {
// Remove any #[main] from the AST so it doesn't clash with
// the one we're going to add. Only if compiling an executable.
2014-05-16 12:15:33 -05:00
fn nomain(item: Gc<ast::Item>) -> Gc<ast::Item> {
box(GC) ast::Item {
attrs: item.attrs.iter().filter_map(|attr| {
if !attr.name().equiv(&("main")) {
Some(*attr)
} else {
None
}
}).collect(),
.. (*item).clone()
}
}
let mod_nomain = ast::Mod {
inner: m.inner,
view_items: m.view_items.clone(),
items: m.items.iter().map(|i| nomain(*i)).collect(),
};
fold::noop_fold_mod(&mod_nomain, self)
}
}
2014-03-05 08:36:01 -06:00
fn generate_test_harness(sess: &Session, krate: ast::Crate)
2013-09-27 21:46:09 -05:00
-> ast::Crate {
2013-12-28 23:35:38 -06:00
let mut cx: TestCtxt = TestCtxt {
sess: sess,
2014-03-09 09:54:34 -05:00
ext_cx: ExtCtxt::new(&sess.parse_sess, sess.opts.cfg.clone(),
ExpansionConfig {
deriving_hash_type_parameter: false,
crate_name: "test".to_string(),
}),
path: RefCell::new(Vec::new()),
testfns: RefCell::new(Vec::new()),
2014-02-13 19:49:11 -06:00
is_test_crate: is_test_crate(&krate),
config: krate.config.clone(),
};
2011-07-27 07:19:39 -05:00
2013-12-27 18:17:36 -06:00
cx.ext_cx.bt_push(ExpnInfo {
call_site: DUMMY_SP,
callee: NameAndSpan {
name: "test".to_string(),
format: MacroAttribute,
span: None
}
});
2013-12-27 21:34:51 -06:00
let mut fold = TestHarnessGenerator {
cx: cx
};
let res = fold.fold_crate(krate);
2013-12-28 23:35:38 -06:00
fold.cx.ext_cx.bt_pop();
2012-08-01 19:30:05 -05:00
return res;
}
fn strip_test_functions(krate: ast::Crate) -> ast::Crate {
// When not compiling with --test we should not compile the
// #[test] functions
config::strip_items(krate, |attrs| {
!attr::contains_name(attrs.as_slice(), "test") &&
!attr::contains_name(attrs.as_slice(), "bench")
})
}
2014-05-16 12:15:33 -05:00
fn is_test_fn(cx: &TestCtxt, i: Gc<ast::Item>) -> bool {
let has_test_attr = attr::contains_name(i.attrs.as_slice(), "test");
2014-05-16 12:15:33 -05:00
fn has_test_signature(i: Gc<ast::Item>) -> bool {
2013-01-16 21:28:52 -06:00
match &i.node {
&ast::ItemFn(ref decl, _, _, ref generics, _) => {
2012-08-27 18:26:35 -05:00
let no_output = match decl.output.node {
ast::TyNil => true,
2012-08-27 18:26:35 -05:00
_ => false
};
decl.inputs.is_empty()
&& no_output
&& !generics.is_parameterized()
2011-07-27 07:19:39 -05:00
}
2012-08-03 21:59:04 -05:00
_ => false
}
}
if has_test_attr && !has_test_signature(i) {
let sess = cx.sess;
sess.span_err(
i.span,
"functions used as tests must have signature fn() -> ()."
);
}
2012-08-01 19:30:05 -05:00
return has_test_attr && has_test_signature(i);
}
2014-05-16 12:15:33 -05:00
fn is_bench_fn(cx: &TestCtxt, i: Gc<ast::Item>) -> bool {
let has_bench_attr = attr::contains_name(i.attrs.as_slice(), "bench");
2014-05-16 12:15:33 -05:00
fn has_test_signature(i: Gc<ast::Item>) -> bool {
match i.node {
ast::ItemFn(ref decl, _, _, ref generics, _) => {
2013-05-14 04:52:12 -05:00
let input_cnt = decl.inputs.len();
let no_output = match decl.output.node {
ast::TyNil => true,
_ => false
};
let tparm_cnt = generics.ty_params.len();
// NB: inadequate check, but we're running
// well before resolve, can't get too deep.
input_cnt == 1u
&& no_output && tparm_cnt == 0u
}
_ => false
}
}
if has_bench_attr && !has_test_signature(i) {
let sess = cx.sess;
sess.span_err(i.span, "functions used as benches must have signature \
`fn(&mut Bencher) -> ()`");
}
return has_bench_attr && has_test_signature(i);
}
2014-05-16 12:15:33 -05:00
fn is_ignored(cx: &TestCtxt, i: Gc<ast::Item>) -> bool {
i.attrs.iter().any(|attr| {
// check ignore(cfg(foo, bar))
attr.check_name("ignore") && match attr.meta_item_list() {
Some(ref cfgs) => {
attr::test_cfg(cx.config.as_slice(), cfgs.iter().map(|x| *x))
}
None => true
}
})
}
2014-05-16 12:15:33 -05:00
fn should_fail(i: Gc<ast::Item>) -> bool {
attr::contains_name(i.attrs.as_slice(), "should_fail")
}
fn add_test_module(cx: &TestCtxt, m: &ast::Mod) -> ast::Mod {
2011-07-27 07:19:39 -05:00
let testmod = mk_test_module(cx);
ast::Mod {
items: m.items.clone().append_one(testmod),
2013-07-02 14:47:32 -05:00
..(*m).clone()
}
}
/*
We're going to be building a module that looks more or less like:
mod __test {
#![!resolve_unexported]
2014-02-13 19:49:11 -06:00
extern crate test (name = "test", vers = "...");
fn main() {
test::test_main_static(::os::args().as_slice(), tests)
}
2014-02-13 19:49:11 -06:00
static tests : &'static [test::TestDescAndFn] = &[
... the list of tests in the crate ...
];
}
*/
fn mk_std(cx: &TestCtxt) -> ast::ViewItem {
2014-02-13 19:49:11 -06:00
let id_test = token::str_to_ident("test");
let (vi, vis) = if cx.is_test_crate {
(ast::ViewItemUse(
2014-05-16 12:15:33 -05:00
box(GC) nospan(ast::ViewPathSimple(id_test,
path_node(vec!(id_test)),
ast::DUMMY_NODE_ID))),
ast::Public)
} else {
(ast::ViewItemExternCrate(id_test, None, ast::DUMMY_NODE_ID),
ast::Inherited)
};
ast::ViewItem {
node: vi,
attrs: Vec::new(),
vis: vis,
span: DUMMY_SP
2013-07-05 03:28:53 -05:00
}
}
2014-05-16 12:15:33 -05:00
fn mk_test_module(cx: &TestCtxt) -> Gc<ast::Item> {
2014-02-13 19:49:11 -06:00
// Link to test crate
let view_items = vec!(mk_std(cx));
// A constant vector of test descriptors.
let tests = mk_tests(cx);
// The synthesized main function which will call the console test runner
// with our list of tests
2013-12-27 18:17:36 -06:00
let mainfn = (quote_item!(&cx.ext_cx,
pub fn main() {
#![main]
use std::slice::Vector;
test::test_main_static(::std::os::args().as_slice(), TESTS);
}
)).unwrap();
let testmod = ast::Mod {
inner: DUMMY_SP,
view_items: view_items,
items: vec!(mainfn, tests),
};
let item_ = ast::ItemMod(testmod);
// This attribute tells resolve to let us call unexported functions
let resolve_unexported_str = InternedString::new("!resolve_unexported");
let resolve_unexported_attr =
2014-05-20 02:07:24 -05:00
attr::mk_attr_inner(attr::mk_attr_id(),
attr::mk_word_item(resolve_unexported_str));
let item = ast::Item {
ident: token::str_to_ident("__test"),
attrs: vec!(resolve_unexported_attr),
id: ast::DUMMY_NODE_ID,
node: item_,
vis: ast::Public,
span: DUMMY_SP,
};
debug!("Synthetic test module:\n{}\n", pprust::item_to_string(&item));
2014-05-16 12:15:33 -05:00
box(GC) item
}
fn nospan<T>(t: T) -> codemap::Spanned<T> {
codemap::Spanned { node: t, span: DUMMY_SP }
}
fn path_node(ids: Vec<ast::Ident> ) -> ast::Path {
ast::Path {
span: DUMMY_SP,
global: false,
segments: ids.move_iter().map(|identifier| ast::PathSegment {
identifier: identifier,
lifetimes: Vec::new(),
types: OwnedSlice::empty(),
}).collect()
}
}
fn path_node_global(ids: Vec<ast::Ident> ) -> ast::Path {
ast::Path {
span: DUMMY_SP,
global: true,
segments: ids.move_iter().map(|identifier| ast::PathSegment {
identifier: identifier,
lifetimes: Vec::new(),
types: OwnedSlice::empty(),
}).collect()
}
2012-04-23 06:04:46 -05:00
}
2014-05-16 12:15:33 -05:00
fn mk_tests(cx: &TestCtxt) -> Gc<ast::Item> {
// The vector of test_descs for this crate
let test_descs = mk_test_descs(cx);
2013-12-27 18:17:36 -06:00
(quote_item!(&cx.ext_cx,
2014-02-13 19:49:11 -06:00
pub static TESTS : &'static [self::test::TestDescAndFn] =
$test_descs
;
)).unwrap()
}
2014-02-13 19:49:11 -06:00
fn is_test_crate(krate: &ast::Crate) -> bool {
match attr::find_crate_name(krate.attrs.as_slice()) {
Some(ref s) if "test" == s.get().as_slice() => true,
_ => false
}
2012-12-28 15:41:14 -06:00
}
2014-05-16 12:15:33 -05:00
fn mk_test_descs(cx: &TestCtxt) -> Gc<ast::Expr> {
2014-03-20 21:49:20 -05:00
debug!("building test vector from {} tests", cx.testfns.borrow().len());
2013-01-15 15:51:43 -06:00
2014-05-16 12:15:33 -05:00
box(GC) ast::Expr {
id: ast::DUMMY_NODE_ID,
2014-05-16 12:15:33 -05:00
node: ast::ExprVstore(box(GC) ast::Expr {
id: ast::DUMMY_NODE_ID,
node: ast::ExprVec(cx.testfns.borrow().iter().map(|test| {
mk_test_desc_and_fn_rec(cx, test)
}).collect()),
span: DUMMY_SP,
}, ast::ExprVstoreSlice),
span: DUMMY_SP,
2013-01-15 15:51:43 -06:00
}
}
2014-05-16 12:15:33 -05:00
fn mk_test_desc_and_fn_rec(cx: &TestCtxt, test: &Test) -> Gc<ast::Expr> {
let span = test.span;
let path = test.path.clone();
debug!("encoding {}", ast_util::path_name_i(path.as_slice()));
let name_lit: ast::Lit =
nospan(ast::LitStr(token::intern_and_get_ident(
ast_util::path_name_i(path.as_slice()).as_slice()),
ast::CookedStr));
2014-05-16 12:15:33 -05:00
let name_expr = box(GC) ast::Expr {
id: ast::DUMMY_NODE_ID,
2014-05-16 12:15:33 -05:00
node: ast::ExprLit(box(GC) name_lit),
span: span
};
let fn_path = path_node_global(path);
2014-05-16 12:15:33 -05:00
let fn_expr = box(GC) ast::Expr {
id: ast::DUMMY_NODE_ID,
node: ast::ExprPath(fn_path),
span: span,
};
let t_expr = if test.bench {
2014-02-13 19:49:11 -06:00
quote_expr!(&cx.ext_cx, self::test::StaticBenchFn($fn_expr) )
} else {
2014-02-13 19:49:11 -06:00
quote_expr!(&cx.ext_cx, self::test::StaticTestFn($fn_expr) )
};
let ignore_expr = if test.ignore {
2013-12-27 18:17:36 -06:00
quote_expr!(&cx.ext_cx, true )
} else {
2013-12-27 18:17:36 -06:00
quote_expr!(&cx.ext_cx, false )
};
let fail_expr = if test.should_fail {
2013-12-27 18:17:36 -06:00
quote_expr!(&cx.ext_cx, true )
} else {
2013-12-27 18:17:36 -06:00
quote_expr!(&cx.ext_cx, false )
};
2013-12-27 18:17:36 -06:00
let e = quote_expr!(&cx.ext_cx,
2014-02-13 19:49:11 -06:00
self::test::TestDescAndFn {
desc: self::test::TestDesc {
name: self::test::StaticTestName($name_expr),
ignore: $ignore_expr,
should_fail: $fail_expr
},
testfn: $t_expr,
}
);
e
}