2022-05-05 10:40:07 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
|
2023-01-03 18:58:25 +00:00
|
|
|
use glib::{
|
2024-02-03 08:13:51 +00:00
|
|
|
prelude::*,
|
2023-01-03 18:58:25 +00:00
|
|
|
translate::{from_glib, ToGlibPtr},
|
2024-02-03 08:13:51 +00:00
|
|
|
FlagsClass,
|
2023-01-03 18:58:25 +00:00
|
|
|
};
|
2022-05-05 10:40:07 +00:00
|
|
|
use gst::bitflags_serde_impl;
|
|
|
|
|
|
|
|
bitflags_serde_impl!(crate::DiscovererSerializeFlags);
|
|
|
|
bitflags_serde_impl!(crate::PbUtilsCapsDescriptionFlags, "v1_20");
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
macro_rules! check_serialize {
|
|
|
|
($flags:expr, $expected:expr) => {
|
|
|
|
let actual = serde_json::to_string(&$flags).unwrap();
|
|
|
|
assert_eq!(actual, $expected);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! check_deserialize {
|
|
|
|
($ty:ty, $expected:expr, $json:expr) => {
|
|
|
|
let actual: $ty = serde_json::from_str(&$json).unwrap();
|
|
|
|
assert_eq!(actual, $expected);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! check_roundtrip {
|
|
|
|
($ty:ty, $flags:expr) => {
|
|
|
|
let json = serde_json::to_string(&$flags).unwrap();
|
|
|
|
let deserialized: $ty = serde_json::from_str(&json).unwrap();
|
|
|
|
assert_eq!(deserialized, $flags);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serialize() {
|
|
|
|
gst::init().unwrap();
|
|
|
|
|
|
|
|
check_serialize!(crate::DiscovererSerializeFlags::all(), "\"caps+tags+misc\"");
|
2022-06-30 09:42:37 +00:00
|
|
|
#[cfg(feature = "v1_22")]
|
|
|
|
check_serialize!(
|
|
|
|
crate::PbUtilsCapsDescriptionFlags::all(),
|
|
|
|
"\"container+audio+video+image+subtitle+tag+generic+metadata\""
|
|
|
|
);
|
|
|
|
#[cfg(all(feature = "v1_20", not(feature = "v1_22")))]
|
2022-05-05 10:40:07 +00:00
|
|
|
check_serialize!(
|
|
|
|
crate::PbUtilsCapsDescriptionFlags::all(),
|
|
|
|
"\"container+audio+video+image+subtitle+tag+generic\""
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_deserialize() {
|
|
|
|
gst::init().unwrap();
|
|
|
|
|
|
|
|
check_deserialize!(
|
|
|
|
crate::DiscovererSerializeFlags,
|
|
|
|
crate::DiscovererSerializeFlags::all(),
|
|
|
|
"\"caps+tags+misc\""
|
|
|
|
);
|
2022-06-30 09:42:37 +00:00
|
|
|
#[cfg(feature = "v1_22")]
|
|
|
|
check_deserialize!(
|
|
|
|
crate::PbUtilsCapsDescriptionFlags,
|
|
|
|
crate::PbUtilsCapsDescriptionFlags::all(),
|
|
|
|
"\"container+audio+video+image+subtitle+tag+generic+metadata\""
|
|
|
|
);
|
|
|
|
#[cfg(all(feature = "v1_20", not(feature = "v1_22")))]
|
2022-05-05 10:40:07 +00:00
|
|
|
check_deserialize!(
|
|
|
|
crate::PbUtilsCapsDescriptionFlags,
|
|
|
|
crate::PbUtilsCapsDescriptionFlags::all(),
|
|
|
|
"\"container+audio+video+image+subtitle+tag+generic\""
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serde_roundtrip() {
|
|
|
|
gst::init().unwrap();
|
|
|
|
|
|
|
|
check_roundtrip!(
|
|
|
|
crate::DiscovererSerializeFlags,
|
|
|
|
crate::DiscovererSerializeFlags::all()
|
|
|
|
);
|
|
|
|
#[cfg(feature = "v1_20")]
|
|
|
|
check_roundtrip!(
|
|
|
|
crate::PbUtilsCapsDescriptionFlags,
|
|
|
|
crate::PbUtilsCapsDescriptionFlags::all()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|