Chirp/tests/integration.rs

292 lines
7.6 KiB
Rust
Raw Normal View History

//! Testing methods on Chirp's public API
use chirp::*;
use std::{collections::hash_map::DefaultHasher, hash::Hash};
#[test]
fn chip8() {
let ch8 = Chip8::default(); // Default
let ch82 = ch8.clone(); // Clone
assert_eq!(ch8, ch82); // PartialEq
println!("{ch8:?}"); // Debug
}
mod bus {
use super::*;
mod region {
use super::*;
// #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[test]
fn copy() {
let r1 = Screen;
let r2 = r1;
assert_eq!(r1, r2);
}
#[test]
2023-03-31 19:32:01 +00:00
#[allow(clippy::clone_on_copy)]
fn clone() {
let r1 = Screen;
let r2 = r1.clone();
assert_eq!(r1, r2);
}
#[test]
fn display() {
println!("{Charset}{Program}{Screen}{Stack}{Count}");
}
#[test]
fn debug() {
println!("{Charset:?}{Program:?}{Screen:?}{Stack:?}{Count:?}");
}
// lmao the things you do for test coverage
#[test]
fn eq() {
assert_eq!(Screen, Screen);
assert_ne!(Charset, Program);
}
#[test]
fn ord() {
assert_eq!(Stack, Charset.max(Program).max(Screen).max(Stack));
assert!(Charset < Program && Program < Screen && Screen < Stack);
}
#[test]
fn hash() {
let mut hasher = DefaultHasher::new();
Stack.hash(&mut hasher);
println!("{hasher:?}");
}
}
#[test]
#[should_panic]
fn bus_missing_region() {
// Print the screen of a bus with no screen
bus! {}.print_screen().unwrap()
}
}
mod cpu {
use super::*;
#[test]
fn set_break() {
let mut cpu = CPU::default();
let point = 0x234;
assert_eq!(cpu.breakpoints(), &[]);
// Attempt to set the same breakpoint 100 times
for _ in 0..100 {
cpu.set_break(point);
}
assert_eq!(cpu.breakpoints(), &[point]);
}
#[test]
fn unset_break() {
let mut cpu = CPU::default();
let point = 0x234;
// set TWO breakpoints
cpu.set_break(point + 1);
cpu.set_break(point);
assert_eq!(cpu.breakpoints(), &[point + 1, point]);
// Attempt to unset the same breakpoint 100 times
for _ in 0..100 {
cpu.unset_break(point);
}
// Only unset the matching point
assert_eq!(cpu.breakpoints(), &[point + 1]);
}
#[test]
fn press_invalid_key() {
let mut cpu = CPU::default();
let cpu2 = cpu.clone();
cpu.press(0x21345134)
.expect_err("This should produce an Error::InvalidKey");
// no change has been made, everything is safe.
assert_eq!(cpu, cpu2);
}
#[test]
fn release_invalid_key() {
let mut cpu = CPU::default();
let cpu2 = cpu.clone();
cpu.release(0x21345134)
.expect_err("This should produce an Error::InvalidKey");
// no change has been made, everything is safe.
assert_eq!(cpu, cpu2);
}
#[test]
fn set_invalid_reg() {
let mut cpu = CPU::default();
let cpu2 = cpu.clone();
cpu.set_v(0x21345134, 0xff)
.expect_err("This should produce an Error::InvalidRegister");
// no change has been made
assert_eq!(cpu, cpu2);
}
mod controlflags {
use super::*;
//#[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[test]
fn clone() {
let cf1 = ControlFlags {
debug: false,
pause: false,
keypause: false,
draw_wait: false,
lastkey: None,
quirks: Default::default(),
monotonic: None,
};
let cf2 = cf1.clone();
assert_eq!(cf1, cf2)
}
#[test]
fn debug() {
println!("{:?}", ControlFlags::default());
}
#[test]
fn default() {
assert_eq!(
ControlFlags::default(),
ControlFlags {
debug: false,
pause: false,
keypause: false,
draw_wait: false,
lastkey: Default::default(),
quirks: Default::default(),
monotonic: Default::default()
}
)
}
#[test]
fn eq() {
let cf1 = ControlFlags::default();
let cf2 = ControlFlags {
debug: true,
pause: true,
keypause: true,
draw_wait: true,
lastkey: Default::default(),
quirks: Default::default(),
monotonic: Default::default(),
};
assert_ne!(cf1, cf2);
}
#[test]
fn ord() {
let cf1 = ControlFlags::default();
let cf2 = ControlFlags {
debug: true,
pause: true,
keypause: true,
draw_wait: true,
lastkey: Default::default(),
quirks: Default::default(),
monotonic: Default::default(),
};
assert!(cf1 < cf2);
assert_eq!(ControlFlags::default(), cf1.min(cf2));
}
#[test]
fn hash() {
let mut hasher = DefaultHasher::new();
ControlFlags::default().hash(&mut hasher);
println!("{:?}", hasher);
}
}
}
2023-03-30 13:53:10 +00:00
mod dis {
use chirp::cpu::disassembler::Insn;
use imperative_rs::InstructionSet;
#[test]
2023-03-31 19:32:01 +00:00
#[allow(clippy::clone_on_copy)]
2023-03-30 13:53:10 +00:00
fn clone() {
2023-03-31 19:32:01 +00:00
let opcode = Insn::decode(&[0xef, 0xa1]).unwrap().1; // random valid opcode
2023-03-30 13:53:10 +00:00
let clone = opcode.clone();
assert_eq!(opcode, clone);
}
#[test]
fn debug() {
println!("{:?}", Insn::decode(b"AA")) // "sne #41, v1"
}
}
#[test]
fn error() {
let error = chirp::error::Error::MissingRegion { region: Screen };
// Print it with Display and Debug
println!("{error} {error:?}");
}
mod quirks {
use super::*;
use chirp::cpu::Quirks;
#[test]
fn from_true() {
let quirks_true = Quirks::from(true);
assert_eq!(
quirks_true,
Quirks {
bin_ops: true,
shift: true,
draw_wait: true,
dma_inc: true,
stupid_jumps: false,
}
)
}
#[test]
fn from_false() {
let quirks_true = Quirks::from(false);
assert_eq!(
quirks_true,
Quirks {
bin_ops: false,
shift: false,
draw_wait: false,
dma_inc: false,
stupid_jumps: false,
}
)
}
#[test]
fn clone() {
let q1 = Quirks {
bin_ops: false,
shift: true,
draw_wait: false,
dma_inc: true,
stupid_jumps: false,
};
let q2 = q1.clone();
assert_eq!(q1, q2);
}
#[test]
fn debug() {
println!("{:?}", Quirks::from(true));
}
#[test]
fn eq() {
assert_ne!(Quirks::from(false), Quirks::from(true));
}
#[test]
fn ord() {
assert!(Quirks::from(false) < Quirks::from(true));
assert!(Quirks::from(true) == Quirks::from(false).max(Quirks::from(true)));
}
#[test]
fn hash() {
let mut hasher = DefaultHasher::new();
Quirks::from(true).hash(&mut hasher);
println!("{hasher:?}");
}
}