From 611c09a8a2df625d6aee0eecbac2813b635274d2 Mon Sep 17 00:00:00 2001 From: Werner Kroneman Date: Sat, 3 Feb 2024 23:23:04 +0100 Subject: [PATCH] Added jingle_thumbnails module. --- parsers/src/jingle_thumnails.rs | 50 +++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 parsers/src/jingle_thumnails.rs diff --git a/parsers/src/jingle_thumnails.rs b/parsers/src/jingle_thumnails.rs new file mode 100644 index 0000000..c8456c6 --- /dev/null +++ b/parsers/src/jingle_thumnails.rs @@ -0,0 +1,50 @@ +//! Jingle thumbnails (XEP-0264) + +// Copyright (c) 2023 XMPP-RS contributors.= +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, you can obtain one at http://mozilla.org/MPL/2.0/. + +generate_element!( + /// A Jingle thumbnail. + Thumbnail, "thumbnail", JINGLE_THUMBNAILS, + attributes: [ + /// The URI of the thumbnail. + uri: Required = "uri", + /// The media type of the thumbnail. + media_type: Required = "media-type", + /// The width of the thumbnail. + width: Required = "width", + /// The height of the thumbnail. + height: Required = "height", + ] +); + +#[cfg(test)] +mod tests { + use crate::jingle_thumnails::Thumbnail; + use minidom::Element; + + #[test] + fn test_simple_parse() { + // Extracted from https://xmpp.org/extensions/xep-0264.html#example-1 + let test_xml = ""; + + let elem: Element = test_xml.parse().unwrap(); + + let thumbnail = Thumbnail::try_from(elem).unwrap(); + + assert_eq!( + thumbnail.uri, + "cid:sha1+ffd7c8d28e9c5e82afea41f97108c6b4@bob.xmpp.org" + ); + assert_eq!(thumbnail.media_type, "image/png"); + assert_eq!(thumbnail.width, 128); + assert_eq!(thumbnail.height, 96); + } +}