2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2011-07-06 18:28:07 -05:00
|
|
|
// Code that generates a test runner to run all the tests in a crate
|
|
|
|
|
2013-05-17 17:28:44 -05:00
|
|
|
use core::prelude::*;
|
|
|
|
|
2012-09-04 13:54:36 -05:00
|
|
|
use driver::session;
|
2012-12-23 16:41:37 -06:00
|
|
|
use front::config;
|
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use core::vec;
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::ast_util::*;
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::attr;
|
2013-02-21 02:16:31 -06:00
|
|
|
use syntax::codemap::{dummy_sp, span, ExpandedFrom, CallInfo, NameAndSpan};
|
2013-01-30 11:56:33 -06:00
|
|
|
use syntax::codemap;
|
2013-05-17 06:27:17 -05:00
|
|
|
use syntax::ext::base::ExtCtxt;
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::fold;
|
|
|
|
use syntax::print::pprust;
|
|
|
|
use syntax::{ast, ast_util};
|
2013-02-13 13:46:14 -06:00
|
|
|
|
2013-03-01 14:11:07 -06:00
|
|
|
type node_id_gen = @fn() -> ast::node_id;
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2013-02-19 01:40:42 -06:00
|
|
|
struct Test {
|
2013-02-04 16:02:01 -06:00
|
|
|
span: span,
|
|
|
|
path: ~[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
|
|
|
|
|
|
|
struct TestCtxt {
|
|
|
|
sess: session::Session,
|
|
|
|
crate: @ast::crate,
|
|
|
|
path: ~[ast::ident],
|
2013-05-17 06:27:17 -05:00
|
|
|
ext_cx: @ExtCtxt,
|
2013-02-19 01:40:42 -06:00
|
|
|
testfns: ~[Test]
|
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
|
2013-01-29 17:48:50 -06:00
|
|
|
pub fn modify_for_testing(sess: session::Session,
|
2013-02-04 16:02:01 -06:00
|
|
|
crate: @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.
|
2013-01-10 12:59:58 -06:00
|
|
|
let should_test = attr::contains(crate.node.config,
|
2013-06-12 12:02:55 -05:00
|
|
|
attr::mk_word_item(@"test"));
|
2012-11-07 01:26:44 -06:00
|
|
|
|
|
|
|
if should_test {
|
2012-01-05 19:30:00 -06:00
|
|
|
generate_test_harness(sess, crate)
|
|
|
|
} else {
|
|
|
|
strip_test_functions(crate)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
fn generate_test_harness(sess: session::Session,
|
2013-02-04 16:02:01 -06:00
|
|
|
crate: @ast::crate)
|
|
|
|
-> @ast::crate {
|
|
|
|
let cx: @mut TestCtxt = @mut TestCtxt {
|
|
|
|
sess: sess,
|
|
|
|
crate: crate,
|
2013-05-17 06:27:17 -05:00
|
|
|
ext_cx: ExtCtxt::new(sess.parse_sess, copy sess.opts.cfg),
|
2013-02-04 16:02:01 -06:00
|
|
|
path: ~[],
|
|
|
|
testfns: ~[]
|
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-03-15 14:24:24 -05:00
|
|
|
let ext_cx = cx.ext_cx;
|
|
|
|
ext_cx.bt_push(ExpandedFrom(CallInfo {
|
2013-02-21 02:16:31 -06:00
|
|
|
call_site: dummy_sp(),
|
|
|
|
callee: NameAndSpan {
|
2013-06-12 12:02:55 -05:00
|
|
|
name: @"test",
|
2013-02-21 02:16:31 -06:00
|
|
|
span: None
|
|
|
|
}
|
|
|
|
}));
|
2013-02-13 13:46:14 -06:00
|
|
|
|
2013-01-08 16:00:45 -06:00
|
|
|
let precursor = @fold::AstFoldFns {
|
|
|
|
fold_crate: fold::wrap(|a,b| fold_crate(cx, a, b) ),
|
|
|
|
fold_item: |a,b| fold_item(cx, a, b),
|
|
|
|
fold_mod: |a,b| fold_mod(cx, a, b),.. *fold::default_ast_fold()};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let fold = fold::make_fold(precursor);
|
2013-02-18 00:20:36 -06:00
|
|
|
let res = @fold.fold_crate(&*crate);
|
2013-03-15 14:24:24 -05:00
|
|
|
ext_cx.bt_pop();
|
2012-08-01 19:30:05 -05:00
|
|
|
return res;
|
2011-07-06 16:29:50 -05:00
|
|
|
}
|
|
|
|
|
2012-01-05 19:30:00 -06:00
|
|
|
fn strip_test_functions(crate: @ast::crate) -> @ast::crate {
|
|
|
|
// When not compiling with --test we should not compile the
|
|
|
|
// #[test] functions
|
2012-06-30 18:19:07 -05:00
|
|
|
do config::strip_items(crate) |attrs| {
|
2013-05-19 00:07:44 -05:00
|
|
|
!attr::contains_name(attr::attr_metas(attrs), "test") &&
|
|
|
|
!attr::contains_name(attr::attr_metas(attrs), "bench")
|
2012-01-05 19:30:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
fn fold_mod(cx: @mut TestCtxt,
|
2013-02-18 00:20:36 -06:00
|
|
|
m: &ast::_mod,
|
2013-03-12 15:00:50 -05:00
|
|
|
fld: @fold::ast_fold)
|
2013-02-04 16:02:01 -06:00
|
|
|
-> ast::_mod {
|
2013-01-15 01:28:20 -06:00
|
|
|
// Remove any #[main] from the AST so it doesn't clash with
|
2012-11-07 14:19:50 -06:00
|
|
|
// the one we're going to add. Only if compiling an executable.
|
2012-06-21 18:44:10 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
fn nomain(cx: @mut TestCtxt, item: @ast::item) -> @ast::item {
|
|
|
|
if !*cx.sess.building_library {
|
2013-01-15 01:28:20 -06:00
|
|
|
@ast::item{attrs: item.attrs.filtered(|attr| {
|
2013-06-12 12:02:55 -05:00
|
|
|
"main" != attr::get_attr_name(attr)
|
2013-01-15 01:28:20 -06:00
|
|
|
}),.. copy *item}
|
|
|
|
} else { item }
|
2011-07-12 18:46:42 -05:00
|
|
|
}
|
|
|
|
|
2013-01-15 18:05:20 -06:00
|
|
|
let mod_nomain = ast::_mod {
|
|
|
|
view_items: /*bad*/copy m.view_items,
|
|
|
|
items: vec::map(m.items, |i| nomain(cx, *i)),
|
|
|
|
};
|
|
|
|
|
2013-02-18 00:20:36 -06:00
|
|
|
fold::noop_fold_mod(&mod_nomain, fld)
|
2011-07-12 18:46:42 -05:00
|
|
|
}
|
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
fn fold_crate(cx: @mut TestCtxt,
|
2013-02-18 00:20:36 -06:00
|
|
|
c: &ast::crate_,
|
2013-03-12 15:00:50 -05:00
|
|
|
fld: @fold::ast_fold)
|
2013-02-04 16:02:01 -06:00
|
|
|
-> ast::crate_ {
|
2011-07-27 07:19:39 -05:00
|
|
|
let folded = fold::noop_fold_crate(c, fld);
|
2011-07-06 18:28:07 -05:00
|
|
|
|
|
|
|
// Add a special __test module to the crate that will contain code
|
|
|
|
// generated for the test harness
|
2013-02-18 00:20:36 -06:00
|
|
|
ast::crate_ {
|
|
|
|
module: add_test_module(cx, &folded.module),
|
|
|
|
.. folded
|
|
|
|
}
|
2011-07-06 18:28:07 -05:00
|
|
|
}
|
|
|
|
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2013-04-17 11:15:37 -05:00
|
|
|
fn fold_item(cx: @mut TestCtxt, i: @ast::item, fld: @fold::ast_fold)
|
2013-02-04 16:02:01 -06:00
|
|
|
-> Option<@ast::item> {
|
2012-09-26 19:33:34 -05:00
|
|
|
cx.path.push(i.ident);
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("current path: %s",
|
2013-06-04 13:09:18 -05:00
|
|
|
ast_util::path_name_i(copy cx.path));
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2013-04-29 09:25:40 -05:00
|
|
|
if is_test_fn(cx, i) || is_bench_fn(i) {
|
2012-08-06 14:34:08 -05:00
|
|
|
match i.node {
|
2013-03-13 21:25:28 -05:00
|
|
|
ast::item_fn(_, purity, _, _, _) if purity == ast::unsafe_fn => {
|
2013-02-04 16:02:01 -06:00
|
|
|
let sess = cx.sess;
|
|
|
|
sess.span_fatal(
|
2011-10-11 19:50:54 -05:00
|
|
|
i.span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"unsafe functions cannot be used for tests");
|
2011-10-11 19:50:54 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("this is a test function");
|
2013-02-19 01:40:42 -06:00
|
|
|
let test = Test {
|
|
|
|
span: i.span,
|
|
|
|
path: /*bad*/copy cx.path,
|
|
|
|
bench: is_bench_fn(i),
|
|
|
|
ignore: is_ignored(cx, i),
|
|
|
|
should_fail: should_fail(i)
|
|
|
|
};
|
2012-06-04 10:02:30 -05:00
|
|
|
cx.testfns.push(test);
|
2013-03-16 13:11:31 -05:00
|
|
|
// debug!("have %u test/bench functions", cx.testfns.len());
|
2011-10-11 19:50:54 -05:00
|
|
|
}
|
|
|
|
}
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let res = fold::noop_fold_item(i, fld);
|
2012-09-28 00:20:47 -05:00
|
|
|
cx.path.pop();
|
2012-08-01 19:30:05 -05:00
|
|
|
return res;
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2013-04-29 09:25:40 -05:00
|
|
|
fn is_test_fn(cx: @mut TestCtxt, i: @ast::item) -> bool {
|
2013-01-24 21:19:44 -06:00
|
|
|
let has_test_attr = !attr::find_attrs_by_name(i.attrs,
|
2013-05-19 00:07:44 -05:00
|
|
|
"test").is_empty();
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn has_test_signature(i: @ast::item) -> bool {
|
2013-01-16 21:28:52 -06:00
|
|
|
match &i.node {
|
2013-03-13 21:25:28 -05:00
|
|
|
&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
|
|
|
|
};
|
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
|
|
|
);
|
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return has_test_attr && has_test_signature(i);
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
fn is_bench_fn(i: @ast::item) -> bool {
|
2013-06-08 20:38:47 -05:00
|
|
|
let has_bench_attr = !attr::find_attrs_by_name(i.attrs, "bench").is_empty();
|
2013-02-13 13:46:14 -06:00
|
|
|
|
|
|
|
fn has_test_signature(i: @ast::item) -> bool {
|
2013-02-14 23:50:03 -06:00
|
|
|
match i.node {
|
2013-03-13 21:25:28 -05:00
|
|
|
ast::item_fn(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 {
|
|
|
|
ast::ty_nil => true,
|
|
|
|
_ => 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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return has_bench_attr && has_test_signature(i);
|
|
|
|
}
|
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
fn is_ignored(cx: @mut TestCtxt, i: @ast::item) -> bool {
|
2013-01-10 01:17:57 -06:00
|
|
|
let ignoreattrs = attr::find_attrs_by_name(i.attrs, "ignore");
|
2011-10-29 19:35:45 -05:00
|
|
|
let ignoreitems = attr::attr_metas(ignoreattrs);
|
2013-01-24 21:19:44 -06:00
|
|
|
return if !ignoreitems.is_empty() {
|
2013-01-31 19:12:29 -06:00
|
|
|
let cfg_metas =
|
|
|
|
vec::concat(
|
|
|
|
vec::filter_map(ignoreitems,
|
|
|
|
|i| attr::get_meta_item_list(i)));
|
2013-01-07 16:16:52 -06:00
|
|
|
config::metas_in_cfg(/*bad*/copy cx.crate.node.config, cfg_metas)
|
2011-10-29 19:35:45 -05:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2011-07-14 13:29:54 -05:00
|
|
|
}
|
|
|
|
|
2011-11-01 12:31:23 -05:00
|
|
|
fn should_fail(i: @ast::item) -> bool {
|
2013-06-08 20:38:47 -05:00
|
|
|
!attr::find_attrs_by_name(i.attrs, "should_fail").is_empty()
|
2011-11-01 12:31:23 -05:00
|
|
|
}
|
|
|
|
|
2013-02-18 00:20:36 -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);
|
2013-01-15 18:05:20 -06:00
|
|
|
ast::_mod {
|
|
|
|
items: vec::append_one(/*bad*/copy m.items, testmod),
|
2013-02-18 00:20:36 -06:00
|
|
|
.. /*bad*/ copy *m
|
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 {
|
2013-02-13 13:46:14 -06:00
|
|
|
#[!resolve_unexported]
|
2013-05-18 14:39:17 -05:00
|
|
|
extern mod extra (name = "extra", vers = "...");
|
2013-02-13 13:46:14 -06:00
|
|
|
fn main() {
|
|
|
|
#[main];
|
2013-05-18 14:39:17 -05:00
|
|
|
extra::test::test_main_static(::os::args(), tests)
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2013-05-18 14:39:17 -05:00
|
|
|
static tests : &'static [extra::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
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
fn mk_std(cx: &TestCtxt) -> @ast::view_item {
|
2013-06-12 12:02:55 -05:00
|
|
|
let vers = ast::lit_str(@"0.7-pre");
|
2013-02-13 13:46:14 -06:00
|
|
|
let vers = nospan(vers);
|
2013-06-12 12:02:55 -05:00
|
|
|
let mi = ast::meta_name_value(@"vers", vers);
|
2013-02-13 13:46:14 -06:00
|
|
|
let mi = nospan(mi);
|
2013-05-18 14:39:17 -05:00
|
|
|
let id_std = cx.sess.ident_of("extra");
|
2013-02-13 13:46:14 -06:00
|
|
|
let vi = if is_std(cx) {
|
2013-02-17 20:45:00 -06:00
|
|
|
ast::view_item_use(
|
2013-02-13 13:46:14 -06:00
|
|
|
~[@nospan(ast::view_path_simple(id_std,
|
|
|
|
path_node(~[id_std]),
|
|
|
|
cx.sess.next_node_id()))])
|
|
|
|
} else {
|
2013-02-17 20:45:00 -06:00
|
|
|
ast::view_item_extern_mod(id_std, ~[@mi],
|
2013-02-13 13:46:14 -06:00
|
|
|
cx.sess.next_node_id())
|
|
|
|
};
|
|
|
|
let vi = ast::view_item {
|
|
|
|
node: vi,
|
|
|
|
attrs: ~[],
|
2013-03-01 12:44:43 -06:00
|
|
|
vis: ast::public,
|
2013-02-13 13:46:14 -06:00
|
|
|
span: dummy_sp()
|
|
|
|
};
|
|
|
|
return @vi;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_test_module(cx: &TestCtxt) -> @ast::item {
|
|
|
|
|
2013-05-18 14:39:17 -05:00
|
|
|
// Link to extra
|
2013-02-13 13:46:14 -06:00
|
|
|
let view_items = ~[mk_std(cx)];
|
|
|
|
|
|
|
|
// A constant vector of test descriptors.
|
|
|
|
let tests = mk_tests(cx);
|
|
|
|
|
2011-07-09 20:36:19 -05:00
|
|
|
// The synthesized main function which will call the console test runner
|
|
|
|
// with our list of tests
|
2013-02-13 13:46:14 -06:00
|
|
|
let ext_cx = cx.ext_cx;
|
|
|
|
let mainfn = (quote_item!(
|
|
|
|
pub fn main() {
|
|
|
|
#[main];
|
2013-05-24 21:35:29 -05:00
|
|
|
extra::test::test_main_static(::std::os::args(), tests);
|
2013-02-13 13:46:14 -06:00
|
|
|
}
|
|
|
|
)).get();
|
|
|
|
|
2013-01-15 18:05:20 -06:00
|
|
|
let testmod = ast::_mod {
|
|
|
|
view_items: view_items,
|
2013-02-13 13:46:14 -06:00
|
|
|
items: ~[mainfn, tests],
|
2012-12-28 15:41:14 -06:00
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
let item_ = ast::item_mod(testmod);
|
2013-02-13 13:46:14 -06:00
|
|
|
|
2012-01-05 20:16:42 -06:00
|
|
|
// This attribute tells resolve to let us call unexported functions
|
|
|
|
let resolve_unexported_attr =
|
2013-06-12 12:02:55 -05:00
|
|
|
attr::mk_attr(attr::mk_word_item(@"!resolve_unexported"));
|
2013-02-13 13:46:14 -06:00
|
|
|
|
2013-01-13 15:13:41 -06:00
|
|
|
let item = ast::item {
|
2013-05-02 03:16:07 -05:00
|
|
|
ident: cx.sess.ident_of("__test"),
|
2013-01-13 15:13:41 -06:00
|
|
|
attrs: ~[resolve_unexported_attr],
|
2013-02-13 13:46:14 -06:00
|
|
|
id: cx.sess.next_node_id(),
|
2013-01-13 15:13:41 -06:00
|
|
|
node: item_,
|
|
|
|
vis: ast::public,
|
|
|
|
span: dummy_sp(),
|
2013-02-13 13:46:14 -06:00
|
|
|
};
|
2011-07-12 17:39:18 -05:00
|
|
|
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("Synthetic test module:\n%s\n",
|
2013-02-13 13:46:14 -06:00
|
|
|
pprust::item_to_str(@copy item, cx.sess.intr()));
|
2011-07-12 17:39:18 -05:00
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return @item;
|
2011-07-06 18:28:07 -05:00
|
|
|
}
|
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
fn nospan<T:Copy>(t: T) -> codemap::spanned<T> {
|
2013-01-30 11:56:33 -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
|
|
|
|
2013-04-17 11:15:37 -05:00
|
|
|
fn path_node(ids: ~[ast::ident]) -> @ast::Path {
|
2013-03-26 19:00:35 -05:00
|
|
|
@ast::Path { span: dummy_sp(),
|
2013-02-13 13:46:14 -06:00
|
|
|
global: false,
|
|
|
|
idents: ids,
|
|
|
|
rp: None,
|
|
|
|
types: ~[] }
|
2012-12-27 19:53:04 -06:00
|
|
|
}
|
|
|
|
|
2013-04-17 11:15:37 -05:00
|
|
|
fn path_node_global(ids: ~[ast::ident]) -> @ast::Path {
|
2013-03-26 19:00:35 -05:00
|
|
|
@ast::Path { span: dummy_sp(),
|
2013-01-13 12:48:09 -06:00
|
|
|
global: true,
|
|
|
|
idents: ids,
|
|
|
|
rp: None,
|
|
|
|
types: ~[] }
|
2012-04-23 06:04:46 -05:00
|
|
|
}
|
|
|
|
|
2013-03-14 13:22:51 -05:00
|
|
|
fn mk_tests(cx: &TestCtxt) -> @ast::item {
|
|
|
|
|
|
|
|
let ext_cx = cx.ext_cx;
|
|
|
|
|
|
|
|
// The vector of test_descs for this crate
|
|
|
|
let test_descs = mk_test_descs(cx);
|
|
|
|
|
|
|
|
(quote_item!(
|
2013-05-18 14:39:17 -05:00
|
|
|
pub static tests : &'static [self::extra::test::TestDescAndFn] =
|
2013-03-14 13:22:51 -05:00
|
|
|
$test_descs
|
|
|
|
;
|
|
|
|
)).get()
|
|
|
|
}
|
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
fn is_std(cx: &TestCtxt) -> bool {
|
2012-01-17 18:17:47 -06:00
|
|
|
let is_std = {
|
2013-01-11 17:07:48 -06:00
|
|
|
let items = attr::find_linkage_metas(cx.crate.node.attrs);
|
2013-05-19 00:07:44 -05:00
|
|
|
match attr::last_meta_item_value_str_by_name(items, "name") {
|
2013-06-12 12:02:55 -05:00
|
|
|
Some(s) if "extra" == s => true,
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => false
|
2012-01-17 18:17:47 -06:00
|
|
|
}
|
|
|
|
};
|
2012-12-28 15:41:14 -06:00
|
|
|
return is_std;
|
|
|
|
}
|
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
fn mk_test_descs(cx: &TestCtxt) -> @ast::expr {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("building test vector from %u tests", cx.testfns.len());
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut descs = ~[];
|
2013-06-21 07:29:53 -05:00
|
|
|
for cx.testfns.iter().advance |test| {
|
2013-04-17 11:15:37 -05:00
|
|
|
descs.push(mk_test_desc_and_fn_rec(cx, test));
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
let sess = cx.sess;
|
2013-01-15 15:51:43 -06:00
|
|
|
let inner_expr = @ast::expr {
|
2013-02-04 16:02:01 -06:00
|
|
|
id: sess.next_node_id(),
|
2013-01-15 15:51:43 -06:00
|
|
|
node: ast::expr_vec(descs, ast::m_imm),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
|
|
|
|
|
|
|
@ast::expr {
|
2013-02-04 16:02:01 -06:00
|
|
|
id: sess.next_node_id(),
|
2013-02-13 13:46:14 -06:00
|
|
|
node: ast::expr_vstore(inner_expr, ast::expr_vstore_slice),
|
2013-01-15 15:51:43 -06:00
|
|
|
span: dummy_sp(),
|
|
|
|
}
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2013-04-17 11:15:37 -05:00
|
|
|
fn mk_test_desc_and_fn_rec(cx: &TestCtxt, test: &Test) -> @ast::expr {
|
2011-10-11 19:36:29 -05:00
|
|
|
let span = test.span;
|
2013-01-07 16:16:52 -06:00
|
|
|
let path = /*bad*/copy test.path;
|
2011-07-14 13:29:54 -05:00
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
let ext_cx = cx.ext_cx;
|
|
|
|
|
2013-06-04 13:09:18 -05:00
|
|
|
debug!("encoding %s", ast_util::path_name_i(path));
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let name_lit: ast::lit =
|
2013-06-12 12:02:55 -05:00
|
|
|
nospan(ast::lit_str(ast_util::path_name_i(path).to_managed()));
|
2013-01-08 16:00:45 -06:00
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
let name_expr = @ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_lit(@name_lit),
|
|
|
|
span: span
|
2013-01-15 15:51:43 -06:00
|
|
|
};
|
|
|
|
|
2013-01-31 19:12:29 -06:00
|
|
|
let fn_path = path_node_global(path);
|
2012-06-21 18:44:10 -05:00
|
|
|
|
2013-01-31 19:12:29 -06:00
|
|
|
let fn_expr = @ast::expr {
|
2013-02-13 13:46:14 -06:00
|
|
|
id: cx.sess.next_node_id(),
|
2013-01-31 19:12:29 -06:00
|
|
|
node: ast::expr_path(fn_path),
|
2013-01-15 15:51:43 -06:00
|
|
|
span: span,
|
2011-10-13 18:42:43 -05:00
|
|
|
};
|
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
let t_expr = if test.bench {
|
2013-05-18 14:39:17 -05:00
|
|
|
quote_expr!( self::extra::test::StaticBenchFn($fn_expr) )
|
2013-02-13 13:46:14 -06:00
|
|
|
} else {
|
2013-05-18 14:39:17 -05:00
|
|
|
quote_expr!( self::extra::test::StaticTestFn($fn_expr) )
|
2013-01-15 15:51:43 -06:00
|
|
|
};
|
2011-07-08 23:45:50 -05:00
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
let ignore_expr = if test.ignore {
|
|
|
|
quote_expr!( true )
|
|
|
|
} else {
|
|
|
|
quote_expr!( false )
|
2013-01-15 15:51:43 -06:00
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
let fail_expr = if test.should_fail {
|
|
|
|
quote_expr!( true )
|
|
|
|
} else {
|
|
|
|
quote_expr!( false )
|
2013-01-15 15:51:43 -06:00
|
|
|
};
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2013-02-13 13:46:14 -06:00
|
|
|
let e = quote_expr!(
|
2013-05-18 14:39:17 -05:00
|
|
|
self::extra::test::TestDescAndFn {
|
|
|
|
desc: self::extra::test::TestDesc {
|
|
|
|
name: self::extra::test::StaticTestName($name_expr),
|
2013-02-13 13:46:14 -06:00
|
|
|
ignore: $ignore_expr,
|
|
|
|
should_fail: $fail_expr
|
|
|
|
},
|
|
|
|
testfn: $t_expr,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
e
|
2011-07-08 23:45:50 -05:00
|
|
|
}
|