1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
use uuid_simd::{AsOut, AsciiCase};
fn ok_cases() -> &'static [(&'static str, &'static str)] {
const A1: &str = "67e5504410b1426f9247bb680e5fe0c8";
const A2: &str = "00000000000000000000000000000000";
const OK: &[(&str, &str)] = &[
(A1, "67e55044-10b1-426f-9247-bb680e5fe0c8"),
(A1, "67e5504410b1426f9247bb680e5fe0c8"),
(A1, "{67e55044-10b1-426f-9247-bb680e5fe0c8}"),
(A1, "urn:uuid:67e55044-10b1-426f-9247-bb680e5fe0c8"),
(A2, "00000000000000000000000000000000"),
(A2, "00000000-0000-0000-0000-000000000000"),
(
"01020304111221223132414243444546",
"01020304-1112-2122-3132-414243444546",
),
(
"F9168C5ECEB24faaB6BF329BF39FA1E4",
"F9168C5E-CEB2-4faa-B6BF-329BF39FA1E4",
),
(
"6d93badebd9f4e1389149474e1e3567b",
"{6d93bade-bd9f-4e13-8914-9474e1e3567b}",
),
];
OK
}
fn err_cases() -> &'static [&'static str] {
const ERR: &[&str] = &[
"",
"!",
"F9168C5E-CEB2-4faa-B6BF-329BF39FA1E45",
"F9168C5E-CEB2-4faa-BBF-329BF39FA1E4",
"F9168C5E-CEB2-4faa",
"{F9168C5E-CEB2-4faa9B6BFF329BF39FA1E41",
"67e5504410b1426f9247bb680e5fe0c",
"67e5504410b1426f9247bb680e5fe0c88",
"67e5504410b1426f9247bb680e5fe0cg8",
"{00000000000000000000000000000000}",
"67e5504410b1426f9247bb680e5fe0c",
"F9168C5E-CEB2-4faa-B6BF1-02BF39FA1E4",
"231231212212423424324323477343246663",
"01020304-1112-2122-3132-41424344",
"F9168C5E-CEB2-4faa-BGBF-329BF39FA1E4",
"F9168C5E-CEB2F4faaFB6BFF329BF39FA1E4",
"F9168C5E-CEB2-4faaFB6BFF329BF39FA1E4",
"F9168C5E-CEB2-4faa-B6BFF329BF39FA1E4",
"F9168C5E-CEB2-4faaXB6BFF329BF39FA1E4",
"67e5504410b1426%9247bb680e5fe0c8",
"67e550X410b1426f9247bb680e5fe0cd",
"67e550-4105b1426f9247bb680e5fe0c",
"F9168C5E-CEB-24fa-eB6BFF32-BF39FA1E4",
];
ERR
}
fn format_cases() -> &'static [(&'static str, &'static str)] {
&[
(
"67e5504410b1426f9247bb680e5fe0c8",
"67e55044-10b1-426f-9247-bb680e5fe0c8",
),
(
"01020304111221223132414243444546",
"01020304-1112-2122-3132-414243444546",
),
(
"00000000000000000000000000000000",
"00000000-0000-0000-0000-000000000000",
),
]
}
#[cfg_attr(not(target_arch = "wasm32"), test)]
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)]
fn basic() {
for &(expected, input) in ok_cases() {
let mut expected_buf = [0u8; 16];
let expected_bytes = hex_simd::decode(expected.as_bytes(), expected_buf.as_mut_slice().as_out()).unwrap();
let mut output_buf = [0; 16];
let output_bytes = uuid_simd::parse(input.as_bytes(), output_buf.as_out()).unwrap();
assert_eq!(output_bytes, expected_bytes);
}
for &input in err_cases() {
let mut output_buf = [0; 16];
uuid_simd::parse(input.as_bytes(), output_buf.as_out()).unwrap_err();
}
for &(input, expected) in format_cases() {
let mut src = [0; 16];
hex_simd::decode(input.as_bytes(), src.as_mut_slice().as_out()).unwrap();
let mut output_buf = [0; 32];
let output = uuid_simd::format_simple(&src, output_buf.as_out(), AsciiCase::Upper);
assert_eq!(output.as_slice(), input.to_ascii_uppercase().as_bytes());
let output = uuid_simd::format_simple(&src, output_buf.as_out(), AsciiCase::Lower);
assert_eq!(output.as_slice(), input.to_ascii_lowercase().as_bytes());
let mut output_buf = [0; 36];
let output = uuid_simd::format_hyphenated(&src, output_buf.as_out(), AsciiCase::Upper);
assert_eq!(output.as_slice(), expected.to_ascii_uppercase().as_bytes());
let output = uuid_simd::format_hyphenated(&src, output_buf.as_out(), AsciiCase::Lower);
assert_eq!(output.as_slice(), expected.to_ascii_lowercase().as_bytes());
}
}
|