konst_kernel 0.3.15

Foundational const functionality shared between konst and const_panic
Documentation
use crate::chr::{self, encode_utf8};

#[test]
fn test_chars_as_str() {
    let mut buffer = [0u8; 10];

    for c in "fooñ个人bar\u{100000}baz".chars() {
        let std_encoded = c.encode_utf8(&mut buffer);
        assert_eq!(encode_utf8(c).as_str(), std_encoded);
    }
}

#[cfg(not(miri))]
#[test]
fn test_all_chars_as_byets() {
    let mut buffer = [0u8; 10];
    for c in '\0'..=char::MAX {
        let std_encoded = c.encode_utf8(&mut buffer);
        assert_eq!(encode_utf8(c).as_bytes(), std_encoded.as_bytes());
    }
}

#[cfg(not(miri))]
#[test]
fn test_all_chars_from_u32() {
    for c in 0..(u32::from(char::MAX) + 10) {
        assert_eq!(chr::from_u32(c), core::char::from_u32(c));
    }
}

#[test]
fn test_some_chars_from_u32() {
    let vals = [
        0x0, 0x1, 0x7F, 0xFF, 0x7FF, 0x1000, 0x8000, 0xD7FF, 0xD800, 0xDFFF, 0xE000, 0xE001,
        0x10FFFE, 0x10FFFF, 0x110000, 0x110001,
    ];
    for c in vals {
        let chr = chr::from_u32(c);
        assert_eq!(chr, core::char::from_u32(c), "number: {c:x}");

        if let Some(chr) = chr {
            unsafe {
                assert_eq!(chr, chr::from_u32_unchecked(c), "number: {c:x}");
            }
        }
    }
}