spacepackets/src/util.rs

634 lines
19 KiB
Rust
Raw Normal View History

2023-05-14 20:10:34 +02:00
use crate::{ByteConversionError, SizeMissmatch};
2023-05-14 23:56:26 +02:00
use core::fmt::{Debug, Display, Formatter};
2023-05-14 20:10:34 +02:00
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
2023-05-14 23:56:26 +02:00
#[cfg(feature = "std")]
use std::error::Error;
2023-05-14 20:10:34 +02:00
pub trait ToBeBytes {
type ByteArray: AsRef<[u8]>;
/// Length when written to big endian bytes.
fn written_len(&self) -> usize;
fn to_be_bytes(&self) -> Self::ByteArray;
}
impl ToBeBytes for () {
type ByteArray = [u8; 0];
fn written_len(&self) -> usize {
0
}
fn to_be_bytes(&self) -> Self::ByteArray {
[]
}
}
impl ToBeBytes for u8 {
type ByteArray = [u8; 1];
fn written_len(&self) -> usize {
1
}
fn to_be_bytes(&self) -> Self::ByteArray {
u8::to_be_bytes(*self)
}
}
impl ToBeBytes for u16 {
type ByteArray = [u8; 2];
fn written_len(&self) -> usize {
2
}
fn to_be_bytes(&self) -> Self::ByteArray {
u16::to_be_bytes(*self)
}
}
impl ToBeBytes for u32 {
type ByteArray = [u8; 4];
fn written_len(&self) -> usize {
4
}
fn to_be_bytes(&self) -> Self::ByteArray {
u32::to_be_bytes(*self)
}
}
impl ToBeBytes for u64 {
type ByteArray = [u8; 8];
fn written_len(&self) -> usize {
8
}
fn to_be_bytes(&self) -> Self::ByteArray {
u64::to_be_bytes(*self)
}
}
#[allow(clippy::len_without_is_empty)]
pub trait UnsignedEnum {
fn len(&self) -> usize;
fn write_to_be_bytes(&self, buf: &mut [u8]) -> Result<(), ByteConversionError>;
}
pub trait UnsignedEnumExt: UnsignedEnum + Debug + Copy + Clone + PartialEq + Eq {}
2023-05-14 23:56:26 +02:00
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum UnsignedByteFieldError {
/// Value is too large for specified width of byte field. The first value contains the width,
/// the second value contains the detected value.
ValueTooLargeForWidth((usize, u64)),
/// Only 1, 2, 4 and 8 are allow width values. Optionally contains the expected width if
/// applicable, for example for conversions.
InvalidWidth(usize, Option<usize>),
ByteConversionError(ByteConversionError),
}
impl From<ByteConversionError> for UnsignedByteFieldError {
fn from(value: ByteConversionError) -> Self {
Self::ByteConversionError(value)
}
}
impl Display for UnsignedByteFieldError {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
match self {
Self::ByteConversionError(e) => {
write!(f, "low level byte conversion error: {e}")
}
Self::InvalidWidth(val, _) => {
write!(f, "invalid width {val}, only 1, 2, 4 and 8 are allowed.")
}
Self::ValueTooLargeForWidth((width, value)) => {
write!(f, "value {value} too large for width {width}")
}
}
}
}
#[cfg(feature = "std")]
impl Error for UnsignedByteFieldError {}
2023-05-14 20:10:34 +02:00
/// Type erased variant.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct UnsignedByteField {
width: usize,
value: u64,
}
impl UnsignedByteField {
pub fn new(width: usize, value: u64) -> Self {
Self { width, value }
}
2023-05-29 01:29:04 +02:00
pub fn value(&self) -> u64 {
self.value
}
2023-05-14 23:56:26 +02:00
pub fn new_from_be_bytes(width: usize, buf: &[u8]) -> Result<Self, UnsignedByteFieldError> {
2023-05-14 20:10:34 +02:00
if width > buf.len() {
return Err(ByteConversionError::FromSliceTooSmall(SizeMissmatch {
expected: width,
2023-05-15 00:11:41 +02:00
found: buf.len(),
2023-05-14 23:56:26 +02:00
})
.into());
2023-05-14 20:10:34 +02:00
}
match width {
2023-05-14 23:56:26 +02:00
0 => Ok(Self::new(width, 0)),
1 => Ok(Self::new(width, buf[0] as u64)),
2023-05-14 20:10:34 +02:00
2 => Ok(Self::new(
2023-05-14 23:56:26 +02:00
width,
2023-05-14 20:10:34 +02:00
u16::from_be_bytes(buf[0..2].try_into().unwrap()) as u64,
)),
4 => Ok(Self::new(
2023-05-14 23:56:26 +02:00
width,
2023-05-14 20:10:34 +02:00
u32::from_be_bytes(buf[0..4].try_into().unwrap()) as u64,
)),
8 => Ok(Self::new(
2023-05-14 23:56:26 +02:00
width,
2023-05-14 20:10:34 +02:00
u64::from_be_bytes(buf[0..8].try_into().unwrap()),
)),
2023-05-14 23:56:26 +02:00
_ => Err(UnsignedByteFieldError::InvalidWidth(width, None)),
2023-05-14 20:10:34 +02:00
}
}
}
impl UnsignedEnum for UnsignedByteField {
fn len(&self) -> usize {
self.width
}
fn write_to_be_bytes(&self, buf: &mut [u8]) -> Result<(), ByteConversionError> {
if buf.len() < self.len() {
return Err(ByteConversionError::ToSliceTooSmall(SizeMissmatch {
expected: self.len(),
found: buf.len(),
}));
}
match self.len() {
0 => Ok(()),
1 => {
2023-05-18 13:32:45 +02:00
let u8 = UnsignedByteFieldU8::try_from(*self).unwrap();
2023-05-14 20:10:34 +02:00
u8.write_to_be_bytes(buf)
}
2 => {
2023-05-18 13:32:45 +02:00
let u16 = UnsignedByteFieldU16::try_from(*self).unwrap();
2023-05-14 20:10:34 +02:00
u16.write_to_be_bytes(buf)
}
4 => {
2023-05-18 13:32:45 +02:00
let u32 = UnsignedByteFieldU32::try_from(*self).unwrap();
2023-05-14 20:10:34 +02:00
u32.write_to_be_bytes(buf)
}
8 => {
2023-05-18 13:32:45 +02:00
let u64 = UnsignedByteFieldU64::try_from(*self).unwrap();
2023-05-14 20:10:34 +02:00
u64.write_to_be_bytes(buf)
}
_ => {
// The API does not allow this.
panic!("unexpected written length");
}
}
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct GenericUnsignedByteField<TYPE> {
2023-05-14 23:56:26 +02:00
value: TYPE,
2023-05-14 20:10:34 +02:00
}
impl<TYPE> GenericUnsignedByteField<TYPE> {
pub fn new(val: TYPE) -> Self {
2023-05-14 23:56:26 +02:00
Self { value: val }
2023-05-14 20:10:34 +02:00
}
}
impl<TYPE: ToBeBytes> UnsignedEnum for GenericUnsignedByteField<TYPE> {
fn len(&self) -> usize {
2023-05-14 23:56:26 +02:00
self.value.written_len()
2023-05-14 20:10:34 +02:00
}
fn write_to_be_bytes(&self, buf: &mut [u8]) -> Result<(), ByteConversionError> {
if buf.len() < self.len() {
return Err(ByteConversionError::ToSliceTooSmall(SizeMissmatch {
found: buf.len(),
expected: self.len(),
}));
}
2023-05-14 23:56:26 +02:00
buf[0..self.len()].copy_from_slice(self.value.to_be_bytes().as_ref());
2023-05-14 20:10:34 +02:00
Ok(())
}
}
pub type UnsignedByteFieldEmpty = GenericUnsignedByteField<()>;
2023-05-18 13:32:45 +02:00
pub type UnsignedByteFieldU8 = GenericUnsignedByteField<u8>;
pub type UnsignedByteFieldU16 = GenericUnsignedByteField<u16>;
pub type UnsignedByteFieldU32 = GenericUnsignedByteField<u32>;
pub type UnsignedByteFieldU64 = GenericUnsignedByteField<u64>;
pub type UbfU8 = UnsignedByteFieldU8;
pub type UbfU16 = UnsignedByteFieldU16;
pub type UbfU32 = UnsignedByteFieldU32;
pub type UbfU64 = UnsignedByteFieldU64;
impl From<UnsignedByteFieldU8> for UnsignedByteField {
fn from(value: UnsignedByteFieldU8) -> Self {
2023-05-14 23:56:26 +02:00
Self::new(1, value.value as u64)
2023-05-14 20:10:34 +02:00
}
}
2023-05-18 13:32:45 +02:00
impl TryFrom<UnsignedByteField> for UnsignedByteFieldU8 {
2023-05-14 23:56:26 +02:00
type Error = UnsignedByteFieldError;
2023-05-14 20:10:34 +02:00
2023-05-14 23:56:26 +02:00
fn try_from(value: UnsignedByteField) -> Result<Self, Self::Error> {
if value.width != 1 {
return Err(UnsignedByteFieldError::InvalidWidth(value.width, Some(1)));
2023-05-14 20:10:34 +02:00
}
Ok(Self::new(value.value as u8))
}
}
2023-05-18 13:32:45 +02:00
impl From<UnsignedByteFieldU16> for UnsignedByteField {
fn from(value: UnsignedByteFieldU16) -> Self {
2023-05-14 23:56:26 +02:00
Self::new(2, value.value as u64)
2023-05-14 20:10:34 +02:00
}
}
2023-05-18 13:32:45 +02:00
impl TryFrom<UnsignedByteField> for UnsignedByteFieldU16 {
2023-05-14 23:56:26 +02:00
type Error = UnsignedByteFieldError;
2023-05-14 20:10:34 +02:00
2023-05-14 23:56:26 +02:00
fn try_from(value: UnsignedByteField) -> Result<Self, Self::Error> {
if value.width != 2 {
return Err(UnsignedByteFieldError::InvalidWidth(value.width, Some(2)));
2023-05-14 20:10:34 +02:00
}
Ok(Self::new(value.value as u16))
}
}
2023-05-18 13:32:45 +02:00
impl From<UnsignedByteFieldU32> for UnsignedByteField {
fn from(value: UnsignedByteFieldU32) -> Self {
2023-05-14 23:56:26 +02:00
Self::new(4, value.value as u64)
2023-05-14 20:10:34 +02:00
}
}
2023-05-18 13:32:45 +02:00
impl TryFrom<UnsignedByteField> for UnsignedByteFieldU32 {
2023-05-14 23:56:26 +02:00
type Error = UnsignedByteFieldError;
2023-05-14 20:10:34 +02:00
2023-05-14 23:56:26 +02:00
fn try_from(value: UnsignedByteField) -> Result<Self, Self::Error> {
if value.width != 4 {
return Err(UnsignedByteFieldError::InvalidWidth(value.width, Some(4)));
2023-05-14 20:10:34 +02:00
}
Ok(Self::new(value.value as u32))
}
}
2023-05-18 13:32:45 +02:00
impl From<UnsignedByteFieldU64> for UnsignedByteField {
fn from(value: UnsignedByteFieldU64) -> Self {
2023-05-14 23:56:26 +02:00
Self::new(8, value.value)
2023-05-14 20:10:34 +02:00
}
}
2023-05-18 13:32:45 +02:00
impl TryFrom<UnsignedByteField> for UnsignedByteFieldU64 {
2023-05-14 23:56:26 +02:00
type Error = UnsignedByteFieldError;
2023-05-14 20:10:34 +02:00
2023-05-14 23:56:26 +02:00
fn try_from(value: UnsignedByteField) -> Result<Self, Self::Error> {
if value.width != 8 {
return Err(UnsignedByteFieldError::InvalidWidth(value.width, Some(8)));
2023-05-14 20:10:34 +02:00
}
Ok(Self::new(value.value))
}
}
2023-05-14 23:56:26 +02:00
#[cfg(test)]
pub mod tests {
use crate::util::{
2023-05-18 13:32:45 +02:00
UnsignedByteField, UnsignedByteFieldError, UnsignedByteFieldU16, UnsignedByteFieldU32,
UnsignedByteFieldU64, UnsignedByteFieldU8, UnsignedEnum,
2023-05-14 23:56:26 +02:00
};
2023-05-15 00:11:41 +02:00
use crate::ByteConversionError;
2023-05-14 23:56:26 +02:00
use std::format;
#[test]
fn test_simple_u8() {
2023-05-18 13:32:45 +02:00
let u8 = UnsignedByteFieldU8::new(5);
2023-05-14 23:56:26 +02:00
assert_eq!(u8.len(), 1);
let mut buf: [u8; 8] = [0; 8];
u8.write_to_be_bytes(&mut buf)
.expect("writing to raw buffer failed");
assert_eq!(buf[0], 5);
for i in 1..8 {
assert_eq!(buf[i], 0);
}
}
#[test]
fn test_simple_u16() {
2023-05-18 13:32:45 +02:00
let u16 = UnsignedByteFieldU16::new(3823);
2023-05-14 23:56:26 +02:00
assert_eq!(u16.len(), 2);
let mut buf: [u8; 8] = [0; 8];
u16.write_to_be_bytes(&mut buf)
.expect("writing to raw buffer failed");
let raw_val = u16::from_be_bytes(buf[0..2].try_into().unwrap());
assert_eq!(raw_val, 3823);
for i in 2..8 {
assert_eq!(buf[i], 0);
}
}
#[test]
fn test_simple_u32() {
2023-05-18 13:32:45 +02:00
let u32 = UnsignedByteFieldU32::new(80932);
2023-05-14 23:56:26 +02:00
assert_eq!(u32.len(), 4);
let mut buf: [u8; 8] = [0; 8];
u32.write_to_be_bytes(&mut buf)
.expect("writing to raw buffer failed");
let raw_val = u32::from_be_bytes(buf[0..4].try_into().unwrap());
assert_eq!(raw_val, 80932);
for i in 4..8 {
assert_eq!(buf[i], 0);
}
}
#[test]
fn test_simple_u64() {
2023-05-18 13:32:45 +02:00
let u64 = UnsignedByteFieldU64::new(5999999);
2023-05-14 23:56:26 +02:00
assert_eq!(u64.len(), 8);
let mut buf: [u8; 8] = [0; 8];
u64.write_to_be_bytes(&mut buf)
.expect("writing to raw buffer failed");
let raw_val = u64::from_be_bytes(buf[0..8].try_into().unwrap());
assert_eq!(raw_val, 5999999);
}
#[test]
fn conversions_u8() {
2023-05-18 13:32:45 +02:00
let u8 = UnsignedByteFieldU8::new(5);
2023-05-14 23:56:26 +02:00
let u8_type_erased = UnsignedByteField::from(u8);
assert_eq!(u8_type_erased.width, 1);
assert_eq!(u8_type_erased.value, 5);
2023-05-18 13:32:45 +02:00
let u8_conv_back =
UnsignedByteFieldU8::try_from(u8_type_erased).expect("conversion failed for u8");
2023-05-14 23:56:26 +02:00
assert_eq!(u8, u8_conv_back);
assert_eq!(u8_conv_back.value, 5);
}
#[test]
fn conversion_u8_fails() {
let field = UnsignedByteField::new(2, 60000);
2023-05-18 13:32:45 +02:00
let conv_fails = UnsignedByteFieldU8::try_from(field);
2023-05-14 23:56:26 +02:00
assert!(conv_fails.is_err());
let err = conv_fails.unwrap_err();
match err {
UnsignedByteFieldError::InvalidWidth(width, Some(expected)) => {
assert_eq!(width, 2);
assert_eq!(expected, 1);
}
_ => {
panic!("{}", format!("invalid error {err}"))
}
}
}
#[test]
fn conversions_u16() {
2023-05-18 13:32:45 +02:00
let u16 = UnsignedByteFieldU16::new(64444);
2023-05-14 23:56:26 +02:00
let u16_type_erased = UnsignedByteField::from(u16);
assert_eq!(u16_type_erased.width, 2);
assert_eq!(u16_type_erased.value, 64444);
let u16_conv_back =
2023-05-18 13:32:45 +02:00
UnsignedByteFieldU16::try_from(u16_type_erased).expect("conversion failed for u16");
2023-05-14 23:56:26 +02:00
assert_eq!(u16, u16_conv_back);
assert_eq!(u16_conv_back.value, 64444);
}
#[test]
fn conversion_u16_fails() {
let field = UnsignedByteField::new(4, 75000);
2023-05-18 13:32:45 +02:00
let conv_fails = UnsignedByteFieldU16::try_from(field);
2023-05-14 23:56:26 +02:00
assert!(conv_fails.is_err());
let err = conv_fails.unwrap_err();
match err {
UnsignedByteFieldError::InvalidWidth(width, Some(expected)) => {
assert_eq!(width, 4);
assert_eq!(expected, 2);
}
_ => {
panic!("{}", format!("invalid error {err}"))
}
}
}
#[test]
fn conversions_u32() {
2023-05-18 13:32:45 +02:00
let u32 = UnsignedByteFieldU32::new(75000);
2023-05-14 23:56:26 +02:00
let u32_type_erased = UnsignedByteField::from(u32);
assert_eq!(u32_type_erased.width, 4);
assert_eq!(u32_type_erased.value, 75000);
let u32_conv_back =
2023-05-18 13:32:45 +02:00
UnsignedByteFieldU32::try_from(u32_type_erased).expect("conversion failed for u32");
2023-05-14 23:56:26 +02:00
assert_eq!(u32, u32_conv_back);
assert_eq!(u32_conv_back.value, 75000);
}
#[test]
fn conversion_u32_fails() {
let field = UnsignedByteField::new(8, 75000);
2023-05-18 13:32:45 +02:00
let conv_fails = UnsignedByteFieldU32::try_from(field);
2023-05-14 23:56:26 +02:00
assert!(conv_fails.is_err());
let err = conv_fails.unwrap_err();
match err {
UnsignedByteFieldError::InvalidWidth(width, Some(expected)) => {
assert_eq!(width, 8);
assert_eq!(expected, 4);
}
_ => {
panic!("{}", format!("invalid error {err}"))
}
}
}
#[test]
fn conversions_u64() {
2023-05-18 13:32:45 +02:00
let u64 = UnsignedByteFieldU64::new(5999999);
2023-05-14 23:56:26 +02:00
let u64_type_erased = UnsignedByteField::from(u64);
assert_eq!(u64_type_erased.width, 8);
assert_eq!(u64_type_erased.value, 5999999);
let u64_conv_back =
2023-05-18 13:32:45 +02:00
UnsignedByteFieldU64::try_from(u64_type_erased).expect("conversion failed for u64");
2023-05-14 23:56:26 +02:00
assert_eq!(u64, u64_conv_back);
assert_eq!(u64_conv_back.value, 5999999);
}
#[test]
fn conversion_u64_fails() {
let field = UnsignedByteField::new(4, 60000);
2023-05-18 13:32:45 +02:00
let conv_fails = UnsignedByteFieldU64::try_from(field);
2023-05-14 23:56:26 +02:00
assert!(conv_fails.is_err());
let err = conv_fails.unwrap_err();
match err {
UnsignedByteFieldError::InvalidWidth(width, Some(expected)) => {
assert_eq!(width, 4);
assert_eq!(expected, 8);
}
_ => {
panic!("{}", format!("invalid error {err}"))
}
}
}
#[test]
fn type_erased_u8_write() {
let u8 = UnsignedByteField::new(1, 5);
assert_eq!(u8.len(), 1);
let mut buf: [u8; 8] = [0; 8];
u8.write_to_be_bytes(&mut buf)
.expect("writing to raw buffer failed");
assert_eq!(buf[0], 5);
for i in 1..8 {
assert_eq!(buf[i], 0);
}
}
#[test]
fn type_erased_u16_write() {
let u16 = UnsignedByteField::new(2, 3823);
assert_eq!(u16.len(), 2);
let mut buf: [u8; 8] = [0; 8];
u16.write_to_be_bytes(&mut buf)
.expect("writing to raw buffer failed");
let raw_val = u16::from_be_bytes(buf[0..2].try_into().unwrap());
assert_eq!(raw_val, 3823);
for i in 2..8 {
assert_eq!(buf[i], 0);
}
}
#[test]
fn type_erased_u32_write() {
let u32 = UnsignedByteField::new(4, 80932);
assert_eq!(u32.len(), 4);
let mut buf: [u8; 8] = [0; 8];
u32.write_to_be_bytes(&mut buf)
.expect("writing to raw buffer failed");
let raw_val = u32::from_be_bytes(buf[0..4].try_into().unwrap());
assert_eq!(raw_val, 80932);
for i in 4..8 {
assert_eq!(buf[i], 0);
}
}
#[test]
fn type_erased_u64_write() {
let u64 = UnsignedByteField::new(8, 5999999);
assert_eq!(u64.len(), 8);
let mut buf: [u8; 8] = [0; 8];
u64.write_to_be_bytes(&mut buf)
.expect("writing to raw buffer failed");
let raw_val = u64::from_be_bytes(buf[0..8].try_into().unwrap());
assert_eq!(raw_val, 5999999);
}
#[test]
fn type_erased_u8_construction() {
let buf: [u8; 2] = [5, 10];
let u8 = UnsignedByteField::new_from_be_bytes(1, &buf).expect("construction failed");
assert_eq!(u8.width, 1);
assert_eq!(u8.value, 5);
}
#[test]
fn type_erased_u16_construction() {
let buf: [u8; 2] = [0x10, 0x15];
let u16 = UnsignedByteField::new_from_be_bytes(2, &buf).expect("construction failed");
assert_eq!(u16.width, 2);
assert_eq!(u16.value, 0x1015);
}
#[test]
fn type_erased_u32_construction() {
let buf: [u8; 4] = [0x01, 0x02, 0x03, 0x04];
let u32 = UnsignedByteField::new_from_be_bytes(4, &buf).expect("construction failed");
assert_eq!(u32.width, 4);
assert_eq!(u32.value, 0x01020304);
}
#[test]
fn type_erased_u64_construction() {
let buf: [u8; 8] = [0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08];
let u64 = UnsignedByteField::new_from_be_bytes(8, &buf).expect("construction failed");
assert_eq!(u64.width, 8);
assert_eq!(u64.value, 0x0102030405060708);
}
2023-05-15 00:11:41 +02:00
#[test]
fn type_u16_target_buf_too_small() {
2023-05-18 13:32:45 +02:00
let u16 = UnsignedByteFieldU16::new(500);
2023-05-15 00:11:41 +02:00
let mut buf: [u8; 1] = [0; 1];
let res = u16.write_to_be_bytes(&mut buf);
assert!(res.is_err());
let err = res.unwrap_err();
match err {
ByteConversionError::ToSliceTooSmall(missmatch) => {
assert_eq!(missmatch.found, 1);
assert_eq!(missmatch.expected, 2);
}
_ => {
panic!("invalid exception")
}
}
}
#[test]
fn type_erased_u16_target_buf_too_small() {
let u16 = UnsignedByteField::new(2, 500);
let mut buf: [u8; 1] = [0; 1];
let res = u16.write_to_be_bytes(&mut buf);
assert!(res.is_err());
let err = res.unwrap_err();
match err {
ByteConversionError::ToSliceTooSmall(missmatch) => {
assert_eq!(missmatch.found, 1);
assert_eq!(missmatch.expected, 2);
}
_ => {
panic!("invalid exception {}", err)
}
}
let u16 = UnsignedByteField::new_from_be_bytes(2, &buf);
assert!(u16.is_err());
let err = u16.unwrap_err();
if let UnsignedByteFieldError::ByteConversionError(
ByteConversionError::FromSliceTooSmall(missmatch),
) = err
{
assert_eq!(missmatch.expected, 2);
assert_eq!(missmatch.found, 1);
} else {
panic!("unexpected exception {}", err);
}
}
#[test]
fn type_u32_target_buf_too_small() {
2023-05-18 13:32:45 +02:00
let u16 = UnsignedByteFieldU32::new(500);
2023-05-15 00:11:41 +02:00
let mut buf: [u8; 3] = [0; 3];
let res = u16.write_to_be_bytes(&mut buf);
assert!(res.is_err());
let err = res.unwrap_err();
match err {
ByteConversionError::ToSliceTooSmall(missmatch) => {
assert_eq!(missmatch.found, 3);
assert_eq!(missmatch.expected, 4);
}
_ => {
panic!("invalid exception")
}
}
}
2023-05-14 23:56:26 +02:00
}