2014-02-13 19:49:11 -06:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2011-07-06 18:28:07 -05:00
|
|
|
// Code that generates a test runner to run all the tests in a crate
|
|
|
|
|
2014-03-21 20:05:05 -05:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_imports)]
|
2013-05-17 17:28:44 -05:00
|
|
|
|
2014-03-05 08:36:01 -06:00
|
|
|
use driver::session::Session;
|
2012-12-23 16:41:37 -06:00
|
|
|
use front::config;
|
|
|
|
|
2014-06-11 21:33:52 -05:00
|
|
|
use std::gc::{Gc, GC};
|
2014-03-08 17:11:52 -06:00
|
|
|
use std::slice;
|
2014-07-21 00:10:11 -05:00
|
|
|
use std::mem;
|
2014-03-20 02:35:51 -05:00
|
|
|
use std::vec;
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::ast_util::*;
|
2013-08-07 11:47:28 -05:00
|
|
|
use syntax::attr::AttrMetaMethods;
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::attr;
|
2014-01-01 00:53:22 -06:00
|
|
|
use syntax::codemap::{DUMMY_SP, Span, ExpnInfo, NameAndSpan, MacroAttribute};
|
2013-01-30 11:56:33 -06:00
|
|
|
use syntax::codemap;
|
2013-05-17 06:27:17 -05:00
|
|
|
use syntax::ext::base::ExtCtxt;
|
2014-07-21 00:10:11 -05:00
|
|
|
use syntax::ext::build::AstBuilder;
|
2014-03-01 01:17:38 -06:00
|
|
|
use syntax::ext::expand::ExpansionConfig;
|
2014-01-09 07:05:33 -06:00
|
|
|
use syntax::fold::Folder;
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::fold;
|
2014-03-19 09:52:37 -05:00
|
|
|
use syntax::owned_slice::OwnedSlice;
|
2014-01-08 12:35:15 -06:00
|
|
|
use syntax::parse::token::InternedString;
|
2014-01-10 16:02:36 -06:00
|
|
|
use syntax::parse::token;
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::print::pprust;
|
|
|
|
use syntax::{ast, ast_util};
|
2013-11-25 01:08:53 -06:00
|
|
|
use syntax::util::small_vector::SmallVector;
|
2013-02-13 13:46:14 -06:00
|
|
|
|
2013-02-19 01:40:42 -06:00
|
|
|
struct Test {
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2014-03-04 12:02:49 -06:00
|
|
|
path: Vec<ast::Ident> ,
|
2013-02-13 13:46:14 -06:00
|
|
|
bench: bool,
|
2013-02-04 16:02:01 -06:00
|
|
|
ignore: bool,
|
|
|
|
should_fail: bool
|
2013-02-19 01:40:42 -06:00
|
|
|
}
|
2013-02-04 16:02:01 -06:00
|
|
|
|
2013-12-25 12:10:33 -06:00
|
|
|
struct TestCtxt<'a> {
|
2014-03-05 08:36:01 -06:00
|
|
|
sess: &'a Session,
|
2014-07-20 20:05:59 -05:00
|
|
|
path: Vec<ast::Ident>,
|
2013-12-25 12:10:33 -06:00
|
|
|
ext_cx: ExtCtxt<'a>,
|
2014-07-20 20:05:59 -05:00
|
|
|
testfns: Vec<Test>,
|
2014-07-21 00:10:11 -05:00
|
|
|
reexport_mod_ident: ast::Ident,
|
2014-02-13 19:49:11 -06:00
|
|
|
is_test_crate: bool,
|
2013-09-27 21:46:09 -05:00
|
|
|
config: ast::CrateConfig,
|
2013-02-04 16:02:01 -06:00
|
|
|
}
|
2011-07-06 16:29:50 -05:00
|
|
|
|
|
|
|
// 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,
|
2014-02-05 15:15:24 -06:00
|
|
|
krate: ast::Crate) -> ast::Crate {
|
2012-11-07 01:26:44 -06:00
|
|
|
// We generate the test harness when building in the 'test'
|
|
|
|
// configuration, either with the '--test' or '--cfg test'
|
|
|
|
// command line options.
|
2014-02-28 17:25:15 -06:00
|
|
|
let should_test = attr::contains_name(krate.config.as_slice(), "test");
|
2012-11-07 01:26:44 -06:00
|
|
|
|
|
|
|
if should_test {
|
2014-02-05 15:15:24 -06:00
|
|
|
generate_test_harness(sess, krate)
|
2012-01-05 19:30:00 -06:00
|
|
|
} else {
|
2014-02-05 15:15:24 -06:00
|
|
|
strip_test_functions(krate)
|
2012-01-05 19:30:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-25 12:10:33 -06:00
|
|
|
struct TestHarnessGenerator<'a> {
|
|
|
|
cx: TestCtxt<'a>,
|
2014-07-27 14:02:19 -05:00
|
|
|
tests: Vec<ast::Ident>,
|
|
|
|
tested_submods: Vec<ast::Ident>,
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
|
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 {
|
2013-08-29 14:10:02 -05:00
|
|
|
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),
|
2013-08-29 14:10:02 -05:00
|
|
|
.. folded
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
fn fold_item(&mut self, i: Gc<ast::Item>) -> SmallVector<Gc<ast::Item>> {
|
2014-07-20 20:05:59 -05:00
|
|
|
self.cx.path.push(i.ident);
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!("current path: {}",
|
2014-07-20 20:05:59 -05:00
|
|
|
ast_util::path_name_i(self.cx.path.as_slice()));
|
2013-08-29 14:10:02 -05:00
|
|
|
|
2014-03-18 08:20:30 -05:00
|
|
|
if is_test_fn(&self.cx, i) || is_bench_fn(&self.cx, i) {
|
2013-08-29 14:10:02 -05:00
|
|
|
match i.node {
|
2014-03-18 08:20:30 -05:00
|
|
|
ast::ItemFn(_, ast::UnsafeFn, _, _, _) => {
|
2013-08-29 14:10:02 -05:00
|
|
|
let sess = self.cx.sess;
|
|
|
|
sess.span_fatal(i.span,
|
|
|
|
"unsafe functions cannot be used for \
|
|
|
|
tests");
|
|
|
|
}
|
|
|
|
_ => {
|
2013-10-21 15:08:31 -05:00
|
|
|
debug!("this is a test function");
|
2013-08-29 14:10:02 -05:00
|
|
|
let test = Test {
|
|
|
|
span: i.span,
|
2014-07-20 20:05:59 -05:00
|
|
|
path: self.cx.path.clone(),
|
2014-03-18 08:20:30 -05:00
|
|
|
bench: is_bench_fn(&self.cx, i),
|
2013-12-28 23:35:38 -06:00
|
|
|
ignore: is_ignored(&self.cx, i),
|
2013-08-29 14:10:02 -05:00
|
|
|
should_fail: should_fail(i)
|
|
|
|
};
|
2014-07-20 20:05:59 -05:00
|
|
|
self.cx.testfns.push(test);
|
2014-07-27 14:02:19 -05:00
|
|
|
self.tests.push(i.ident);
|
2013-10-21 15:08:31 -05:00
|
|
|
// debug!("have {} test/bench functions",
|
2013-08-29 14:10:02 -05:00
|
|
|
// cx.testfns.len());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-21 00:10:11 -05:00
|
|
|
// We don't want to recurse into anything other than mods, since
|
|
|
|
// mods or tests inside of functions will break things
|
|
|
|
let res = match i.node {
|
|
|
|
ast::ItemMod(..) => fold::noop_fold_item(&*i, self),
|
|
|
|
_ => SmallVector::one(i),
|
|
|
|
};
|
2014-07-20 20:05:59 -05:00
|
|
|
self.cx.path.pop();
|
2013-11-25 01:08:53 -06:00
|
|
|
res
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
fn fold_mod(&mut self, m: &ast::Mod) -> ast::Mod {
|
2014-07-27 14:02:19 -05:00
|
|
|
let tests = mem::replace(&mut self.tests, Vec::new());
|
|
|
|
let tested_submods = mem::replace(&mut self.tested_submods, Vec::new());
|
2014-07-21 00:10:11 -05:00
|
|
|
let mut mod_folded = fold::noop_fold_mod(m, self);
|
2014-07-27 14:02:19 -05:00
|
|
|
let tests = mem::replace(&mut self.tests, tests);
|
|
|
|
let tested_submods = mem::replace(&mut self.tested_submods, tested_submods);
|
2014-07-21 00:10:11 -05:00
|
|
|
|
2013-08-29 14:10:02 -05:00
|
|
|
// 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 {
|
2014-05-02 17:26:45 -05:00
|
|
|
attrs: item.attrs.iter().filter_map(|attr| {
|
2014-07-21 00:10:11 -05:00
|
|
|
if !attr.check_name("main") {
|
2014-05-02 17:26:45 -05:00
|
|
|
Some(*attr)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}).collect(),
|
|
|
|
.. (*item).clone()
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-21 00:10:11 -05:00
|
|
|
for i in mod_folded.items.mut_iter() {
|
|
|
|
*i = nomain(*i);
|
|
|
|
}
|
2014-07-27 14:02:19 -05:00
|
|
|
if !tests.is_empty() || !tested_submods.is_empty() {
|
|
|
|
mod_folded.items.push(mk_reexport_mod(&mut self.cx, tests,
|
|
|
|
tested_submods));
|
|
|
|
if !self.cx.path.is_empty() {
|
|
|
|
self.tested_submods.push(self.cx.path[self.cx.path.len()-1]);
|
|
|
|
}
|
2014-07-21 00:34:09 -05:00
|
|
|
}
|
2014-07-21 00:10:11 -05:00
|
|
|
|
|
|
|
mod_folded
|
|
|
|
}
|
|
|
|
}
|
2013-08-29 14:10:02 -05:00
|
|
|
|
2014-07-27 14:02:19 -05:00
|
|
|
fn mk_reexport_mod(cx: &mut TestCtxt, tests: Vec<ast::Ident>,
|
|
|
|
tested_submods: Vec<ast::Ident>) -> Gc<ast::Item> {
|
|
|
|
let mut view_items = Vec::new();
|
|
|
|
let super_ = token::str_to_ident("super");
|
|
|
|
|
|
|
|
view_items.extend(tests.move_iter().map(|r| {
|
|
|
|
cx.ext_cx.view_use_simple(DUMMY_SP, ast::Public,
|
|
|
|
cx.ext_cx.path(DUMMY_SP, vec![super_, r]))
|
|
|
|
}));
|
|
|
|
view_items.extend(tested_submods.move_iter().map(|r| {
|
|
|
|
let path = cx.ext_cx.path(DUMMY_SP, vec![super_, r, cx.reexport_mod_ident]);
|
|
|
|
cx.ext_cx.view_use_simple_(DUMMY_SP, ast::Public, r, path)
|
|
|
|
}));
|
|
|
|
|
2014-07-21 00:10:11 -05:00
|
|
|
let reexport_mod = ast::Mod {
|
|
|
|
inner: DUMMY_SP,
|
|
|
|
view_items: view_items,
|
|
|
|
items: Vec::new(),
|
|
|
|
};
|
|
|
|
box(GC) ast::Item {
|
|
|
|
ident: cx.reexport_mod_ident.clone(),
|
|
|
|
attrs: Vec::new(),
|
|
|
|
id: ast::DUMMY_NODE_ID,
|
|
|
|
node: ast::ItemMod(reexport_mod),
|
|
|
|
vis: ast::Public,
|
|
|
|
span: DUMMY_SP,
|
2013-08-29 14:10:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-21 00:10:11 -05:00
|
|
|
fn generate_test_harness(sess: &Session, krate: ast::Crate) -> ast::Crate {
|
2013-12-28 23:35:38 -06:00
|
|
|
let mut cx: TestCtxt = TestCtxt {
|
2013-02-04 16:02:01 -06:00
|
|
|
sess: sess,
|
2014-03-09 09:54:34 -05:00
|
|
|
ext_cx: ExtCtxt::new(&sess.parse_sess, sess.opts.cfg.clone(),
|
2014-03-01 01:17:38 -06:00
|
|
|
ExpansionConfig {
|
|
|
|
deriving_hash_type_parameter: false,
|
2014-06-06 15:21:18 -05:00
|
|
|
crate_name: "test".to_string(),
|
2014-03-01 01:17:38 -06:00
|
|
|
}),
|
2014-07-20 20:05:59 -05:00
|
|
|
path: Vec::new(),
|
|
|
|
testfns: Vec::new(),
|
2014-07-24 19:01:42 -05:00
|
|
|
reexport_mod_ident: token::gensym_ident("__test_reexports"),
|
2014-02-13 19:49:11 -06:00
|
|
|
is_test_crate: is_test_crate(&krate),
|
2014-02-05 15:15:24 -06:00
|
|
|
config: krate.config.clone(),
|
2013-02-04 16:02:01 -06:00
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-12-27 18:17:36 -06:00
|
|
|
cx.ext_cx.bt_push(ExpnInfo {
|
2014-01-01 00:53:22 -06:00
|
|
|
call_site: DUMMY_SP,
|
2013-02-21 02:16:31 -06:00
|
|
|
callee: NameAndSpan {
|
2014-05-25 05:17:19 -05:00
|
|
|
name: "test".to_string(),
|
2013-12-06 20:41:11 -06:00
|
|
|
format: MacroAttribute,
|
2013-02-21 02:16:31 -06:00
|
|
|
span: None
|
|
|
|
}
|
2013-07-02 04:31:00 -05:00
|
|
|
});
|
2013-02-13 13:46:14 -06:00
|
|
|
|
2013-12-27 21:34:51 -06:00
|
|
|
let mut fold = TestHarnessGenerator {
|
2014-07-21 00:10:11 -05:00
|
|
|
cx: cx,
|
2014-07-27 14:02:19 -05:00
|
|
|
tests: Vec::new(),
|
|
|
|
tested_submods: Vec::new(),
|
2013-08-29 14:10:02 -05:00
|
|
|
};
|
2014-02-05 15:15:24 -06:00
|
|
|
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;
|
2011-07-06 16:29:50 -05:00
|
|
|
}
|
|
|
|
|
2014-02-05 15:15:24 -06:00
|
|
|
fn strip_test_functions(krate: ast::Crate) -> ast::Crate {
|
2012-01-05 19:30:00 -06:00
|
|
|
// When not compiling with --test we should not compile the
|
|
|
|
// #[test] functions
|
2014-02-05 15:15:24 -06:00
|
|
|
config::strip_items(krate, |attrs| {
|
2014-02-28 17:25:15 -06:00
|
|
|
!attr::contains_name(attrs.as_slice(), "test") &&
|
|
|
|
!attr::contains_name(attrs.as_slice(), "bench")
|
2013-11-21 17:42:55 -06:00
|
|
|
})
|
2012-01-05 19:30:00 -06:00
|
|
|
}
|
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
fn is_test_fn(cx: &TestCtxt, i: Gc<ast::Item>) -> bool {
|
2014-02-28 17:25:15 -06:00
|
|
|
let has_test_attr = attr::contains_name(i.attrs.as_slice(), "test");
|
2011-07-09 20:36:19 -05:00
|
|
|
|
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 {
|
2014-01-09 07:05:33 -06:00
|
|
|
&ast::ItemFn(ref decl, _, _, ref generics, _) => {
|
2012-08-27 18:26:35 -05:00
|
|
|
let no_output = match decl.output.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::TyNil => true,
|
2012-08-27 18:26:35 -05:00
|
|
|
_ => false
|
|
|
|
};
|
2013-03-06 11:27:23 -06:00
|
|
|
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
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-29 09:25:40 -05:00
|
|
|
if has_test_attr && !has_test_signature(i) {
|
|
|
|
let sess = cx.sess;
|
2013-05-01 18:31:58 -05:00
|
|
|
sess.span_err(
|
2013-04-29 09:25:40 -05:00
|
|
|
i.span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"functions used as tests must have signature fn() -> ()."
|
2013-04-29 09:25:40 -05:00
|
|
|
);
|
|
|
|
}
|
2013-07-19 06:51:37 -05:00
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return has_test_attr && has_test_signature(i);
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
fn is_bench_fn(cx: &TestCtxt, i: Gc<ast::Item>) -> bool {
|
2014-02-28 17:25:15 -06:00
|
|
|
let has_bench_attr = attr::contains_name(i.attrs.as_slice(), "bench");
|
2013-02-13 13:46:14 -06:00
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
fn has_test_signature(i: Gc<ast::Item>) -> bool {
|
2013-02-14 23:50:03 -06:00
|
|
|
match i.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemFn(ref decl, _, _, ref generics, _) => {
|
2013-05-14 04:52:12 -05:00
|
|
|
let input_cnt = decl.inputs.len();
|
2013-02-13 13:46:14 -06:00
|
|
|
let no_output = match decl.output.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::TyNil => true,
|
2013-02-13 13:46:14 -06:00
|
|
|
_ => false
|
|
|
|
};
|
2013-02-14 23:50:03 -06:00
|
|
|
let tparm_cnt = generics.ty_params.len();
|
2013-02-13 13:46:14 -06:00
|
|
|
// NB: inadequate check, but we're running
|
|
|
|
// well before resolve, can't get too deep.
|
|
|
|
input_cnt == 1u
|
|
|
|
&& no_output && tparm_cnt == 0u
|
|
|
|
}
|
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-18 08:20:30 -05:00
|
|
|
if has_bench_attr && !has_test_signature(i) {
|
|
|
|
let sess = cx.sess;
|
|
|
|
sess.span_err(i.span, "functions used as benches must have signature \
|
2014-03-31 20:16:35 -05:00
|
|
|
`fn(&mut Bencher) -> ()`");
|
2014-03-18 08:20:30 -05:00
|
|
|
}
|
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
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 {
|
2013-11-21 17:42:55 -06:00
|
|
|
i.attrs.iter().any(|attr| {
|
2013-07-19 06:51:37 -05:00
|
|
|
// check ignore(cfg(foo, bar))
|
2014-05-23 00:29:13 -05:00
|
|
|
attr.check_name("ignore") && match attr.meta_item_list() {
|
2014-02-28 17:25:15 -06:00
|
|
|
Some(ref cfgs) => {
|
|
|
|
attr::test_cfg(cx.config.as_slice(), cfgs.iter().map(|x| *x))
|
|
|
|
}
|
2013-07-19 06:51:37 -05:00
|
|
|
None => true
|
|
|
|
}
|
2013-11-21 17:42:55 -06:00
|
|
|
})
|
2011-07-14 13:29:54 -05:00
|
|
|
}
|
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
fn should_fail(i: Gc<ast::Item>) -> bool {
|
2014-02-28 17:25:15 -06:00
|
|
|
attr::contains_name(i.attrs.as_slice(), "should_fail")
|
2011-11-01 12:31:23 -05:00
|
|
|
}
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
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);
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::Mod {
|
2014-03-30 22:53:26 -05:00
|
|
|
items: m.items.clone().append_one(testmod),
|
2013-07-02 14:47:32 -05:00
|
|
|
..(*m).clone()
|
2013-01-15 18:05:20 -06:00
|
|
|
}
|
2011-07-06 16:29:50 -05:00
|
|
|
}
|
|
|
|
|
2011-07-09 20:36:19 -05:00
|
|
|
/*
|
|
|
|
|
|
|
|
We're going to be building a module that looks more or less like:
|
|
|
|
|
|
|
|
mod __test {
|
2014-02-13 19:49:11 -06:00
|
|
|
extern crate test (name = "test", vers = "...");
|
2013-02-13 13:46:14 -06:00
|
|
|
fn main() {
|
2014-05-04 15:20:47 -05:00
|
|
|
test::test_main_static(::os::args().as_slice(), tests)
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2014-02-13 19:49:11 -06:00
|
|
|
static tests : &'static [test::TestDescAndFn] = &[
|
2011-07-09 20:36:19 -05:00
|
|
|
... the list of tests in the crate ...
|
2013-02-13 13:46:14 -06:00
|
|
|
];
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
fn mk_std(cx: &TestCtxt) -> ast::ViewItem {
|
2014-02-13 19:49:11 -06:00
|
|
|
let id_test = token::str_to_ident("test");
|
2014-04-08 16:31:25 -05:00
|
|
|
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,
|
2014-04-26 08:33:45 -05:00
|
|
|
path_node(vec!(id_test)),
|
|
|
|
ast::DUMMY_NODE_ID))),
|
2014-04-08 16:31:25 -05:00
|
|
|
ast::Public)
|
2013-02-13 13:46:14 -06:00
|
|
|
} else {
|
2014-06-06 15:21:18 -05:00
|
|
|
(ast::ViewItemExternCrate(id_test, None, ast::DUMMY_NODE_ID),
|
2014-04-08 16:31:25 -05:00
|
|
|
ast::Inherited)
|
2013-02-13 13:46:14 -06:00
|
|
|
};
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ViewItem {
|
2013-02-13 13:46:14 -06:00
|
|
|
node: vi,
|
2014-02-28 17:25:15 -06:00
|
|
|
attrs: Vec::new(),
|
2014-04-08 16:31:25 -05:00
|
|
|
vis: vis,
|
2014-01-01 00:53:22 -06:00
|
|
|
span: DUMMY_SP
|
2013-07-05 03:28:53 -05:00
|
|
|
}
|
2013-02-13 13:46:14 -06: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
|
2014-02-28 17:25:15 -06:00
|
|
|
let view_items = vec!(mk_std(cx));
|
2013-08-15 01:06:33 -05:00
|
|
|
|
|
|
|
// 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,
|
2013-08-15 01:06:33 -05:00
|
|
|
pub fn main() {
|
2014-03-29 17:10:22 -05:00
|
|
|
#![main]
|
2014-05-04 15:20:47 -05:00
|
|
|
use std::slice::Vector;
|
2014-05-16 12:45:16 -05:00
|
|
|
test::test_main_static(::std::os::args().as_slice(), TESTS);
|
2013-08-15 01:06:33 -05:00
|
|
|
}
|
|
|
|
)).unwrap();
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
let testmod = ast::Mod {
|
2014-04-26 15:05:45 -05:00
|
|
|
inner: DUMMY_SP,
|
2013-08-15 01:06:33 -05:00
|
|
|
view_items: view_items,
|
2014-02-28 17:25:15 -06:00
|
|
|
items: vec!(mainfn, tests),
|
2013-08-15 01:06:33 -05:00
|
|
|
};
|
2014-01-09 07:05:33 -06:00
|
|
|
let item_ = ast::ItemMod(testmod);
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
let item = ast::Item {
|
2014-07-24 19:01:42 -05:00
|
|
|
ident: token::gensym_ident("__test"),
|
2014-07-21 00:10:11 -05:00
|
|
|
attrs: Vec::new(),
|
2013-09-06 21:11:55 -05:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2013-08-15 01:06:33 -05:00
|
|
|
node: item_,
|
2014-01-09 07:05:33 -06:00
|
|
|
vis: ast::Public,
|
2014-01-01 00:53:22 -06:00
|
|
|
span: DUMMY_SP,
|
2013-08-15 01:06:33 -05:00
|
|
|
};
|
|
|
|
|
2014-06-21 05:39:03 -05:00
|
|
|
debug!("Synthetic test module:\n{}\n", pprust::item_to_string(&item));
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
box(GC) item
|
2013-08-15 01:06:33 -05:00
|
|
|
}
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
fn nospan<T>(t: T) -> codemap::Spanned<T> {
|
2014-01-01 00:53:22 -06:00
|
|
|
codemap::Spanned { node: t, span: DUMMY_SP }
|
2011-11-18 05:39:20 -06:00
|
|
|
}
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2014-03-04 12:02:49 -06:00
|
|
|
fn path_node(ids: Vec<ast::Ident> ) -> ast::Path {
|
2013-08-07 11:47:28 -05:00
|
|
|
ast::Path {
|
2014-01-01 00:53:22 -06:00
|
|
|
span: DUMMY_SP,
|
2013-08-07 11:47:28 -05:00
|
|
|
global: false,
|
2013-08-08 13:38:10 -05:00
|
|
|
segments: ids.move_iter().map(|identifier| ast::PathSegment {
|
2013-08-07 11:47:28 -05:00
|
|
|
identifier: identifier,
|
2014-03-07 09:50:40 -06:00
|
|
|
lifetimes: Vec::new(),
|
2014-03-19 09:52:37 -05:00
|
|
|
types: OwnedSlice::empty(),
|
2013-08-07 11:47:28 -05:00
|
|
|
}).collect()
|
|
|
|
}
|
2012-12-27 19:53:04 -06:00
|
|
|
}
|
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
fn mk_tests(cx: &TestCtxt) -> Gc<ast::Item> {
|
2013-08-15 01:06:33 -05:00
|
|
|
// The vector of test_descs for this crate
|
|
|
|
let test_descs = mk_test_descs(cx);
|
|
|
|
|
2014-07-24 19:01:42 -05:00
|
|
|
// FIXME #15962: should be using quote_item, but that stringifies
|
|
|
|
// __test_reexports, causing it to be reinterned, losing the
|
|
|
|
// gensym information.
|
|
|
|
let sp = DUMMY_SP;
|
|
|
|
let ecx = &cx.ext_cx;
|
|
|
|
let struct_type = ecx.ty_path(ecx.path(sp, vec![ecx.ident_of("self"),
|
|
|
|
ecx.ident_of("test"),
|
|
|
|
ecx.ident_of("TestDescAndFn")]),
|
|
|
|
None);
|
|
|
|
let static_lt = ecx.lifetime(sp, token::special_idents::static_lifetime.name);
|
|
|
|
// &'static [self::test::TestDescAndFn]
|
|
|
|
let static_type = ecx.ty_rptr(sp,
|
|
|
|
ecx.ty(sp, ast::TyVec(struct_type)),
|
|
|
|
Some(static_lt),
|
|
|
|
ast::MutImmutable);
|
|
|
|
// static TESTS: $static_type = &[...];
|
|
|
|
ecx.item_static(sp,
|
|
|
|
ecx.ident_of("TESTS"),
|
|
|
|
static_type,
|
|
|
|
ast::MutImmutable,
|
|
|
|
test_descs)
|
2013-08-15 01:06:33 -05:00
|
|
|
}
|
2013-03-14 13:22:51 -05:00
|
|
|
|
2014-02-13 19:49:11 -06:00
|
|
|
fn is_test_crate(krate: &ast::Crate) -> bool {
|
2014-06-06 15:21:18 -05:00
|
|
|
match attr::find_crate_name(krate.attrs.as_slice()) {
|
|
|
|
Some(ref s) if "test" == s.get().as_slice() => true,
|
2013-07-19 06:51:37 -05:00
|
|
|
_ => 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-07-20 20:05:59 -05:00
|
|
|
debug!("building test vector from {} tests", cx.testfns.len());
|
2013-01-15 15:51:43 -06:00
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
box(GC) ast::Expr {
|
2013-09-06 21:11:55 -05:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2014-05-16 12:15:33 -05:00
|
|
|
node: ast::ExprVstore(box(GC) ast::Expr {
|
2014-04-04 05:12:18 -05:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
2014-07-20 20:05:59 -05:00
|
|
|
node: ast::ExprVec(cx.testfns.iter().map(|test| {
|
2014-04-04 05:12:18 -05:00
|
|
|
mk_test_desc_and_fn_rec(cx, test)
|
|
|
|
}).collect()),
|
|
|
|
span: DUMMY_SP,
|
|
|
|
}, ast::ExprVstoreSlice),
|
2014-01-01 00:53:22 -06:00
|
|
|
span: DUMMY_SP,
|
2013-01-15 15:51:43 -06:00
|
|
|
}
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2014-05-16 12:15:33 -05:00
|
|
|
fn mk_test_desc_and_fn_rec(cx: &TestCtxt, test: &Test) -> Gc<ast::Expr> {
|
2014-07-24 19:01:42 -05:00
|
|
|
// FIXME #15962: should be using quote_expr, but that stringifies
|
|
|
|
// __test_reexports, causing it to be reinterned, losing the
|
|
|
|
// gensym information.
|
|
|
|
|
2013-08-15 01:06:33 -05:00
|
|
|
let span = test.span;
|
|
|
|
let path = test.path.clone();
|
2014-07-24 19:01:42 -05:00
|
|
|
let ecx = &cx.ext_cx;
|
|
|
|
let self_id = ecx.ident_of("self");
|
|
|
|
let test_id = ecx.ident_of("test");
|
|
|
|
|
|
|
|
// creates self::test::$name
|
|
|
|
let test_path = |name| {
|
|
|
|
ecx.path(span, vec![self_id, test_id, ecx.ident_of(name)])
|
|
|
|
};
|
|
|
|
// creates $name: $expr
|
|
|
|
let field = |name, expr| ecx.field_imm(span, ecx.ident_of(name), expr);
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-03-08 14:36:22 -06:00
|
|
|
debug!("encoding {}", ast_util::path_name_i(path.as_slice()));
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-07-24 19:01:42 -05:00
|
|
|
// path to the #[test] function: "foo::bar::baz"
|
|
|
|
let path_string = ast_util::path_name_i(path.as_slice());
|
|
|
|
let name_expr = ecx.expr_str(span, token::intern_and_get_ident(path_string.as_slice()));
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-07-24 19:01:42 -05:00
|
|
|
// self::test::StaticTestName($name_expr)
|
|
|
|
let name_expr = ecx.expr_call(span,
|
|
|
|
ecx.expr_path(test_path("StaticTestName")),
|
|
|
|
vec![name_expr]);
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-07-24 19:01:42 -05:00
|
|
|
let ignore_expr = ecx.expr_bool(span, test.ignore);
|
|
|
|
let fail_expr = ecx.expr_bool(span, test.should_fail);
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-07-24 19:01:42 -05:00
|
|
|
// self::test::TestDesc { ... }
|
|
|
|
let desc_expr = ecx.expr_struct(
|
|
|
|
span,
|
|
|
|
test_path("TestDesc"),
|
|
|
|
vec![field("name", name_expr),
|
|
|
|
field("ignore", ignore_expr),
|
|
|
|
field("should_fail", fail_expr)]);
|
2013-08-15 01:06:33 -05:00
|
|
|
|
|
|
|
|
2014-07-24 19:01:42 -05:00
|
|
|
let mut visible_path = vec![cx.reexport_mod_ident.clone()];
|
|
|
|
visible_path.extend(path.move_iter());
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-07-24 19:01:42 -05:00
|
|
|
let fn_expr = ecx.expr_path(ecx.path_global(span, visible_path));
|
2013-08-15 01:06:33 -05:00
|
|
|
|
2014-07-24 19:01:42 -05:00
|
|
|
let variant_name = if test.bench { "StaticBenchFn" } else { "StaticTestFn" };
|
|
|
|
// self::test::$variant_name($fn_expr)
|
|
|
|
let testfn_expr = ecx.expr_call(span, ecx.expr_path(test_path(variant_name)), vec![fn_expr]);
|
|
|
|
|
|
|
|
// self::test::TestDescAndFn { ... }
|
|
|
|
ecx.expr_struct(span,
|
|
|
|
test_path("TestDescAndFn"),
|
|
|
|
vec![field("desc", desc_expr),
|
|
|
|
field("testfn", testfn_expr)])
|
2013-08-15 01:06:33 -05:00
|
|
|
}
|