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-01-08 21:37:25 -06:00
|
|
|
use core::prelude::*;
|
2013-01-07 16:16:52 -06:00
|
|
|
|
2012-09-04 13:54:36 -05:00
|
|
|
use driver::session;
|
2012-12-23 16:41:37 -06:00
|
|
|
use front::config;
|
2012-10-15 16:56:42 -05:00
|
|
|
use session::Session;
|
2012-12-23 16:41:37 -06:00
|
|
|
|
|
|
|
use core::dvec::DVec;
|
|
|
|
use core::option;
|
|
|
|
use core::vec;
|
|
|
|
use syntax::ast_util::*;
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::attr;
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::codemap::span;
|
|
|
|
use syntax::fold;
|
|
|
|
use syntax::print::pprust;
|
|
|
|
use syntax::{ast, ast_util};
|
2013-01-11 03:08:01 -06:00
|
|
|
use syntax::attr::attrs_contains_name;
|
2011-07-06 16:29:50 -05:00
|
|
|
|
2011-10-18 17:07:40 -05:00
|
|
|
type node_id_gen = fn@() -> ast::node_id;
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
type test = {span: span, path: ~[ast::ident],
|
2012-06-25 22:00:46 -05:00
|
|
|
ignore: bool, should_fail: bool};
|
2011-07-14 13:29:54 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
type test_ctxt =
|
2012-10-15 16:56:42 -05:00
|
|
|
@{sess: session::Session,
|
2011-10-29 19:35:45 -05:00
|
|
|
crate: @ast::crate,
|
2012-06-29 18:26:56 -05:00
|
|
|
mut path: ~[ast::ident],
|
2012-08-14 18:54:13 -05:00
|
|
|
testfns: DVec<test>};
|
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,
|
|
|
|
crate: @ast::crate) -> @ast::crate {
|
2011-07-06 18:28:07 -05:00
|
|
|
|
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,
|
2012-11-07 01:26:44 -06:00
|
|
|
attr::mk_word_item(~"test"));
|
|
|
|
|
|
|
|
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,
|
2012-01-05 19:30:00 -06:00
|
|
|
crate: @ast::crate) -> @ast::crate {
|
2011-07-27 07:19:39 -05:00
|
|
|
let cx: test_ctxt =
|
2011-10-11 19:50:54 -05:00
|
|
|
@{sess: sess,
|
2011-10-29 19:35:45 -05:00
|
|
|
crate: crate,
|
2012-06-29 18:26:56 -05:00
|
|
|
mut path: ~[],
|
2012-08-27 16:22:25 -05:00
|
|
|
testfns: DVec()};
|
2011-07-27 07:19:39 -05: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);
|
|
|
|
let res = @fold.fold_crate(*crate);
|
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| {
|
2012-07-14 00:57:48 -05:00
|
|
|
!attr::contains_name(attr::attr_metas(attrs), ~"test")
|
2012-01-05 19:30:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-18 18:18:02 -05:00
|
|
|
fn fold_mod(cx: test_ctxt, m: ast::_mod, fld: fold::ast_fold) -> ast::_mod {
|
2011-07-12 18:46:42 -05:00
|
|
|
|
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-01-15 01:28:20 -06:00
|
|
|
fn nomain(cx: test_ctxt, item: @ast::item) -> @ast::item {
|
|
|
|
if !cx.sess.building_library {
|
|
|
|
@ast::item{attrs: item.attrs.filtered(|attr| {
|
|
|
|
attr::get_attr_name(*attr) != ~"main"
|
|
|
|
}),.. 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)),
|
|
|
|
};
|
|
|
|
|
|
|
|
fold::noop_fold_mod(mod_nomain, fld)
|
2011-07-12 18:46:42 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn fold_crate(cx: test_ctxt, c: ast::crate_, fld: fold::ast_fold) ->
|
2011-07-27 07:19:39 -05:00
|
|
|
ast::crate_ {
|
|
|
|
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-01-14 21:06:59 -06:00
|
|
|
ast::crate_ { module: add_test_module(cx, /*bad*/copy folded.module),
|
|
|
|
.. folded }
|
2011-07-06 18:28:07 -05:00
|
|
|
}
|
|
|
|
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-10-07 02:36:53 -05:00
|
|
|
fn fold_item(cx: test_ctxt, &&i: @ast::item, fld: fold::ast_fold) ->
|
2012-08-20 14:23:37 -05:00
|
|
|
Option<@ast::item> {
|
2011-07-09 20:36:19 -05:00
|
|
|
|
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",
|
|
|
|
ast_util::path_name_i(cx.path, cx.sess.parse_sess.interner));
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
if is_test_fn(i) {
|
2012-08-06 14:34:08 -05:00
|
|
|
match i.node {
|
2012-08-25 20:38:21 -05:00
|
|
|
ast::item_fn(_, purity, _, _) if purity == ast::unsafe_fn => {
|
2011-10-11 19:50:54 -05:00
|
|
|
cx.sess.span_fatal(
|
|
|
|
i.span,
|
2012-07-14 00:57:48 -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");
|
2011-10-29 19:35:45 -05:00
|
|
|
let test = {span: i.span,
|
2013-01-07 16:16:52 -06:00
|
|
|
path: /*bad*/copy cx.path, ignore: is_ignored(cx, i),
|
2011-11-01 12:31:23 -05:00
|
|
|
should_fail: should_fail(i)};
|
2012-06-04 10:02:30 -05:00
|
|
|
cx.testfns.push(test);
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("have %u test 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
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn is_test_fn(i: @ast::item) -> bool {
|
2013-01-24 21:19:44 -06:00
|
|
|
let has_test_attr = !attr::find_attrs_by_name(i.attrs,
|
|
|
|
~"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 {
|
|
|
|
&ast::item_fn(ref decl, _, ref tps, _) => {
|
2012-08-27 18:26:35 -05:00
|
|
|
let no_output = match decl.output.node {
|
|
|
|
ast::ty_nil => true,
|
|
|
|
_ => false
|
|
|
|
};
|
2013-01-16 21:28:52 -06:00
|
|
|
decl.inputs.is_empty() && no_output && tps.is_empty()
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return has_test_attr && has_test_signature(i);
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-10-29 19:35:45 -05:00
|
|
|
fn is_ignored(cx: test_ctxt, 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);
|
2011-12-16 08:27:50 -06:00
|
|
|
let cfg_metas = vec::concat(vec::filter_map(ignoreitems,
|
2012-09-28 00:20:47 -05:00
|
|
|
|i| attr::get_meta_item_list(*i)));
|
2013-01-24 21:19:44 -06:00
|
|
|
return if !ignoreitems.is_empty() {
|
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 {
|
2012-07-14 00:57:48 -05:00
|
|
|
vec::len(attr::find_attrs_by_name(i.attrs, ~"should_fail")) > 0u
|
2011-11-01 12:31:23 -05:00
|
|
|
}
|
|
|
|
|
2013-01-07 16:16:52 -06:00
|
|
|
fn add_test_module(cx: test_ctxt, +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),
|
|
|
|
.. m
|
|
|
|
}
|
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 {
|
2012-06-29 18:26:56 -05:00
|
|
|
fn main(args: ~[str]) -> int {
|
2011-07-09 20:36:19 -05:00
|
|
|
std::test::test_main(args, tests())
|
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn tests() -> ~[std::test::test_desc] {
|
2011-07-09 20:36:19 -05:00
|
|
|
... the list of tests in the crate ...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn mk_test_module(cx: test_ctxt) -> @ast::item {
|
2012-12-28 15:41:14 -06:00
|
|
|
// Link to std
|
|
|
|
let std = mk_std(cx);
|
|
|
|
let view_items = if is_std(cx) { ~[] } else { ~[std] };
|
2011-07-09 20:36:19 -05:00
|
|
|
// A function that generates a vector of test descriptors to feed to the
|
|
|
|
// test runner
|
2011-07-27 07:19:39 -05:00
|
|
|
let testsfn = 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
|
2011-07-27 07:19:39 -05:00
|
|
|
let mainfn = mk_main(cx);
|
2013-01-15 18:05:20 -06:00
|
|
|
let testmod = ast::_mod {
|
|
|
|
view_items: view_items,
|
|
|
|
items: ~[mainfn, testsfn],
|
2012-12-28 15:41:14 -06:00
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
let item_ = ast::item_mod(testmod);
|
2012-01-05 20:16:42 -06:00
|
|
|
// This attribute tells resolve to let us call unexported functions
|
|
|
|
let resolve_unexported_attr =
|
2012-07-18 18:18:02 -05:00
|
|
|
attr::mk_attr(attr::mk_word_item(~"!resolve_unexported"));
|
2013-01-13 15:13:41 -06:00
|
|
|
let item = ast::item {
|
|
|
|
ident: cx.sess.ident_of(~"__test"),
|
|
|
|
attrs: ~[resolve_unexported_attr],
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: item_,
|
|
|
|
vis: ast::public,
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2011-07-12 17:39:18 -05:00
|
|
|
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("Synthetic test module:\n%s\n",
|
2013-01-07 16:16:52 -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
|
|
|
}
|
|
|
|
|
2012-09-07 16:52:28 -05:00
|
|
|
fn nospan<T: Copy>(t: T) -> ast::spanned<T> {
|
2012-12-27 13:36:00 -06:00
|
|
|
ast::spanned { node: t, span: dummy_sp() }
|
2011-11-18 05:39:20 -06:00
|
|
|
}
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2013-01-07 16:16:52 -06:00
|
|
|
fn path_node(+ids: ~[ast::ident]) -> @ast::path {
|
2013-01-13 12:48:09 -06:00
|
|
|
@ast::path { span: dummy_sp(),
|
|
|
|
global: false,
|
|
|
|
idents: ids,
|
|
|
|
rp: None,
|
|
|
|
types: ~[] }
|
2012-12-27 19:53:04 -06:00
|
|
|
}
|
|
|
|
|
2013-01-07 16:16:52 -06:00
|
|
|
fn path_node_global(+ids: ~[ast::ident]) -> @ast::path {
|
2013-01-13 12:48:09 -06:00
|
|
|
@ast::path { span: dummy_sp(),
|
|
|
|
global: true,
|
|
|
|
idents: ids,
|
|
|
|
rp: None,
|
|
|
|
types: ~[] }
|
2012-04-23 06:04:46 -05:00
|
|
|
}
|
|
|
|
|
2012-12-28 15:41:14 -06:00
|
|
|
fn mk_std(cx: test_ctxt) -> @ast::view_item {
|
|
|
|
let vers = ast::lit_str(@~"0.6");
|
|
|
|
let vers = nospan(vers);
|
|
|
|
let mi = ast::meta_name_value(~"vers", vers);
|
|
|
|
let mi = nospan(mi);
|
|
|
|
let vi = ast::view_item_use(cx.sess.ident_of(~"std"),
|
|
|
|
~[@mi],
|
|
|
|
cx.sess.next_node_id());
|
2013-01-13 18:51:48 -06:00
|
|
|
let vi = ast::view_item {
|
2012-12-28 15:41:14 -06:00
|
|
|
node: vi,
|
|
|
|
attrs: ~[],
|
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp()
|
|
|
|
};
|
|
|
|
|
|
|
|
return @vi;
|
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn mk_tests(cx: test_ctxt) -> @ast::item {
|
2011-08-18 16:32:25 -05:00
|
|
|
let ret_ty = mk_test_desc_vec_ty(cx);
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2013-01-15 18:05:20 -06:00
|
|
|
let decl = ast::fn_decl {
|
|
|
|
inputs: ~[],
|
|
|
|
output: ret_ty,
|
|
|
|
cf: ast::return_val,
|
|
|
|
};
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2011-07-09 20:36:19 -05:00
|
|
|
// The vector of test_descs for this crate
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_descs = mk_test_desc_vec(cx);
|
|
|
|
|
2011-09-02 17:34:58 -05:00
|
|
|
let body_: ast::blk_ =
|
2012-08-20 14:23:37 -05:00
|
|
|
default_block(~[], option::Some(test_descs), cx.sess.next_node_id());
|
2011-07-27 07:19:39 -05:00
|
|
|
let body = nospan(body_);
|
|
|
|
|
2012-08-23 20:17:16 -05:00
|
|
|
let item_ = ast::item_fn(decl, ast::impure_fn, ~[], body);
|
2013-01-13 15:13:41 -06:00
|
|
|
let item = ast::item {
|
|
|
|
ident: cx.sess.ident_of(~"tests"),
|
|
|
|
attrs: ~[],
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: item_,
|
|
|
|
vis: ast::public,
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2012-08-01 19:30:05 -05:00
|
|
|
return @item;
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2012-12-28 15:41:14 -06:00
|
|
|
fn is_std(cx: test_ctxt) -> 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);
|
2012-08-06 14:34:08 -05:00
|
|
|
match attr::last_meta_item_value_str_by_name(items, ~"name") {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(~"std") => 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mk_path(cx: test_ctxt, +path: ~[ast::ident]) -> @ast::path {
|
|
|
|
// For tests that are inside of std we don't want to prefix
|
|
|
|
// the paths with std::
|
|
|
|
if is_std(cx) { path_node_global(path) }
|
|
|
|
else {
|
|
|
|
path_node(
|
|
|
|
~[cx.sess.ident_of(~"self"),
|
|
|
|
cx.sess.ident_of(~"std")]
|
|
|
|
+ path)
|
|
|
|
}
|
2012-01-17 18:17:47 -06:00
|
|
|
}
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
// The ast::Ty of ~[std::test::test_desc]
|
|
|
|
fn mk_test_desc_vec_ty(cx: test_ctxt) -> @ast::Ty {
|
2012-07-12 17:03:33 -05:00
|
|
|
let test_desc_ty_path =
|
2012-12-28 15:41:14 -06:00
|
|
|
mk_path(cx, ~[cx.sess.ident_of(~"test"),
|
|
|
|
cx.sess.ident_of(~"TestDesc")]);
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2013-01-15 16:59:39 -06:00
|
|
|
let test_desc_ty = ast::Ty {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: ast::ty_path(test_desc_ty_path, cx.sess.next_node_id()),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2013-01-14 23:36:27 -06:00
|
|
|
let vec_mt = ast::mt {ty: @test_desc_ty, mutbl: ast::m_imm};
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2013-01-15 16:59:39 -06:00
|
|
|
let inner_ty = @ast::Ty {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: ast::ty_vec(vec_mt),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
|
|
|
|
|
|
|
@ast::Ty {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: ast::ty_uniq(ast::mt { ty: inner_ty, mutbl: ast::m_imm }),
|
|
|
|
span: dummy_sp(),
|
|
|
|
}
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn mk_test_desc_vec(cx: test_ctxt) -> @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 = ~[];
|
2012-06-30 18:19:07 -05:00
|
|
|
for cx.testfns.each |test| {
|
2012-09-26 19:33:34 -05:00
|
|
|
descs.push(mk_test_desc_rec(cx, *test));
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let inner_expr = @ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_vec(descs, ast::m_imm),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
|
|
|
|
|
|
|
@ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_vstore(inner_expr, ast::expr_vstore_uniq),
|
|
|
|
span: dummy_sp(),
|
|
|
|
}
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn mk_test_desc_rec(cx: test_ctxt, 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
|
|
|
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("encoding %s", ast_util::path_name_i(path,
|
|
|
|
cx.sess.parse_sess.interner));
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let name_lit: ast::lit =
|
2013-01-07 16:16:52 -06:00
|
|
|
nospan(ast::lit_str(@ast_util::path_name_i(
|
2013-01-11 17:18:01 -06:00
|
|
|
path, cx.sess.parse_sess.interner)));
|
2012-07-13 17:54:39 -05:00
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let name_expr_inner = @ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_lit(@name_lit),
|
|
|
|
span: span,
|
|
|
|
};
|
|
|
|
|
|
|
|
let name_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_vstore(name_expr_inner, ast::expr_vstore_uniq),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-01-14 23:36:27 -06:00
|
|
|
let name_field = nospan(ast::field_ {
|
|
|
|
mutbl: ast::m_imm,
|
|
|
|
ident: cx.sess.ident_of(~"name"),
|
|
|
|
expr: @name_expr,
|
|
|
|
});
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2012-12-27 19:53:04 -06:00
|
|
|
let fn_path = path_node_global(path);
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let fn_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_path(fn_path),
|
|
|
|
span: span,
|
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2011-10-13 18:42:43 -05:00
|
|
|
let fn_wrapper_expr = mk_test_wrapper(cx, fn_expr, span);
|
|
|
|
|
2013-01-14 23:36:27 -06:00
|
|
|
let fn_field = nospan(ast::field_ {
|
|
|
|
mutbl: ast::m_imm,
|
|
|
|
ident: cx.sess.ident_of(~"testfn"),
|
|
|
|
expr: fn_wrapper_expr,
|
|
|
|
});
|
2011-07-27 07:19:39 -05:00
|
|
|
|
|
|
|
let ignore_lit: ast::lit = nospan(ast::lit_bool(test.ignore));
|
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let ignore_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_lit(@ignore_lit),
|
|
|
|
span: span,
|
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-01-14 23:36:27 -06:00
|
|
|
let ignore_field = nospan(ast::field_ {
|
|
|
|
mutbl: ast::m_imm,
|
|
|
|
ident: cx.sess.ident_of(~"ignore"),
|
|
|
|
expr: @ignore_expr,
|
|
|
|
});
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2011-11-01 12:31:23 -05:00
|
|
|
let fail_lit: ast::lit = nospan(ast::lit_bool(test.should_fail));
|
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let fail_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_lit(@fail_lit),
|
|
|
|
span: span,
|
|
|
|
};
|
2011-11-01 12:31:23 -05:00
|
|
|
|
2013-01-14 23:36:27 -06:00
|
|
|
let fail_field = nospan(ast::field_ {
|
|
|
|
mutbl: ast::m_imm,
|
|
|
|
ident: cx.sess.ident_of(~"should_fail"),
|
|
|
|
expr: @fail_expr,
|
|
|
|
});
|
2011-11-01 12:31:23 -05:00
|
|
|
|
2013-01-08 16:00:45 -06:00
|
|
|
let test_desc_path =
|
|
|
|
mk_path(cx, ~[cx.sess.ident_of(~"test"),
|
|
|
|
cx.sess.ident_of(~"TestDesc")]);
|
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let desc_rec_ = ast::expr_struct(
|
|
|
|
test_desc_path,
|
|
|
|
~[name_field, fn_field, ignore_field, fail_field],
|
|
|
|
option::None
|
|
|
|
);
|
|
|
|
|
|
|
|
let desc_rec = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: desc_rec_,
|
|
|
|
span: span,
|
|
|
|
};
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return @desc_rec;
|
2011-07-09 20:36:19 -05:00
|
|
|
}
|
|
|
|
|
2011-10-13 18:42:43 -05:00
|
|
|
// Produces a bare function that wraps the test function
|
2012-06-21 18:44:10 -05:00
|
|
|
|
|
|
|
// FIXME (#1281): This can go away once fn is the type of bare function.
|
2011-10-13 18:42:43 -05:00
|
|
|
fn mk_test_wrapper(cx: test_ctxt,
|
2013-01-07 16:16:52 -06:00
|
|
|
+fn_path_expr: ast::expr,
|
2011-10-13 18:42:43 -05:00
|
|
|
span: span) -> @ast::expr {
|
2013-01-15 15:51:43 -06:00
|
|
|
let call_expr = ast::expr {
|
2011-12-06 16:39:01 -06:00
|
|
|
id: cx.sess.next_node_id(),
|
2012-07-11 16:31:35 -05:00
|
|
|
callee_id: cx.sess.next_node_id(),
|
2012-06-29 18:26:56 -05:00
|
|
|
node: ast::expr_call(@fn_path_expr, ~[], false),
|
2013-01-15 15:51:43 -06:00
|
|
|
span: span,
|
2011-10-13 18:42:43 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let call_stmt: ast::stmt = nospan(
|
2012-07-03 19:30:25 -05:00
|
|
|
ast::stmt_semi(@call_expr, cx.sess.next_node_id()));
|
2011-10-13 18:42:43 -05:00
|
|
|
|
2013-01-15 18:05:20 -06:00
|
|
|
let wrapper_decl = ast::fn_decl {
|
2012-06-29 18:26:56 -05:00
|
|
|
inputs: ~[],
|
2013-01-15 16:59:39 -06:00
|
|
|
output: @ast::Ty {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: ast::ty_nil,
|
|
|
|
span: span,
|
|
|
|
},
|
2012-07-13 20:43:52 -05:00
|
|
|
cf: ast::return_val
|
2011-10-13 18:42:43 -05:00
|
|
|
};
|
|
|
|
|
2013-01-14 22:52:28 -06:00
|
|
|
let wrapper_body = nospan(ast::blk_ {
|
2012-06-29 18:26:56 -05:00
|
|
|
view_items: ~[],
|
|
|
|
stmts: ~[@call_stmt],
|
2012-08-20 14:23:37 -05:00
|
|
|
expr: option::None,
|
2011-12-06 16:39:01 -06:00
|
|
|
id: cx.sess.next_node_id(),
|
2011-10-13 18:42:43 -05:00
|
|
|
rules: ast::default_blk
|
|
|
|
});
|
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let wrapper_expr = ast::expr {
|
2011-12-06 16:39:01 -06:00
|
|
|
id: cx.sess.next_node_id(),
|
2012-07-11 16:31:35 -05:00
|
|
|
callee_id: cx.sess.next_node_id(),
|
2013-01-10 12:59:58 -06:00
|
|
|
node: ast::expr_fn(ast::ProtoBare, wrapper_decl, wrapper_body),
|
2011-10-13 18:42:43 -05:00
|
|
|
span: span
|
|
|
|
};
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return @wrapper_expr;
|
2011-10-13 18:42:43 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn mk_main(cx: test_ctxt) -> @ast::item {
|
2013-01-15 16:59:39 -06:00
|
|
|
let ret_ty = ast::Ty {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: ast::ty_nil,
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2011-07-11 17:57:11 -05:00
|
|
|
|
2013-01-15 18:05:20 -06:00
|
|
|
let decl = ast::fn_decl {
|
|
|
|
inputs: ~[],
|
|
|
|
output: @ret_ty,
|
|
|
|
cf: ast::return_val,
|
|
|
|
};
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let test_main_call_expr = mk_test_main_call(cx);
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2011-09-02 17:34:58 -05:00
|
|
|
let body_: ast::blk_ =
|
2012-08-20 14:23:37 -05:00
|
|
|
default_block(~[], option::Some(test_main_call_expr),
|
2011-12-06 16:39:01 -06:00
|
|
|
cx.sess.next_node_id());
|
2012-12-27 13:36:00 -06:00
|
|
|
let body = ast::spanned { node: body_, span: dummy_sp() };
|
2011-07-06 18:28:07 -05:00
|
|
|
|
2012-08-23 20:17:16 -05:00
|
|
|
let item_ = ast::item_fn(decl, ast::impure_fn, ~[], body);
|
2013-01-13 15:13:41 -06:00
|
|
|
let item = ast::item {
|
|
|
|
ident: cx.sess.ident_of(~"main"),
|
|
|
|
attrs: ~[attr::mk_attr(attr::mk_word_item(~"main"))],
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
node: item_,
|
|
|
|
vis: ast::public,
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2012-08-01 19:30:05 -05:00
|
|
|
return @item;
|
2011-07-06 16:29:50 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn mk_test_main_call(cx: test_ctxt) -> @ast::expr {
|
2012-10-03 21:16:27 -05:00
|
|
|
// Call os::args to generate the vector of test_descs
|
2012-12-27 19:53:04 -06:00
|
|
|
let args_path = path_node_global(~[
|
2012-10-03 21:16:27 -05:00
|
|
|
cx.sess.ident_of(~"os"),
|
|
|
|
cx.sess.ident_of(~"args")
|
|
|
|
]);
|
2011-07-11 17:57:11 -05:00
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let args_path_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_path(args_path),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2012-10-03 21:16:27 -05:00
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let args_call_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_call(@args_path_expr, ~[], false),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2012-10-03 21:16:27 -05:00
|
|
|
|
2011-07-11 17:57:11 -05:00
|
|
|
// Call __test::test to generate the vector of test_descs
|
2012-07-18 18:18:02 -05:00
|
|
|
let test_path = path_node(~[cx.sess.ident_of(~"tests")]);
|
2011-07-08 23:45:50 -05:00
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let test_path_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_path(test_path),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2011-07-08 23:45:50 -05:00
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let test_call_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_call(@test_path_expr, ~[], false),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2011-07-08 23:45:50 -05:00
|
|
|
|
2011-07-11 17:57:11 -05:00
|
|
|
// Call std::test::test_main
|
2012-12-28 15:41:14 -06:00
|
|
|
let test_main_path =
|
2012-07-18 18:18:02 -05:00
|
|
|
mk_path(cx, ~[cx.sess.ident_of(~"test"),
|
2012-12-28 15:41:14 -06:00
|
|
|
cx.sess.ident_of(~"test_main")]);
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let test_main_path_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_path(test_main_path),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2013-01-15 15:51:43 -06:00
|
|
|
let test_main_call_expr = ast::expr {
|
|
|
|
id: cx.sess.next_node_id(),
|
|
|
|
callee_id: cx.sess.next_node_id(),
|
|
|
|
node: ast::expr_call(
|
|
|
|
@test_main_path_expr,
|
|
|
|
~[@args_call_expr, @test_call_expr],
|
|
|
|
false
|
|
|
|
),
|
|
|
|
span: dummy_sp(),
|
|
|
|
};
|
2011-07-09 20:36:19 -05:00
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return @test_main_call_expr;
|
2011-07-08 23:45:50 -05:00
|
|
|
}
|
|
|
|
|
2011-07-06 16:29:50 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|