// Copyright (c) 2017 Maxime “pep” Buquet // Copyright (c) 2017 Emmanuel Gil Peyrot // // 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/. use presence::PresencePayload; use date::DateTime; generate_element!( /// Represents the query for messages before our join. History, "history", MUC, attributes: [ /// How many characters of history to send, in XML characters. maxchars: Option = "maxchars" => optional, /// How many messages to send. maxstanzas: Option = "maxstanzas" => optional, /// Only send messages received in these last seconds. seconds: Option = "seconds" => optional, /// Only send messages after this date. since: Option = "since" => optional, ] ); generate_element!( /// Represents a room join request. Muc, "x", MUC, children: [ /// Password to use when the room is protected by a password. password: Option = ("password", MUC) => String, /// Controls how much and how old we want to receive history on join. history: Option = ("history", MUC) => History ] ); impl PresencePayload for Muc {} #[cfg(test)] mod tests { use super::*; use try_from::TryFrom; use minidom::Element; use error::Error; use std::str::FromStr; use compare_elements::NamespaceAwareCompare; #[test] fn test_muc_simple() { let elem: Element = "".parse().unwrap(); Muc::try_from(elem).unwrap(); } #[test] fn test_muc_invalid_child() { let elem: Element = "".parse().unwrap(); let error = Muc::try_from(elem).unwrap_err(); let message = match error { Error::ParseError(string) => string, _ => panic!(), }; assert_eq!(message, "Unknown child in x element."); } #[test] fn test_muc_serialise() { let elem: Element = "".parse().unwrap(); let muc = Muc { password: None, history: None, }; let elem2 = muc.into(); assert_eq!(elem, elem2); } #[test] fn test_muc_invalid_attribute() { let elem: Element = "".parse().unwrap(); let error = Muc::try_from(elem).unwrap_err(); let message = match error { Error::ParseError(string) => string, _ => panic!(), }; assert_eq!(message, "Unknown attribute in x element."); } #[test] fn test_muc_simple_password() { let elem: Element = " coucou " .parse().unwrap(); let elem1 = elem.clone(); let muc = Muc::try_from(elem).unwrap(); assert_eq!(muc.password, Some("coucou".to_owned())); let elem2 = Element::from(muc); assert!(elem1.compare_to(&elem2)); } #[test] fn history() { let elem: Element = " " .parse().unwrap(); let muc = Muc::try_from(elem).unwrap(); let history = muc.history.unwrap(); assert_eq!(history.maxstanzas, Some(0)); assert_eq!(history.maxchars, None); assert_eq!(history.seconds, None); assert_eq!(history.since, None); let elem: Element = " " .parse().unwrap(); let muc = Muc::try_from(elem).unwrap(); assert_eq!(muc.history.unwrap().since.unwrap(), DateTime::from_str("1970-01-01T00:00:00+00:00").unwrap()); } }