2011-07-06 23:28:07 +00:00
|
|
|
// Code that generates a test runner to run all the tests in a crate
|
|
|
|
|
|
|
|
import std::option;
|
2011-07-09 03:52:54 +00:00
|
|
|
import std::ivec;
|
2011-07-06 21:29:50 +00:00
|
|
|
import syntax::ast;
|
|
|
|
import syntax::fold;
|
2011-07-12 22:39:18 +00:00
|
|
|
import syntax::print::pprust;
|
2011-07-09 04:45:50 +00:00
|
|
|
import front::attr;
|
2011-07-06 21:29:50 +00:00
|
|
|
|
|
|
|
export modify_for_testing;
|
|
|
|
|
2011-07-06 23:28:07 +00:00
|
|
|
type node_id_gen = @fn() -> ast::node_id;
|
|
|
|
|
2011-07-14 18:29:54 +00:00
|
|
|
type test = rec(ast::ident[] path,
|
|
|
|
bool ignore);
|
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
type test_ctxt = @rec(node_id_gen next_node_id,
|
|
|
|
mutable ast::ident[] path,
|
2011-07-14 18:29:54 +00:00
|
|
|
mutable test[] testfns);
|
2011-07-06 21:29:50 +00:00
|
|
|
|
|
|
|
// Traverse the crate, collecting all the test functions, eliding any
|
|
|
|
// existing main functions, and synthesizing a main test harness
|
2011-07-06 23:28:07 +00:00
|
|
|
fn modify_for_testing(@ast::crate crate) -> @ast::crate {
|
|
|
|
|
|
|
|
// FIXME: This hackasaurus assumes that 200000 is a safe number to start
|
|
|
|
// generating node_ids at (which is totally not the case). pauls is going
|
|
|
|
// to land a patch that puts parse_sess into session, which will give us
|
|
|
|
// access to the real next node_id.
|
|
|
|
auto next_node_id = @mutable 200000;
|
|
|
|
auto next_node_id_fn = @bind fn(@mutable ast::node_id next_node_id)
|
|
|
|
-> ast::node_id {
|
|
|
|
auto this_node_id = *next_node_id;
|
|
|
|
*next_node_id = next_node_id + 1;
|
|
|
|
ret this_node_id;
|
|
|
|
} (next_node_id);
|
2011-07-06 21:29:50 +00:00
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
let test_ctxt cx = @rec(next_node_id = next_node_id_fn,
|
|
|
|
mutable path = ~[],
|
|
|
|
mutable testfns = ~[]);
|
2011-07-06 21:29:50 +00:00
|
|
|
|
2011-07-09 03:52:54 +00:00
|
|
|
auto precursor = rec(fold_crate = bind fold_crate(cx, _, _),
|
2011-07-12 23:46:42 +00:00
|
|
|
fold_item = bind fold_item(cx, _, _),
|
|
|
|
fold_mod = bind fold_mod(cx, _, _)
|
2011-07-06 23:28:07 +00:00
|
|
|
with *fold::default_ast_fold());
|
2011-07-06 21:29:50 +00:00
|
|
|
|
2011-07-06 23:28:07 +00:00
|
|
|
auto fold = fold::make_fold(precursor);
|
|
|
|
auto res = @fold.fold_crate(*crate);
|
|
|
|
// FIXME: This is necessary to break a circular reference
|
|
|
|
fold::dummy_out(fold);
|
|
|
|
ret res;
|
2011-07-06 21:29:50 +00:00
|
|
|
}
|
|
|
|
|
2011-07-12 23:46:42 +00:00
|
|
|
fn fold_mod(&test_ctxt cx, &ast::_mod m,
|
|
|
|
fold::ast_fold fld) -> ast::_mod {
|
|
|
|
|
|
|
|
// Remove any defined main function from the AST so it doesn't clash with
|
|
|
|
// the one we're going to add. FIXME: This is sloppy. Instead we should
|
|
|
|
// have some mechanism to indicate to the translation pass which function
|
|
|
|
// we want to be main.
|
|
|
|
fn nomain(&@ast::item item) -> option::t[@ast::item] {
|
|
|
|
alt (item.node) {
|
|
|
|
ast::item_fn(?f, _) {
|
|
|
|
if (item.ident == "main") { option::none }
|
|
|
|
else { option::some(item) }
|
|
|
|
}
|
|
|
|
_ { option::some(item) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mod_nomain = rec(view_items=m.view_items,
|
|
|
|
items=ivec::filter_map(nomain, m.items));
|
|
|
|
ret fold::noop_fold_mod(mod_nomain, fld);
|
|
|
|
}
|
|
|
|
|
2011-07-06 21:29:50 +00:00
|
|
|
fn fold_crate(&test_ctxt cx, &ast::crate_ c,
|
|
|
|
fold::ast_fold fld) -> ast::crate_ {
|
2011-07-06 23:28:07 +00:00
|
|
|
auto folded = fold::noop_fold_crate(c, fld);
|
|
|
|
|
|
|
|
// Add a special __test module to the crate that will contain code
|
|
|
|
// generated for the test harness
|
|
|
|
ret rec(module = add_test_module(cx, folded.module)
|
|
|
|
with folded);
|
|
|
|
}
|
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
|
|
|
|
fn fold_item(&test_ctxt cx, &@ast::item i,
|
|
|
|
fold::ast_fold fld) -> @ast::item {
|
|
|
|
|
|
|
|
cx.path += ~[i.ident];
|
|
|
|
log #fmt("current path: %s", ast::path_name_i(cx.path));
|
|
|
|
|
|
|
|
if (is_test_fn(i)) {
|
|
|
|
log "this is a test function";
|
2011-07-14 18:29:54 +00:00
|
|
|
auto test = rec(path = cx.path,
|
|
|
|
ignore = is_ignored(i));
|
|
|
|
cx.testfns += ~[test];
|
2011-07-10 01:36:19 +00:00
|
|
|
log #fmt("have %u test functions", ivec::len(cx.testfns));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto res = fold::noop_fold_item(i, fld);
|
|
|
|
ivec::pop(cx.path);
|
|
|
|
ret res;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_test_fn(&@ast::item i) -> bool {
|
2011-07-13 22:44:09 +00:00
|
|
|
auto has_test_attr =
|
2011-07-10 01:36:19 +00:00
|
|
|
ivec::len(attr::find_attrs_by_name(i.attrs, "test")) > 0u;
|
|
|
|
|
|
|
|
fn has_test_signature(&@ast::item i) -> bool {
|
|
|
|
alt (i.node) {
|
|
|
|
case (ast::item_fn(?f, ?tps)) {
|
|
|
|
auto input_cnt = ivec::len(f.decl.inputs);
|
|
|
|
auto no_output = f.decl.output.node == ast::ty_nil;
|
|
|
|
auto tparm_cnt = ivec::len(tps);
|
|
|
|
input_cnt == 0u && no_output && tparm_cnt == 0u
|
|
|
|
}
|
|
|
|
case (_) { false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret has_test_attr && has_test_signature(i);
|
|
|
|
}
|
|
|
|
|
2011-07-14 18:29:54 +00:00
|
|
|
fn is_ignored(&@ast::item i) -> bool {
|
|
|
|
attr::contains_name(attr::attr_metas(i.attrs), "ignore")
|
|
|
|
}
|
|
|
|
|
2011-07-06 23:28:07 +00:00
|
|
|
fn add_test_module(&test_ctxt cx, &ast::_mod m) -> ast::_mod {
|
|
|
|
auto testmod = mk_test_module(cx);
|
2011-07-07 22:31:54 +00:00
|
|
|
ret rec(items=m.items + ~[testmod] with m);
|
2011-07-06 21:29:50 +00:00
|
|
|
}
|
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
We're going to be building a module that looks more or less like:
|
|
|
|
|
|
|
|
mod __test {
|
|
|
|
|
|
|
|
fn main(vec[str] args) -> int {
|
|
|
|
std::test::test_main(args, tests())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tests() -> std::test::test_desc[] {
|
|
|
|
... the list of tests in the crate ...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-07-06 23:28:07 +00:00
|
|
|
fn mk_test_module(&test_ctxt cx) -> @ast::item {
|
2011-07-10 01:36:19 +00:00
|
|
|
// A function that generates a vector of test descriptors to feed to the
|
|
|
|
// test runner
|
|
|
|
auto testsfn = mk_tests(cx);
|
|
|
|
// The synthesized main function which will call the console test runner
|
|
|
|
// with our list of tests
|
2011-07-06 23:28:07 +00:00
|
|
|
auto mainfn = mk_main(cx);
|
2011-07-10 01:36:19 +00:00
|
|
|
let ast::_mod testmod = rec(view_items=~[],
|
|
|
|
items=~[mainfn, testsfn]);
|
2011-07-06 23:28:07 +00:00
|
|
|
auto item_ = ast::item_mod(testmod);
|
|
|
|
let ast::item item = rec(ident = "__test",
|
2011-07-12 22:39:18 +00:00
|
|
|
attrs = ~[],
|
|
|
|
id = cx.next_node_id(),
|
|
|
|
node = item_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
|
|
|
|
log #fmt("Synthetic test module:\n%s\n", pprust::item_to_str(@item));
|
|
|
|
|
2011-07-06 23:28:07 +00:00
|
|
|
ret @item;
|
|
|
|
}
|
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
fn nospan[T](&T t) -> ast::spanned[T] {
|
|
|
|
ret rec(node=t,
|
|
|
|
span=rec(lo=0u,hi=0u));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_tests(&test_ctxt cx) -> @ast::item {
|
2011-07-12 22:50:31 +00:00
|
|
|
auto ret_ty = mk_test_desc_ivec_ty(cx);
|
2011-07-10 01:36:19 +00:00
|
|
|
|
|
|
|
let ast::fn_decl decl = rec(inputs = ~[],
|
|
|
|
output = ret_ty,
|
|
|
|
purity = ast::impure_fn,
|
|
|
|
cf = ast::return,
|
|
|
|
constraints = ~[]);
|
|
|
|
auto proto = ast::proto_fn;
|
2011-07-13 22:44:09 +00:00
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
// The vector of test_descs for this crate
|
|
|
|
auto test_descs = mk_test_desc_vec(cx);
|
|
|
|
|
2011-07-25 21:16:12 +00:00
|
|
|
let ast::blk_ body_= rec(stmts = ~[],
|
2011-07-10 01:36:19 +00:00
|
|
|
expr = option::some(test_descs),
|
|
|
|
id = cx.next_node_id());
|
|
|
|
auto body = nospan(body_);
|
|
|
|
|
|
|
|
auto fn_ = rec(decl = decl,
|
|
|
|
proto = proto,
|
|
|
|
body = body);
|
|
|
|
|
|
|
|
auto item_ = ast::item_fn(fn_, ~[]);
|
|
|
|
let ast::item item = rec(ident = "tests",
|
|
|
|
attrs = ~[],
|
|
|
|
id = cx.next_node_id(),
|
|
|
|
node = item_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
ret @item;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn empty_fn_ty() -> ast::ty {
|
|
|
|
auto proto = ast::proto_fn;
|
|
|
|
auto input_ty = ~[];
|
|
|
|
auto ret_ty = @nospan(ast::ty_nil);
|
|
|
|
auto cf = ast::return;
|
|
|
|
auto constrs = ~[];
|
|
|
|
ret nospan(ast::ty_fn(proto, input_ty, ret_ty, cf, constrs));
|
|
|
|
}
|
|
|
|
|
2011-07-12 22:50:31 +00:00
|
|
|
// The ast::ty of std::test::test_desc[]
|
|
|
|
fn mk_test_desc_ivec_ty(&test_ctxt cx) -> @ast::ty {
|
|
|
|
let ast::path test_desc_ty_path = nospan(rec(global = false,
|
|
|
|
idents = ~["std",
|
|
|
|
"test",
|
|
|
|
"test_desc"],
|
|
|
|
types = ~[]));
|
2011-07-10 01:36:19 +00:00
|
|
|
|
2011-07-12 22:50:31 +00:00
|
|
|
let ast::ty test_desc_ty = nospan(ast::ty_path(test_desc_ty_path,
|
|
|
|
cx.next_node_id()));
|
2011-07-10 01:36:19 +00:00
|
|
|
|
|
|
|
let ast::mt ivec_mt = rec(ty = @test_desc_ty,
|
|
|
|
mut = ast::imm);
|
|
|
|
|
|
|
|
ret @nospan(ast::ty_ivec(ivec_mt));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_test_desc_vec(&test_ctxt cx) -> @ast::expr {
|
|
|
|
log #fmt("building test vector from %u tests",
|
|
|
|
ivec::len(cx.testfns));
|
|
|
|
auto descs = ~[];
|
2011-07-14 18:29:54 +00:00
|
|
|
for (test test in cx.testfns) {
|
|
|
|
auto test_ = test; // Satisfy alias analysis
|
|
|
|
descs += ~[mk_test_desc_rec(cx, test_)];
|
2011-07-10 01:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret @rec(id = cx.next_node_id(),
|
|
|
|
node = ast::expr_vec(descs, ast::imm, ast::sk_unique),
|
|
|
|
span = rec(lo=0u,hi=0u));
|
|
|
|
}
|
|
|
|
|
2011-07-14 18:29:54 +00:00
|
|
|
fn mk_test_desc_rec(&test_ctxt cx, test test) -> @ast::expr {
|
|
|
|
auto path = test.path;
|
|
|
|
|
|
|
|
log #fmt("encoding %s", ast::path_name_i(path));
|
2011-07-10 01:36:19 +00:00
|
|
|
|
|
|
|
let ast::lit name_lit = nospan(ast::lit_str(ast::path_name_i(path),
|
|
|
|
ast::sk_rc));
|
|
|
|
let ast::expr name_expr = rec(id = cx.next_node_id(),
|
|
|
|
node = ast::expr_lit(@name_lit),
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
|
|
|
|
let ast::field name_field = nospan(rec(mut = ast::imm,
|
|
|
|
ident = "name",
|
|
|
|
expr = @name_expr));
|
|
|
|
|
2011-07-11 23:01:46 +00:00
|
|
|
let ast::path fn_path = nospan(rec(global = false,
|
|
|
|
idents = path,
|
2011-07-10 01:36:19 +00:00
|
|
|
types = ~[]));
|
|
|
|
|
|
|
|
let ast::expr fn_expr = rec(id = cx.next_node_id(),
|
|
|
|
node = ast::expr_path(fn_path),
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
|
|
|
|
let ast::field fn_field = nospan(rec(mut = ast::imm,
|
|
|
|
ident = "fn",
|
|
|
|
expr = @fn_expr));
|
|
|
|
|
2011-07-14 18:29:54 +00:00
|
|
|
let ast::lit ignore_lit = nospan(ast::lit_bool(test.ignore));
|
|
|
|
|
|
|
|
let ast::expr ignore_expr = rec(id = cx.next_node_id(),
|
|
|
|
node = ast::expr_lit(@ignore_lit),
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
|
|
|
|
let ast::field ignore_field = nospan(rec(mut = ast::imm,
|
|
|
|
ident = "ignore",
|
|
|
|
expr = @ignore_expr));
|
|
|
|
|
|
|
|
let ast::expr_ desc_rec_ = ast::expr_rec(~[name_field,
|
|
|
|
fn_field,
|
|
|
|
ignore_field],
|
2011-07-10 01:36:19 +00:00
|
|
|
option::none);
|
|
|
|
let ast::expr desc_rec = rec(id = cx.next_node_id(),
|
|
|
|
node = desc_rec_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
ret @desc_rec;
|
|
|
|
}
|
|
|
|
|
2011-07-06 23:28:07 +00:00
|
|
|
fn mk_main(&test_ctxt cx) -> @ast::item {
|
|
|
|
|
2011-07-11 22:57:11 +00:00
|
|
|
let ast::mt args_mt = rec(ty = @nospan(ast::ty_str),
|
|
|
|
mut = ast::imm);
|
|
|
|
let ast::ty args_ty = nospan(ast::ty_vec(args_mt));
|
|
|
|
|
|
|
|
let ast::arg args_arg = rec(mode = ast::val,
|
|
|
|
ty = @args_ty,
|
|
|
|
ident = "args",
|
|
|
|
id = cx.next_node_id());
|
|
|
|
|
2011-07-14 17:51:38 +00:00
|
|
|
auto ret_ty = nospan(ast::ty_nil);
|
2011-07-11 22:57:11 +00:00
|
|
|
|
|
|
|
let ast::fn_decl decl = rec(inputs = ~[args_arg],
|
|
|
|
output = @ret_ty,
|
2011-07-06 23:28:07 +00:00
|
|
|
purity = ast::impure_fn,
|
|
|
|
cf = ast::return,
|
|
|
|
constraints = ~[]);
|
|
|
|
auto proto = ast::proto_fn;
|
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
auto test_main_call_expr = mk_test_main_call(cx);
|
|
|
|
|
2011-07-25 21:16:12 +00:00
|
|
|
let ast::blk_ body_ = rec(stmts = ~[],
|
2011-07-10 01:36:19 +00:00
|
|
|
expr = option::some(test_main_call_expr),
|
|
|
|
id = cx.next_node_id());
|
2011-07-06 23:28:07 +00:00
|
|
|
auto body = rec(node = body_, span = rec(lo=0u, hi=0u));
|
|
|
|
|
|
|
|
auto fn_ = rec(decl = decl,
|
|
|
|
proto = proto,
|
|
|
|
body = body);
|
|
|
|
|
2011-07-07 02:00:00 +00:00
|
|
|
auto item_ = ast::item_fn(fn_, ~[]);
|
2011-07-06 23:28:07 +00:00
|
|
|
let ast::item item = rec(ident = "main",
|
|
|
|
attrs = ~[],
|
|
|
|
id = cx.next_node_id(),
|
|
|
|
node = item_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
ret @item;
|
2011-07-06 21:29:50 +00:00
|
|
|
}
|
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
fn mk_test_main_call(&test_ctxt cx) -> @ast::expr {
|
2011-07-09 03:52:54 +00:00
|
|
|
|
2011-07-11 22:57:11 +00:00
|
|
|
// Get the args passed to main so we can pass the to test_main
|
|
|
|
let ast::path args_path = nospan(rec(global = false,
|
|
|
|
idents = ~["args"],
|
|
|
|
types = ~[]));
|
|
|
|
|
|
|
|
let ast::expr_ args_path_expr_ = ast::expr_path(args_path);
|
|
|
|
|
|
|
|
let ast::expr args_path_expr = rec(id = cx.next_node_id(),
|
|
|
|
node = args_path_expr_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
|
|
|
|
// Call __test::test to generate the vector of test_descs
|
2011-07-11 23:01:46 +00:00
|
|
|
let ast::path test_path = nospan(rec(global = false,
|
|
|
|
idents = ~["tests"],
|
2011-07-10 01:36:19 +00:00
|
|
|
types = ~[]));
|
2011-07-09 04:45:50 +00:00
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
let ast::expr_ test_path_expr_ = ast::expr_path(test_path);
|
2011-07-09 04:45:50 +00:00
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
let ast::expr test_path_expr = rec(id = cx.next_node_id(),
|
|
|
|
node = test_path_expr_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
2011-07-09 03:52:54 +00:00
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
let ast::expr_ test_call_expr_ = ast::expr_call(@test_path_expr, ~[]);
|
2011-07-09 04:45:50 +00:00
|
|
|
|
2011-07-10 01:36:19 +00:00
|
|
|
let ast::expr test_call_expr = rec(id = cx.next_node_id(),
|
|
|
|
node = test_call_expr_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
2011-07-09 04:45:50 +00:00
|
|
|
|
2011-07-11 22:57:11 +00:00
|
|
|
// Call std::test::test_main
|
2011-07-11 23:01:46 +00:00
|
|
|
let ast::path test_main_path = nospan(rec(global = false,
|
|
|
|
idents = ~["std",
|
2011-07-10 01:36:19 +00:00
|
|
|
"test",
|
|
|
|
"test_main"],
|
|
|
|
types = ~[]));
|
|
|
|
|
|
|
|
let ast::expr_ test_main_path_expr_
|
|
|
|
= ast::expr_path(test_main_path);
|
|
|
|
|
|
|
|
let ast::expr test_main_path_expr = rec(id = cx.next_node_id(),
|
|
|
|
node = test_main_path_expr_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
|
2011-07-13 22:44:09 +00:00
|
|
|
let ast::expr_ test_main_call_expr_
|
2011-07-11 22:57:11 +00:00
|
|
|
= ast::expr_call(@test_main_path_expr, ~[@args_path_expr,
|
|
|
|
@test_call_expr]);
|
2011-07-10 01:36:19 +00:00
|
|
|
|
|
|
|
let ast::expr test_main_call_expr = rec(id = cx.next_node_id(),
|
|
|
|
node = test_main_call_expr_,
|
|
|
|
span = rec(lo=0u, hi=0u));
|
|
|
|
|
|
|
|
ret @test_main_call_expr;
|
2011-07-09 04:45:50 +00:00
|
|
|
}
|
|
|
|
|
2011-07-06 21:29:50 +00:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|