Fixed PartialEq implementation to PusTc struct #12

Merged
muellerr merged 5 commits from partial_eq_fix into main 2023-01-26 21:02:41 +01:00
Showing only changes of commit be1c97b75a - Show all commits

View File

@ -213,7 +213,7 @@ impl PusTcSecondaryHeader {
/// serde provider like [postcard](https://docs.rs/postcard/latest/postcard/). /// serde provider like [postcard](https://docs.rs/postcard/latest/postcard/).
/// ///
/// There is no spare bytes support yet. /// There is no spare bytes support yet.
#[derive(PartialEq, Eq, Copy, Clone, Debug)] #[derive(Eq, Copy, Clone, Debug)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct PusTc<'app_data> { pub struct PusTc<'app_data> {
sp_header: SpHeader, sp_header: SpHeader,
@ -440,6 +440,12 @@ impl<'app_data> PusTc<'app_data> {
} }
} }
impl PartialEq for PusTc<'_> {
fn eq(&self, other: &Self) -> bool {
self.sp_header == other.sp_header && self.sec_header == other.sec_header && self.app_data == other.app_data
}
}
//noinspection RsTraitImplementation //noinspection RsTraitImplementation
impl CcsdsPacket for PusTc<'_> { impl CcsdsPacket for PusTc<'_> {
ccsds_impl!(); ccsds_impl!();
@ -736,4 +742,20 @@ mod tests {
assert_eq!(slice[11], 0xee); assert_eq!(slice[11], 0xee);
assert_eq!(slice[12], 0x63); assert_eq!(slice[12], 0x63);
} }
#[test]
fn partial_eq_pus_tc() {
// new vs new simple
let pus_tc_1 = base_ping_tc_simple_ctor();
let pus_tc_2 = base_ping_tc_full_ctor();
assert_eq!(pus_tc_1, pus_tc_2);
}
#[test]
fn partial_eq_serialized_vs_derialized() {
let pus_tc = base_ping_tc_simple_ctor();
let mut buf = [0; 32];
let size = pus_tc.write_to_bytes(&mut buf).unwrap();
assert_eq!(pus_tc, PusTc::from_bytes(&buf).unwrap().0);
}
} }