rust/src/test/stdtest/test.rs

105 lines
3.0 KiB
Rust
Raw Normal View History

import std::test;
import std::str;
import std::option;
import std::either;
2011-08-15 18:38:23 -05:00
import std::vec;
#[test]
fn do_not_run_ignored_tests() {
2011-07-27 07:19:39 -05:00
let ran = @mutable false;
let f = bind fn (ran: @mutable bool) { *ran = true; }(ran);
2011-07-27 07:19:39 -05:00
let desc = {name: "whatever", fn: f, ignore: true};
test::run_test(desc, test::default_test_to_task);
assert (*ran == false);
}
#[test]
fn ignored_tests_result_in_ignored() {
fn f() { }
2011-07-27 07:19:39 -05:00
let desc = {name: "whatever", fn: f, ignore: true};
let res = test::run_test(desc, test::default_test_to_task).wait();
assert (res == test::tr_ignored);
}
#[test]
fn first_free_arg_should_be_a_filter() {
2011-07-27 07:19:39 -05:00
let args = ~["progname", "filter"];
2011-08-15 18:38:23 -05:00
check (vec::is_not_empty(args));
2011-07-27 07:19:39 -05:00
let opts = alt test::parse_opts(args) { either::left(o) { o } };
assert (str::eq("filter", option::get(opts.filter)));
}
#[test]
fn parse_ignored_flag() {
2011-07-27 07:19:39 -05:00
let args = ~["progname", "filter", "--ignored"];
2011-08-15 18:38:23 -05:00
check (vec::is_not_empty(args));
2011-07-27 07:19:39 -05:00
let opts = alt test::parse_opts(args) { either::left(o) { o } };
assert (opts.run_ignored);
}
#[test]
fn filter_for_ignored_option() {
// When we run ignored tests the test filter should filter out all the
// unignored tests and flip the ignore flag on the rest to false
2011-07-27 07:19:39 -05:00
let opts = {filter: option::none, run_ignored: true};
let tests =
~[{name: "1", fn: fn () { }, ignore: true},
{name: "2", fn: fn () { }, ignore: false}];
let filtered = test::filter_tests(opts, tests);
2011-08-15 18:38:23 -05:00
assert (vec::len(filtered) == 1u);
2011-07-27 07:19:39 -05:00
assert (filtered.(0).name == "1");
assert (filtered.(0).ignore == false);
}
#[test]
fn sort_tests() {
2011-07-27 07:19:39 -05:00
let opts = {filter: option::none, run_ignored: false};
let names =
~["sha1::test", "int::test_to_str", "int::test_pow",
"test::do_not_run_ignored_tests",
"test::ignored_tests_result_in_ignored",
"test::first_free_arg_should_be_a_filter",
"test::parse_ignored_flag", "test::filter_for_ignored_option",
"test::sort_tests"];
let tests =
{
let testfn = fn () { };
let tests = ~[];
for name: str in names {
2011-07-27 07:19:39 -05:00
let test = {name: name, fn: testfn, ignore: false};
tests += ~[test];
}
tests
};
let filtered = test::filter_tests(opts, tests);
let expected =
~["int::test_pow", "int::test_to_str", "sha1::test",
"test::do_not_run_ignored_tests", "test::filter_for_ignored_option",
"test::first_free_arg_should_be_a_filter",
"test::ignored_tests_result_in_ignored", "test::parse_ignored_flag",
"test::sort_tests"];
2011-08-15 18:38:23 -05:00
let pairs = vec::zip(expected, filtered);
2011-07-27 07:19:39 -05:00
2011-08-15 07:32:58 -05:00
for (a, b) in pairs {
assert (a == b.name);
}
}
// 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 .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End: