//! Miscellaneous simple tests //! //! The goal of this test suite is to collect smaller, simpler test cases, to keep the overall //! number of test suites low(er). //% CHIPS: esp32 esp32c2 esp32c3 esp32c6 esp32h2 esp32s2 esp32s3 //% FEATURES: unstable #![no_std] #![no_main] use embedded_hal::delay::DelayNs; use esp_hal::{ delay::Delay, peripherals::Peripherals, rom::{crc, md5}, time::{Duration, Instant}, }; use hil_test as _; fn time_moves_forward_during(ctx: Context, f: F) { let t1 = Instant::now(); f(ctx); let t2 = Instant::now(); assert!(t2 > t1); } struct Context { p: Peripherals, } #[embedded_test::tests(default_timeout = 2)] mod tests { use super::*; #[init] fn init() -> Context { Context { p: esp_hal::init(esp_hal::Config::default()), } } // Test time #[test] fn duration_since_epoch_is_not_relative_to_now() { let now = Instant::EPOCH; Delay::new().delay_ns(10_000); assert_eq!(now.duration_since_epoch(), Duration::ZERO); } #[cfg(systimer)] #[test] fn test_current_time_construct_systimer(ctx: Context) { time_moves_forward_during(ctx, |ctx| { // construct the timer in between calls to current_time let _ = esp_hal::timer::systimer::SystemTimer::new(ctx.p.SYSTIMER); }) } #[cfg(esp32)] #[test] fn test_current_time_construct_timg0(ctx: Context) { time_moves_forward_during(ctx, |ctx| { // construct the timer in between calls to current_time let _ = esp_hal::timer::timg::TimerGroup::new(ctx.p.TIMG0); }) } #[test] fn delay_ns() { let t1 = Instant::now(); Delay::new().delay_ns(600_000); let t2 = Instant::now(); assert!(t2 > t1); assert!( (t2 - t1).as_micros() >= 600u64, "diff: {:?}", (t2 - t1).as_micros() ); } #[test] fn delay_70millis() { let t1 = Instant::now(); Delay::new().delay_millis(70); let t2 = Instant::now(); assert!(t2 > t1); assert!( (t2 - t1).as_millis() >= 70u64, "diff: {:?}", (t2 - t1).as_millis() ); } #[test] fn delay_1_500us() { let t1 = Instant::now(); Delay::new().delay_us(1_500); let t2 = Instant::now(); assert!(t2 > t1); assert!( (t2 - t1).as_micros() >= 1_500u64, "diff: {:?}", (t2 - t1).as_micros() ); } #[test] fn delay_300ms() { let t1 = Instant::now(); Delay::new().delay_ms(300); let t2 = Instant::now(); assert!(t2 > t1); assert!( (t2 - t1).as_millis() >= 300u64, "diff: {:?}", (t2 - t1).as_millis() ); } // Test ROM functions #[test] fn test_crc() { let data = "123456789"; let crc_hdlc = crc::crc32_le(!0xffffffff, data.as_ref()); let crc_bzip2 = crc::crc32_be(!0xffffffff, data.as_ref()); let crc_mpeg2 = !crc::crc32_be(!0xffffffff, data.as_ref()); let crc_cksum = crc::crc32_be(!0, data.as_ref()); let crc_kermit = !crc::crc16_le(!0, data.as_ref()); let crc_genibus = crc::crc16_be(!0xffff, data.as_ref()); let crc_rohc = !crc::crc8_le(!0xff, data.as_ref()); let crc_smbus = !crc::crc8_be(!0, data.as_ref()); assert_eq!(crc_hdlc, 0xcbf43926); assert_eq!(crc_bzip2, 0xfc891918); assert_eq!(crc_mpeg2, 0x0376e6e7); assert_eq!(crc_cksum, 0x765e7680); assert_eq!(crc_kermit, 0x2189); assert_eq!(crc_genibus, 0xd64e); assert_eq!(crc_rohc, 0xd0); assert_eq!(crc_smbus, 0xf4); } #[test] fn test_crc_rom_function() { let crc = esp_bootloader_esp_idf::Crc32ForTesting::new(); let res = crc.crc(&[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]); assert_eq!(res, 436745307); } #[test] fn test_md5() { let sentence = "The quick brown fox jumps over a lazy dog"; let mut md5_ctx = md5::Context::new(); let mut it = sentence.split_whitespace().peekable(); while let Some(word) = it.next() { md5_ctx.consume(word); if it.peek().is_some() { md5_ctx.consume(" "); } } let md5_digest = md5_ctx.compute(); let expected_md5_digest = [ 0x30, 0xde, 0xd8, 0x07, 0xd6, 0x5e, 0xe0, 0x37, 0x0f, 0xc6, 0xd7, 0x3d, 0x6a, 0xb5, 0x5a, 0x95, ]; assert_eq!(expected_md5_digest, *md5_digest); } #[test] #[cfg(soc_has_usb_device)] fn creating_peripheral_does_not_break_debug_connection(ctx: Context) { use esp_hal::usb_serial_jtag::UsbSerialJtag; _ = UsbSerialJtag::new(ctx.p.USB_DEVICE).into_async().split(); } }