rust/src/librustc/front/test.rs

469 lines
13 KiB
Rust
Raw Normal View History

// Copyright 2012 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
2012-09-04 13:54:36 -05:00
use driver::session;
use front::config;
2013-12-21 19:14:53 -06:00
use std::cell::RefCell;
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::fold::ast_fold;
use syntax::fold;
use syntax::opt_vec;
use syntax::print::pprust;
use syntax::{ast, ast_util};
use syntax::util::small_vector::SmallVector;
struct Test {
span: Span,
2013-09-01 19:50:59 -05:00
path: ~[ast::Ident],
bench: bool,
ignore: bool,
should_fail: bool
}
struct TestCtxt {
sess: session::Session,
2013-12-21 19:14:53 -06:00
path: RefCell<~[ast::Ident]>,
2013-12-27 18:17:36 -06:00
ext_cx: ExtCtxt,
testfns: RefCell<~[Test]>,
2013-09-27 21:46:09 -05:00
is_extra: bool,
config: ast::CrateConfig,
}
// Traverse the crate, collecting all the test functions, eliding any
// existing main functions, and synthesizing a main test harness
pub fn modify_for_testing(sess: session::Session,
2013-09-27 21:46:09 -05:00
crate: 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(crate.config, "test");
if should_test {
generate_test_harness(sess, crate)
} else {
strip_test_functions(crate)
}
}
struct TestHarnessGenerator {
2013-12-21 19:18:07 -06:00
cx: @TestCtxt,
}
impl fold::ast_fold for TestHarnessGenerator {
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 {
module: add_test_module(self.cx, &folded.module),
.. folded
}
}
2013-12-27 21:34:51 -06:00
fn fold_item(&mut self, i: @ast::item) -> SmallVector<@ast::item> {
2013-12-21 19:14:53 -06:00
{
let mut path = self.cx.path.borrow_mut();
path.get().push(i.ident);
}
debug!("current path: {}",
2013-12-21 19:14:53 -06:00
ast_util::path_name_i(self.cx.path.get()));
if is_test_fn(self.cx, i) || is_bench_fn(i) {
match i.node {
ast::item_fn(_, purity, _, _, _)
if purity == ast::unsafe_fn => {
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,
2013-12-21 19:14:53 -06:00
path: self.cx.path.get(),
bench: is_bench_fn(i),
ignore: is_ignored(self.cx, i),
should_fail: should_fail(i)
};
{
let mut testfns = self.cx.testfns.borrow_mut();
testfns.get().push(test);
}
// debug!("have {} test/bench functions",
// cx.testfns.len());
}
}
}
let res = fold::noop_fold_item(i, self);
2013-12-21 19:14:53 -06:00
{
let mut path = self.cx.path.borrow_mut();
path.get().pop();
}
res
}
2013-12-27 21:34:51 -06:00
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.
2013-12-21 19:18:07 -06:00
fn nomain(cx: @TestCtxt, item: @ast::item) -> @ast::item {
if !cx.sess.building_library.get() {
@ast::item {
attrs: item.attrs.iter().filter_map(|attr| {
if "main" != attr.name() {
Some(*attr)
} else {
None
}
}).collect(),
.. (*item).clone()
}
} else {
item
}
}
let mod_nomain = ast::_mod {
view_items: m.view_items.clone(),
items: m.items.iter().map(|i| nomain(self.cx, *i)).collect(),
};
fold::noop_fold_mod(&mod_nomain, self)
}
}
2013-09-27 21:46:09 -05:00
fn generate_test_harness(sess: session::Session, crate: ast::Crate)
-> ast::Crate {
2013-12-21 19:18:07 -06:00
let cx: @TestCtxt = @TestCtxt {
sess: sess,
2013-07-02 14:47:32 -05:00
ext_cx: ExtCtxt::new(sess.parse_sess, sess.opts.cfg.clone()),
2013-12-21 19:14:53 -06:00
path: RefCell::new(~[]),
testfns: RefCell::new(~[]),
2013-09-27 21:46:09 -05:00
is_extra: is_extra(&crate),
config: crate.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",
format: MacroAttribute,
span: None
}
});
2013-12-27 21:34:51 -06:00
let mut fold = TestHarnessGenerator {
cx: cx
};
2013-09-27 21:46:09 -05:00
let res = fold.fold_crate(crate);
2013-12-27 18:17:36 -06:00
cx.ext_cx.bt_pop();
2012-08-01 19:30:05 -05:00
return res;
}
2013-09-27 21:46:09 -05:00
fn strip_test_functions(crate: ast::Crate) -> ast::Crate {
// When not compiling with --test we should not compile the
// #[test] functions
config::strip_items(crate, |attrs| {
!attr::contains_name(attrs, "test") &&
!attr::contains_name(attrs, "bench")
})
}
2013-12-21 19:18:07 -06:00
fn is_test_fn(cx: @TestCtxt, i: @ast::item) -> bool {
let has_test_attr = attr::contains_name(i.attrs, "test");
fn has_test_signature(i: @ast::item) -> bool {
2013-01-16 21:28:52 -06:00
match &i.node {
&ast::item_fn(ref decl, _, _, ref generics, _) => {
2012-08-27 18:26:35 -05:00
let no_output = match decl.output.node {
ast::ty_nil => true,
_ => 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);
}
fn is_bench_fn(i: @ast::item) -> bool {
let has_bench_attr = attr::contains_name(i.attrs, "bench");
fn has_test_signature(i: @ast::item) -> bool {
match i.node {
ast::item_fn(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::ty_nil => 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
}
}
return has_bench_attr && has_test_signature(i);
}
2013-12-21 19:18:07 -06:00
fn is_ignored(cx: @TestCtxt, i: @ast::item) -> bool {
i.attrs.iter().any(|attr| {
// check ignore(cfg(foo, bar))
"ignore" == attr.name() && match attr.meta_item_list() {
2013-09-27 21:46:09 -05:00
Some(ref cfgs) => attr::test_cfg(cx.config, cfgs.iter().map(|x| *x)),
None => true
}
})
}
fn should_fail(i: @ast::item) -> bool {
attr::contains_name(i.attrs, "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 {
2013-07-02 14:47:32 -05:00
items: vec::append_one(m.items.clone(), testmod),
..(*m).clone()
}
}
/*
We're going to be building a module that looks more or less like:
mod __test {
#[!resolve_unexported]
extern mod extra (name = "extra", vers = "...");
fn main() {
#[main];
extra::test::test_main_static(::os::args(), tests)
}
static tests : &'static [extra::test::TestDescAndFn] = &[
... the list of tests in the crate ...
];
}
*/
2013-07-05 03:28:53 -05:00
fn mk_std(cx: &TestCtxt) -> ast::view_item {
let id_extra = cx.sess.ident_of("extra");
2013-09-27 21:46:09 -05:00
let vi = if cx.is_extra {
ast::view_item_use(
~[@nospan(ast::view_path_simple(id_extra,
path_node(~[id_extra]),
ast::DUMMY_NODE_ID))])
} else {
2013-09-26 20:18:42 -05:00
let mi = attr::mk_name_value_item_str(@"vers", @"0.9-pre");
ast::view_item_extern_mod(id_extra, None, ~[mi], ast::DUMMY_NODE_ID)
};
2013-07-05 03:28:53 -05:00
ast::view_item {
node: vi,
attrs: ~[],
vis: ast::public,
span: dummy_sp()
2013-07-05 03:28:53 -05:00
}
}
fn mk_test_module(cx: &TestCtxt) -> @ast::item {
// Link to extra
let view_items = ~[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];
extra::test::test_main_static(::std::os::args(), TESTS);
}
)).unwrap();
let testmod = ast::_mod {
view_items: view_items,
items: ~[mainfn, tests],
};
let item_ = ast::item_mod(testmod);
// This attribute tells resolve to let us call unexported functions
let resolve_unexported_attr =
attr::mk_attr(attr::mk_word_item(@"!resolve_unexported"));
let item = ast::item {
ident: cx.sess.ident_of("__test"),
attrs: ~[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_str(&item, cx.sess.intr()));
return @item;
}
fn nospan<T>(t: T) -> codemap::Spanned<T> {
codemap::Spanned { node: t, span: dummy_sp() }
}
2013-09-01 19:50:59 -05:00
fn path_node(ids: ~[ast::Ident]) -> ast::Path {
ast::Path {
span: dummy_sp(),
global: false,
segments: ids.move_iter().map(|identifier| ast::PathSegment {
identifier: identifier,
lifetimes: opt_vec::Empty,
types: opt_vec::Empty,
}).collect()
}
}
2013-09-01 19:50:59 -05:00
fn path_node_global(ids: ~[ast::Ident]) -> ast::Path {
ast::Path {
span: dummy_sp(),
global: true,
segments: ids.move_iter().map(|identifier| ast::PathSegment {
identifier: identifier,
lifetimes: opt_vec::Empty,
types: opt_vec::Empty,
}).collect()
}
2012-04-23 06:04:46 -05:00
}
fn mk_tests(cx: &TestCtxt) -> @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,
pub static TESTS : &'static [self::extra::test::TestDescAndFn] =
$test_descs
;
)).unwrap()
}
2013-09-27 21:46:09 -05:00
fn is_extra(crate: &ast::Crate) -> bool {
match attr::find_pkgid(crate.attrs) {
Some(ref s) if "extra" == s.name => true,
_ => false
}
2012-12-28 15:41:14 -06:00
}
fn mk_test_descs(cx: &TestCtxt) -> @ast::Expr {
let mut descs = ~[];
{
let testfns = cx.testfns.borrow();
debug!("building test vector from {} tests", testfns.get().len());
for test in testfns.get().iter() {
descs.push(mk_test_desc_and_fn_rec(cx, test));
}
}
let inner_expr = @ast::Expr {
id: ast::DUMMY_NODE_ID,
node: ast::ExprVec(descs, ast::MutImmutable),
2013-01-15 15:51:43 -06:00
span: dummy_sp(),
};
@ast::Expr {
id: ast::DUMMY_NODE_ID,
node: ast::ExprVstore(inner_expr, ast::ExprVstoreSlice),
2013-01-15 15:51:43 -06:00
span: dummy_sp(),
}
}
fn mk_test_desc_and_fn_rec(cx: &TestCtxt, test: &Test) -> @ast::Expr {
let span = test.span;
let path = test.path.clone();
debug!("encoding {}", ast_util::path_name_i(path));
let name_lit: ast::lit =
nospan(ast::lit_str(ast_util::path_name_i(path).to_managed(), ast::CookedStr));
let name_expr = @ast::Expr {
id: ast::DUMMY_NODE_ID,
node: ast::ExprLit(@name_lit),
span: span
};
let fn_path = path_node_global(path);
let fn_expr = @ast::Expr {
id: ast::DUMMY_NODE_ID,
node: ast::ExprPath(fn_path),
span: span,
};
let t_expr = if test.bench {
2013-12-27 18:17:36 -06:00
quote_expr!(&cx.ext_cx, self::extra::test::StaticBenchFn($fn_expr) )
} else {
2013-12-27 18:17:36 -06:00
quote_expr!(&cx.ext_cx, self::extra::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,
self::extra::test::TestDescAndFn {
desc: self::extra::test::TestDesc {
name: self::extra::test::StaticTestName($name_expr),
ignore: $ignore_expr,
should_fail: $fail_expr
},
testfn: $t_expr,
}
);
e
}