mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
jid: Test for the size of our structs
This shows how big JIDs are represented on the stack and in other structs.
This commit is contained in:
parent
17335136fe
commit
a7dee0bef4
1 changed files with 22 additions and 0 deletions
|
@ -769,6 +769,28 @@ mod tests {
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
|
|
||||||
|
macro_rules! assert_size (
|
||||||
|
($t:ty, $sz:expr) => (
|
||||||
|
assert_eq!(::std::mem::size_of::<$t>(), $sz);
|
||||||
|
);
|
||||||
|
);
|
||||||
|
|
||||||
|
#[cfg(target_pointer_width = "32")]
|
||||||
|
#[test]
|
||||||
|
fn test_size() {
|
||||||
|
assert_size!(BareJid, 24);
|
||||||
|
assert_size!(FullJid, 36);
|
||||||
|
assert_size!(Jid, 36);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(target_pointer_width = "64")]
|
||||||
|
#[test]
|
||||||
|
fn test_size() {
|
||||||
|
assert_size!(BareJid, 48);
|
||||||
|
assert_size!(FullJid, 72);
|
||||||
|
assert_size!(Jid, 72);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn can_parse_full_jids() {
|
fn can_parse_full_jids() {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
|
|
Loading…
Reference in a new issue