tests: minor restructuring

This commit is contained in:
Kedar Sovani 2023-01-06 22:15:01 +05:30
parent 5c87798232
commit ebe2e979f5
6 changed files with 65 additions and 62 deletions

View file

@ -71,7 +71,7 @@ pub mod msg {
tlv::{FromTLV, TLVArray, TLVElement, TLVWriter, TagType, ToTLV}, tlv::{FromTLV, TLVArray, TLVElement, TLVWriter, TagType, ToTLV},
}; };
use super::ib::{AttrData, AttrPath, AttrResp, CmdData, DataVersionFilter}; use super::ib::{self, AttrData, AttrPath, AttrResp, AttrStatus, CmdData, DataVersionFilter};
#[derive(FromTLV, ToTLV)] #[derive(FromTLV, ToTLV)]
pub struct TimedReq { pub struct TimedReq {
@ -83,6 +83,12 @@ pub mod msg {
pub status: IMStatusCode, pub status: IMStatusCode,
} }
pub enum InvReqTag {
SupressResponse = 0,
TimedReq = 1,
InvokeRequests = 2,
}
#[derive(FromTLV, ToTLV)] #[derive(FromTLV, ToTLV)]
#[tlvargs(lifetime = "'a")] #[tlvargs(lifetime = "'a")]
pub struct InvReq<'a> { pub struct InvReq<'a> {
@ -91,15 +97,18 @@ pub mod msg {
pub inv_requests: Option<TLVArray<'a, CmdData<'a>>>, pub inv_requests: Option<TLVArray<'a, CmdData<'a>>>,
} }
// This enum is helpful when we are constructing the response
// step by step in incremental manner
pub enum InvRespTag { pub enum InvRespTag {
SupressResponse = 0, SupressResponse = 0,
InvokeResponses = 1, InvokeResponses = 1,
} }
pub enum InvReqTag { #[derive(FromTLV, ToTLV, Debug)]
SupressResponse = 0, #[tlvargs(lifetime = "'a")]
TimedReq = 1, pub struct InvResp<'a> {
InvokeRequests = 2, pub suppress_response: Option<bool>,
pub inv_responses: Option<TLVArray<'a, ib::InvResp<'a>>>,
} }
#[derive(Default, ToTLV, FromTLV)] #[derive(Default, ToTLV, FromTLV)]
@ -171,6 +180,12 @@ pub mod msg {
} }
// Write Response // Write Response
#[derive(ToTLV, FromTLV)]
#[tlvargs(lifetime = "'a")]
pub struct WriteResp<'a> {
pub write_responses: TLVArray<'a, AttrStatus>,
}
pub enum WriteRespTag { pub enum WriteRespTag {
WriteResponses = 0, WriteResponses = 0,
} }
@ -190,7 +205,7 @@ pub mod ib {
use super::GenericPath; use super::GenericPath;
// Command Response // Command Response
#[derive(Clone, Copy, FromTLV, ToTLV)] #[derive(Clone, Copy, FromTLV, ToTLV, Debug)]
#[tlvargs(lifetime = "'a")] #[tlvargs(lifetime = "'a")]
pub enum InvResp<'a> { pub enum InvResp<'a> {
Cmd(CmdData<'a>), Cmd(CmdData<'a>),

View file

@ -19,6 +19,7 @@ use super::{ElementType, TLVContainerIterator, TLVElement, TLVWriter, TagType};
use crate::error::Error; use crate::error::Error;
use core::slice::Iter; use core::slice::Iter;
use log::error; use log::error;
use std::fmt::Debug;
pub trait FromTLV<'a> { pub trait FromTLV<'a> {
fn from_tlv(t: &TLVElement<'a>) -> Result<Self, Error> fn from_tlv(t: &TLVElement<'a>) -> Result<Self, Error>
@ -282,6 +283,7 @@ impl<T> TLVArrayOwned<T> {
} }
} }
#[derive(Copy, Clone)]
pub enum TLVArray<'a, T> { pub enum TLVArray<'a, T> {
// This is used for the to-tlv path // This is used for the to-tlv path
Slice(&'a [T]), Slice(&'a [T]),
@ -342,6 +344,27 @@ impl<'a, T: FromTLV<'a> + Copy> Iterator for TLVArrayIter<'a, T> {
} }
} }
impl<'a, T> PartialEq<&[T]> for TLVArray<'a, T>
where
T: ToTLV + FromTLV<'a> + Copy + PartialEq,
{
fn eq(&self, other: &&[T]) -> bool {
let mut iter1 = self.iter();
let mut iter2 = other.into_iter();
loop {
match (iter1.next(), iter2.next()) {
(None, None) => return true,
(Some(x), Some(y)) => {
if x != *y {
return false;
}
}
_ => return false,
}
}
}
}
impl<'a, T: ToTLV> ToTLV for TLVArray<'a, T> { impl<'a, T: ToTLV> ToTLV for TLVArray<'a, T> {
fn to_tlv(&self, tw: &mut TLVWriter, tag_type: TagType) -> Result<(), Error> { fn to_tlv(&self, tw: &mut TLVWriter, tag_type: TagType) -> Result<(), Error> {
match *self { match *self {
@ -364,6 +387,15 @@ impl<'a, T> FromTLV<'a> for TLVArray<'a, T> {
} }
} }
impl<'a, T: Debug + ToTLV + FromTLV<'a> + Copy> Debug for TLVArray<'a, T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
for i in self.iter() {
writeln!(f, "{:?}", i)?;
}
writeln!(f, "")
}
}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::{FromTLV, OctetStr, TLVElement, TLVWriter, TagType, ToTLV}; use super::{FromTLV, OctetStr, TLVElement, TLVWriter, TagType, ToTLV};

View file

@ -21,6 +21,7 @@ use matter::interaction_model::{messages::ib::AttrResp, messages::msg::ReportDat
pub fn assert_attr_report(received: &ReportDataMsg, expected: &[AttrResp]) { pub fn assert_attr_report(received: &ReportDataMsg, expected: &[AttrResp]) {
let mut index = 0; let mut index = 0;
// We can't use assert_eq because it will also try to match data-version
for inv_response in received.attr_reports.as_ref().unwrap().iter() { for inv_response in received.attr_reports.as_ref().unwrap().iter() {
println!("Validating index {}", index); println!("Validating index {}", index);
match expected[index] { match expected[index] {
@ -34,14 +35,7 @@ pub fn assert_attr_report(received: &ReportDataMsg, expected: &[AttrResp]) {
panic!("Invalid response, expected AttrRespIn::Data"); panic!("Invalid response, expected AttrRespIn::Data");
} }
}, },
AttrResp::Status(e_s) => match inv_response { AttrResp::Status(s) => assert_eq!(AttrResp::Status(s), inv_response),
AttrResp::Status(s) => {
assert_eq!(e_s, s);
}
_ => {
panic!("Invalid response, expected AttrRespIn::Status");
}
},
} }
println!("Index {} success", index); println!("Index {} success", index);
index += 1; index += 1;

View file

@ -23,11 +23,11 @@ use matter::{
}, },
interaction_model::{ interaction_model::{
core::{IMStatusCode, OpCode}, core::{IMStatusCode, OpCode},
messages::GenericPath,
messages::{ messages::{
ib::{AttrData, AttrPath, AttrResp, AttrStatus}, ib::{AttrData, AttrPath, AttrResp, AttrStatus},
msg::{ReadReq, ReportDataMsg, WriteReq}, msg::{ReadReq, ReportDataMsg, WriteReq, WriteResp},
}, },
messages::{msg, GenericPath},
}, },
tlv::{self, ElementType, FromTLV, TLVElement, TLVList, TLVWriter, TagType, ToTLV}, tlv::{self, ElementType, FromTLV, TLVElement, TLVList, TLVWriter, TagType, ToTLV},
utils::writebuf::WriteBuf, utils::writebuf::WriteBuf,
@ -73,26 +73,10 @@ fn handle_write_reqs(input: &[AttrData], expected: &[AttrStatus]) -> DataModel {
write_req.to_tlv(&mut tw, TagType::Anonymous).unwrap(); write_req.to_tlv(&mut tw, TagType::Anonymous).unwrap();
let (dm, _, out_buf) = im_engine(OpCode::WriteRequest, wb.as_borrow_slice(), &mut out_buf); let (dm, _, out_buf) = im_engine(OpCode::WriteRequest, wb.as_borrow_slice(), &mut out_buf);
tlv::print_tlv_list(out_buf);
let root = tlv::get_root_node_struct(out_buf).unwrap(); let root = tlv::get_root_node_struct(out_buf).unwrap();
let response = WriteResp::from_tlv(&root).unwrap();
assert_eq!(response.write_responses, expected);
let mut index = 0;
let response_iter = root
.find_tag(msg::WriteRespTag::WriteResponses as u32)
.unwrap()
.confirm_array()
.unwrap()
.enter()
.unwrap();
for response in response_iter {
println!("Validating index {}", index);
let status = AttrStatus::from_tlv(&response).unwrap();
assert_eq!(expected[index], status);
println!("Index {} success", index);
index += 1;
}
assert_eq!(index, expected.len());
dm dm
} }

View file

@ -56,17 +56,10 @@ fn handle_commands(input: &[CmdData], expected: &[ExpectedInvResp]) {
tlv::print_tlv_list(out_buf); tlv::print_tlv_list(out_buf);
let root = tlv::get_root_node_struct(out_buf).unwrap(); let root = tlv::get_root_node_struct(out_buf).unwrap();
let resp = msg::InvResp::from_tlv(&root).unwrap();
let mut index = 0; let mut index = 0;
let cmd_list_iter = root for inv_response in resp.inv_responses.unwrap().iter() {
.find_tag(msg::InvRespTag::InvokeResponses as u32)
.unwrap()
.confirm_array()
.unwrap()
.enter()
.unwrap();
for response in cmd_list_iter {
println!("Validating index {}", index); println!("Validating index {}", index);
let inv_response = InvResp::from_tlv(&response).unwrap();
match expected[index] { match expected[index] {
ExpectedInvResp::Cmd(e_c, e_d) => match inv_response { ExpectedInvResp::Cmd(e_c, e_d) => match inv_response {
InvResp::Cmd(c) => { InvResp::Cmd(c) => {

View file

@ -25,11 +25,11 @@ use matter::{
}, },
interaction_model::{ interaction_model::{
core::{IMStatusCode, OpCode}, core::{IMStatusCode, OpCode},
messages::GenericPath,
messages::{ messages::{
ib::{AttrData, AttrPath, AttrStatus}, ib::{AttrData, AttrPath, AttrStatus},
msg::{StatusResp, TimedReq, WriteReq}, msg::{StatusResp, TimedReq, WriteReq, WriteResp},
}, },
messages::{msg, GenericPath},
}, },
tlv::{self, FromTLV, TLVWriter, TagType, ToTLV}, tlv::{self, FromTLV, TLVWriter, TagType, ToTLV},
transport::exchange::{self, Exchange}, transport::exchange::{self, Exchange},
@ -86,29 +86,14 @@ fn handle_timed_write_reqs(
tlv::print_tlv_list(out_buf); tlv::print_tlv_list(out_buf);
let root = tlv::get_root_node_struct(out_buf).unwrap(); let root = tlv::get_root_node_struct(out_buf).unwrap();
let mut index = 0;
match expected { match expected {
WriteResponse::TransactionSuccess(t) => { WriteResponse::TransactionSuccess(t) => {
assert_eq!( assert_eq!(
num::FromPrimitive::from_u8(resp_opcode), num::FromPrimitive::from_u8(resp_opcode),
Some(OpCode::WriteResponse) Some(OpCode::WriteResponse)
); );
let response_iter = root let resp = WriteResp::from_tlv(&root).unwrap();
.find_tag(msg::WriteRespTag::WriteResponses as u32) assert_eq!(resp.write_responses, t);
.unwrap()
.confirm_array()
.unwrap()
.enter()
.unwrap();
for response in response_iter {
println!("Validating index {}", index);
let status = AttrStatus::from_tlv(&response).unwrap();
assert_eq!(t[index], status);
println!("Index {} success", index);
index += 1;
}
assert_eq!(index, t.len());
} }
WriteResponse::TransactionError => { WriteResponse::TransactionError => {
assert_eq!( assert_eq!(