Meziu
3 years ago
committed by
GitHub
3 changed files with 185 additions and 0 deletions
@ -0,0 +1,123 @@
@@ -0,0 +1,123 @@
|
||||
//! Custom test runner for building/running unit tests on the 3DS.
|
||||
|
||||
extern crate test; |
||||
|
||||
use std::io; |
||||
|
||||
use test::{ColorConfig, Options, OutputFormat, RunIgnored, TestDescAndFn, TestFn, TestOpts}; |
||||
|
||||
use crate::console::Console; |
||||
use crate::gfx::Gfx; |
||||
use crate::services::hid::{Hid, KeyPad}; |
||||
use crate::services::Apt; |
||||
|
||||
/// A custom runner to be used with `#[test_runner]`. This simple implementation
|
||||
/// runs all tests in series, "failing" on the first one to panic (really, the
|
||||
/// panic is just treated the same as any normal application panic).
|
||||
pub(crate) fn run(tests: &[&TestDescAndFn]) { |
||||
crate::init(); |
||||
|
||||
let gfx = Gfx::default(); |
||||
let hid = Hid::init().unwrap(); |
||||
let apt = Apt::init().unwrap(); |
||||
|
||||
let mut top_screen = gfx.top_screen.borrow_mut(); |
||||
top_screen.set_wide_mode(true); |
||||
let _console = Console::init(top_screen); |
||||
|
||||
// TODO: it would be nice to have a way of specifying argv to make these
|
||||
// configurable at runtime, but I can't figure out how to do it easily,
|
||||
// so for now, just hardcode everything.
|
||||
let opts = TestOpts { |
||||
list: false, |
||||
filters: Vec::new(), |
||||
filter_exact: false, |
||||
// Forking is not supported
|
||||
force_run_in_process: true, |
||||
exclude_should_panic: false, |
||||
run_ignored: RunIgnored::No, |
||||
run_tests: true, |
||||
// Don't run benchmarks. We may want to create a separate runner for them in the future
|
||||
bench_benchmarks: false, |
||||
logfile: None, |
||||
nocapture: false, |
||||
// TODO: color doesn't work because of TERM/TERMINFO.
|
||||
// With RomFS we might be able to fake this out nicely...
|
||||
color: ColorConfig::AutoColor, |
||||
format: OutputFormat::Pretty, |
||||
shuffle: false, |
||||
shuffle_seed: None, |
||||
test_threads: None, |
||||
skip: Vec::new(), |
||||
time_options: None, |
||||
options: Options::new(), |
||||
}; |
||||
|
||||
// Use the default test implementation with our hardcoded options
|
||||
let _success = run_static_tests(&opts, tests).unwrap(); |
||||
|
||||
// Make sure the user can actually see the results before we exit
|
||||
println!("Press START to exit."); |
||||
|
||||
while apt.main_loop() { |
||||
gfx.flush_buffers(); |
||||
gfx.swap_buffers(); |
||||
gfx.wait_for_vblank(); |
||||
|
||||
hid.scan_input(); |
||||
if hid.keys_down().contains(KeyPad::KEY_START) { |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
|
||||
/// Adapted from [`test::test_main_static`] and [`test::make_owned_test`].
|
||||
fn run_static_tests(opts: &TestOpts, tests: &[&TestDescAndFn]) -> io::Result<bool> { |
||||
let tests = tests.iter().map(make_owned_test).collect(); |
||||
test::run_tests_console(opts, tests) |
||||
} |
||||
|
||||
/// Clones static values for putting into a dynamic vector, which test_main()
|
||||
/// needs to hand out ownership of tests to parallel test runners.
|
||||
///
|
||||
/// This will panic when fed any dynamic tests, because they cannot be cloned.
|
||||
fn make_owned_test(test: &&TestDescAndFn) -> TestDescAndFn { |
||||
match test.testfn { |
||||
TestFn::StaticTestFn(f) => TestDescAndFn { |
||||
testfn: TestFn::StaticTestFn(f), |
||||
desc: test.desc.clone(), |
||||
}, |
||||
TestFn::StaticBenchFn(f) => TestDescAndFn { |
||||
testfn: TestFn::StaticBenchFn(f), |
||||
desc: test.desc.clone(), |
||||
}, |
||||
_ => panic!("non-static tests passed to test::test_main_static"), |
||||
} |
||||
} |
||||
|
||||
/// The following functions are stubs needed to link the test library,
|
||||
/// but do nothing because we don't actually need them for the runner to work.
|
||||
mod link_fix { |
||||
#[no_mangle] |
||||
extern "C" fn execvp( |
||||
_argc: *const libc::c_char, |
||||
_argv: *mut *const libc::c_char, |
||||
) -> libc::c_int { |
||||
-1 |
||||
} |
||||
|
||||
#[no_mangle] |
||||
extern "C" fn pipe(_fildes: *mut libc::c_int) -> libc::c_int { |
||||
-1 |
||||
} |
||||
|
||||
#[no_mangle] |
||||
extern "C" fn sigemptyset(_arg1: *mut libc::sigset_t) -> ::libc::c_int { |
||||
-1 |
||||
} |
||||
|
||||
#[no_mangle] |
||||
extern "C" fn sysconf(_name: libc::c_int) -> libc::c_long { |
||||
-1 |
||||
} |
||||
} |
Loading…
Reference in new issue