2017-05-01 00:24:45 +00:00
|
|
|
|
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
|
|
|
|
//
|
|
|
|
|
// 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/.
|
|
|
|
|
|
2019-01-13 11:39:51 +00:00
|
|
|
|
use crate::util::error::Error;
|
2018-12-18 14:27:30 +00:00
|
|
|
|
use crate::message::MessagePayload;
|
2018-12-18 14:32:05 +00:00
|
|
|
|
use crate::ns;
|
2018-12-18 14:27:30 +00:00
|
|
|
|
use crate::presence::PresencePayload;
|
2017-05-01 00:24:45 +00:00
|
|
|
|
use jid::Jid;
|
2018-12-18 15:07:46 +00:00
|
|
|
|
use minidom::Element;
|
|
|
|
|
use std::collections::BTreeMap;
|
|
|
|
|
use try_from::TryFrom;
|
2017-05-01 00:24:45 +00:00
|
|
|
|
|
2018-09-19 19:26:21 +00:00
|
|
|
|
generate_attribute!(
|
|
|
|
|
/// The type of the error.
|
|
|
|
|
ErrorType, "type", {
|
|
|
|
|
/// Retry after providing credentials.
|
|
|
|
|
Auth => "auth",
|
|
|
|
|
|
|
|
|
|
/// Do not retry (the error cannot be remedied).
|
|
|
|
|
Cancel => "cancel",
|
|
|
|
|
|
|
|
|
|
/// Proceed (the condition was only a warning).
|
|
|
|
|
Continue => "continue",
|
|
|
|
|
|
|
|
|
|
/// Retry after changing the data sent.
|
|
|
|
|
Modify => "modify",
|
|
|
|
|
|
|
|
|
|
/// Retry after waiting (the error is temporary).
|
|
|
|
|
Wait => "wait",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
generate_element_enum!(
|
|
|
|
|
/// List of valid error conditions.
|
|
|
|
|
DefinedCondition, "condition", XMPP_STANZAS, {
|
|
|
|
|
/// The sender has sent a stanza containing XML that does not conform
|
|
|
|
|
/// to the appropriate schema or that cannot be processed (e.g., an IQ
|
|
|
|
|
/// stanza that includes an unrecognized value of the 'type' attribute,
|
|
|
|
|
/// or an element that is qualified by a recognized namespace but that
|
|
|
|
|
/// violates the defined syntax for the element); the associated error
|
|
|
|
|
/// type SHOULD be "modify".
|
|
|
|
|
BadRequest => "bad-request",
|
|
|
|
|
|
|
|
|
|
/// Access cannot be granted because an existing resource exists with
|
|
|
|
|
/// the same name or address; the associated error type SHOULD be
|
|
|
|
|
/// "cancel".
|
|
|
|
|
Conflict => "conflict",
|
|
|
|
|
|
|
|
|
|
/// The feature represented in the XML stanza is not implemented by the
|
|
|
|
|
/// intended recipient or an intermediate server and therefore the
|
|
|
|
|
/// stanza cannot be processed (e.g., the entity understands the
|
|
|
|
|
/// namespace but does not recognize the element name); the associated
|
|
|
|
|
/// error type SHOULD be "cancel" or "modify".
|
|
|
|
|
FeatureNotImplemented => "feature-not-implemented",
|
|
|
|
|
|
|
|
|
|
/// The requesting entity does not possess the necessary permissions to
|
|
|
|
|
/// perform an action that only certain authorized roles or individuals
|
|
|
|
|
/// are allowed to complete (i.e., it typically relates to
|
|
|
|
|
/// authorization rather than authentication); the associated error
|
|
|
|
|
/// type SHOULD be "auth".
|
|
|
|
|
Forbidden => "forbidden",
|
|
|
|
|
|
|
|
|
|
/// The recipient or server can no longer be contacted at this address,
|
|
|
|
|
/// typically on a permanent basis (as opposed to the <redirect/> error
|
|
|
|
|
/// condition, which is used for temporary addressing failures); the
|
|
|
|
|
/// associated error type SHOULD be "cancel" and the error stanza
|
|
|
|
|
/// SHOULD include a new address (if available) as the XML character
|
|
|
|
|
/// data of the <gone/> element (which MUST be a Uniform Resource
|
|
|
|
|
/// Identifier [URI] or Internationalized Resource Identifier [IRI] at
|
|
|
|
|
/// which the entity can be contacted, typically an XMPP IRI as
|
|
|
|
|
/// specified in [XMPP‑URI]).
|
|
|
|
|
Gone => "gone",
|
|
|
|
|
|
|
|
|
|
/// The server has experienced a misconfiguration or other internal
|
|
|
|
|
/// error that prevents it from processing the stanza; the associated
|
|
|
|
|
/// error type SHOULD be "cancel".
|
|
|
|
|
InternalServerError => "internal-server-error",
|
|
|
|
|
|
|
|
|
|
/// The addressed JID or item requested cannot be found; the associated
|
|
|
|
|
/// error type SHOULD be "cancel".
|
|
|
|
|
ItemNotFound => "item-not-found",
|
|
|
|
|
|
|
|
|
|
/// The sending entity has provided (e.g., during resource binding) or
|
|
|
|
|
/// communicated (e.g., in the 'to' address of a stanza) an XMPP
|
|
|
|
|
/// address or aspect thereof that violates the rules defined in
|
|
|
|
|
/// [XMPP‑ADDR]; the associated error type SHOULD be "modify".
|
|
|
|
|
JidMalformed => "jid-malformed",
|
|
|
|
|
|
|
|
|
|
/// The recipient or server understands the request but cannot process
|
|
|
|
|
/// it because the request does not meet criteria defined by the
|
|
|
|
|
/// recipient or server (e.g., a request to subscribe to information
|
|
|
|
|
/// that does not simultaneously include configuration parameters
|
|
|
|
|
/// needed by the recipient); the associated error type SHOULD be
|
|
|
|
|
/// "modify".
|
|
|
|
|
NotAcceptable => "not-acceptable",
|
|
|
|
|
|
|
|
|
|
/// The recipient or server does not allow any entity to perform the
|
|
|
|
|
/// action (e.g., sending to entities at a blacklisted domain); the
|
|
|
|
|
/// associated error type SHOULD be "cancel".
|
|
|
|
|
NotAllowed => "not-allowed",
|
|
|
|
|
|
|
|
|
|
/// The sender needs to provide credentials before being allowed to
|
|
|
|
|
/// perform the action, or has provided improper credentials (the name
|
|
|
|
|
/// "not-authorized", which was borrowed from the "401 Unauthorized"
|
|
|
|
|
/// error of [HTTP], might lead the reader to think that this condition
|
|
|
|
|
/// relates to authorization, but instead it is typically used in
|
|
|
|
|
/// relation to authentication); the associated error type SHOULD be
|
|
|
|
|
/// "auth".
|
|
|
|
|
NotAuthorized => "not-authorized",
|
|
|
|
|
|
|
|
|
|
/// The entity has violated some local service policy (e.g., a message
|
|
|
|
|
/// contains words that are prohibited by the service) and the server
|
|
|
|
|
/// MAY choose to specify the policy in the <text/> element or in an
|
|
|
|
|
/// application-specific condition element; the associated error type
|
|
|
|
|
/// SHOULD be "modify" or "wait" depending on the policy being
|
|
|
|
|
/// violated.
|
|
|
|
|
PolicyViolation => "policy-violation",
|
|
|
|
|
|
|
|
|
|
/// The intended recipient is temporarily unavailable, undergoing
|
|
|
|
|
/// maintenance, etc.; the associated error type SHOULD be "wait".
|
|
|
|
|
RecipientUnavailable => "recipient-unavailable",
|
|
|
|
|
|
|
|
|
|
/// The recipient or server is redirecting requests for this
|
|
|
|
|
/// information to another entity, typically in a temporary fashion (as
|
|
|
|
|
/// opposed to the <gone/> error condition, which is used for permanent
|
|
|
|
|
/// addressing failures); the associated error type SHOULD be "modify"
|
|
|
|
|
/// and the error stanza SHOULD contain the alternate address in the
|
|
|
|
|
/// XML character data of the <redirect/> element (which MUST be a URI
|
|
|
|
|
/// or IRI with which the sender can communicate, typically an XMPP IRI
|
|
|
|
|
/// as specified in [XMPP‑URI]).
|
|
|
|
|
Redirect => "redirect",
|
|
|
|
|
|
|
|
|
|
/// The requesting entity is not authorized to access the requested
|
|
|
|
|
/// service because prior registration is necessary (examples of prior
|
|
|
|
|
/// registration include members-only rooms in XMPP multi-user chat
|
|
|
|
|
/// [XEP‑0045] and gateways to non-XMPP instant messaging services,
|
|
|
|
|
/// which traditionally required registration in order to use the
|
|
|
|
|
/// gateway [XEP‑0100]); the associated error type SHOULD be "auth".
|
|
|
|
|
RegistrationRequired => "registration-required",
|
|
|
|
|
|
|
|
|
|
/// A remote server or service specified as part or all of the JID of
|
|
|
|
|
/// the intended recipient does not exist or cannot be resolved (e.g.,
|
|
|
|
|
/// there is no _xmpp-server._tcp DNS SRV record, the A or AAAA
|
|
|
|
|
/// fallback resolution fails, or A/AAAA lookups succeed but there is
|
|
|
|
|
/// no response on the IANA-registered port 5269); the associated error
|
|
|
|
|
/// type SHOULD be "cancel".
|
|
|
|
|
RemoteServerNotFound => "remote-server-not-found",
|
|
|
|
|
|
|
|
|
|
/// A remote server or service specified as part or all of the JID of
|
|
|
|
|
/// the intended recipient (or needed to fulfill a request) was
|
|
|
|
|
/// resolved but communications could not be established within a
|
|
|
|
|
/// reasonable amount of time (e.g., an XML stream cannot be
|
|
|
|
|
/// established at the resolved IP address and port, or an XML stream
|
|
|
|
|
/// can be established but stream negotiation fails because of problems
|
|
|
|
|
/// with TLS, SASL, Server Dialback, etc.); the associated error type
|
|
|
|
|
/// SHOULD be "wait" (unless the error is of a more permanent nature,
|
|
|
|
|
/// e.g., the remote server is found but it cannot be authenticated or
|
|
|
|
|
/// it violates security policies).
|
|
|
|
|
RemoteServerTimeout => "remote-server-timeout",
|
|
|
|
|
|
|
|
|
|
/// The server or recipient is busy or lacks the system resources
|
|
|
|
|
/// necessary to service the request; the associated error type SHOULD
|
|
|
|
|
/// be "wait".
|
|
|
|
|
ResourceConstraint => "resource-constraint",
|
|
|
|
|
|
|
|
|
|
/// The server or recipient does not currently provide the requested
|
|
|
|
|
/// service; the associated error type SHOULD be "cancel".
|
|
|
|
|
ServiceUnavailable => "service-unavailable",
|
|
|
|
|
|
|
|
|
|
/// The requesting entity is not authorized to access the requested
|
|
|
|
|
/// service because a prior subscription is necessary (examples of
|
|
|
|
|
/// prior subscription include authorization to receive presence
|
|
|
|
|
/// information as defined in [XMPP‑IM] and opt-in data feeds for XMPP
|
|
|
|
|
/// publish-subscribe as defined in [XEP‑0060]); the associated error
|
|
|
|
|
/// type SHOULD be "auth".
|
|
|
|
|
SubscriptionRequired => "subscription-required",
|
|
|
|
|
|
|
|
|
|
/// The error condition is not one of those defined by the other
|
|
|
|
|
/// conditions in this list; any error type can be associated with this
|
|
|
|
|
/// condition, and it SHOULD NOT be used except in conjunction with an
|
|
|
|
|
/// application-specific condition.
|
|
|
|
|
UndefinedCondition => "undefined-condition",
|
|
|
|
|
|
|
|
|
|
/// The recipient or server understood the request but was not
|
|
|
|
|
/// expecting it at this time (e.g., the request was out of order); the
|
|
|
|
|
/// associated error type SHOULD be "wait" or "modify".
|
|
|
|
|
UnexpectedRequest => "unexpected-request",
|
|
|
|
|
}
|
|
|
|
|
);
|
2017-05-01 00:24:45 +00:00
|
|
|
|
|
2018-09-20 18:28:29 +00:00
|
|
|
|
type Lang = String;
|
2017-05-01 00:24:45 +00:00
|
|
|
|
|
2018-09-19 19:26:21 +00:00
|
|
|
|
/// The representation of a stanza error.
|
2017-05-01 00:24:45 +00:00
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
|
pub struct StanzaError {
|
2018-09-19 19:26:21 +00:00
|
|
|
|
/// The type of this error.
|
2017-05-01 00:24:45 +00:00
|
|
|
|
pub type_: ErrorType,
|
2018-09-19 19:26:21 +00:00
|
|
|
|
|
|
|
|
|
/// The JID of the entity who set this error.
|
2017-05-01 00:24:45 +00:00
|
|
|
|
pub by: Option<Jid>,
|
2018-09-19 19:26:21 +00:00
|
|
|
|
|
|
|
|
|
/// One of the defined conditions for this error to happen.
|
2017-05-01 00:24:45 +00:00
|
|
|
|
pub defined_condition: DefinedCondition,
|
2018-09-19 19:26:21 +00:00
|
|
|
|
|
|
|
|
|
/// Human-readable description of this error.
|
2017-05-01 00:24:45 +00:00
|
|
|
|
pub texts: BTreeMap<Lang, String>,
|
2018-09-19 19:26:21 +00:00
|
|
|
|
|
|
|
|
|
/// A protocol-specific extension for this error.
|
2017-05-01 00:24:45 +00:00
|
|
|
|
pub other: Option<Element>,
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-20 18:58:27 +00:00
|
|
|
|
impl MessagePayload for StanzaError {}
|
2018-09-20 18:51:48 +00:00
|
|
|
|
impl PresencePayload for StanzaError {}
|
|
|
|
|
|
2019-02-26 19:21:26 +00:00
|
|
|
|
impl StanzaError {
|
|
|
|
|
/// Create a new `<error/>` with the according content.
|
|
|
|
|
pub fn new<L, T>(type_: ErrorType, defined_condition: DefinedCondition, lang: L, text: T) -> StanzaError
|
|
|
|
|
where L: Into<Lang>,
|
|
|
|
|
T: Into<String>,
|
|
|
|
|
{
|
|
|
|
|
StanzaError {
|
|
|
|
|
type_,
|
|
|
|
|
by: None,
|
|
|
|
|
defined_condition,
|
|
|
|
|
texts: {
|
|
|
|
|
let mut map = BTreeMap::new();
|
|
|
|
|
map.insert(lang.into(), text.into());
|
|
|
|
|
map
|
|
|
|
|
},
|
|
|
|
|
other: None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
|
impl TryFrom<Element> for StanzaError {
|
2017-07-20 19:03:15 +00:00
|
|
|
|
type Err = Error;
|
2017-05-01 00:24:45 +00:00
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
|
fn try_from(elem: Element) -> Result<StanzaError, Error> {
|
2018-05-14 14:30:28 +00:00
|
|
|
|
check_self!(elem, "error", DEFAULT_NS);
|
2017-05-01 00:24:45 +00:00
|
|
|
|
|
2019-02-24 19:48:19 +00:00
|
|
|
|
let type_ = get_attr!(elem, "type", Required);
|
|
|
|
|
let by = get_attr!(elem, "by", Option);
|
2017-05-06 20:13:53 +00:00
|
|
|
|
let mut defined_condition = None;
|
|
|
|
|
let mut texts = BTreeMap::new();
|
|
|
|
|
let mut other = None;
|
|
|
|
|
|
|
|
|
|
for child in elem.children() {
|
|
|
|
|
if child.is("text", ns::XMPP_STANZAS) {
|
2018-05-14 14:33:47 +00:00
|
|
|
|
check_no_children!(child, "text");
|
2019-02-24 19:48:19 +00:00
|
|
|
|
let lang = get_attr!(elem, "xml:lang", Default);
|
2017-05-07 14:23:06 +00:00
|
|
|
|
if texts.insert(lang, child.text()).is_some() {
|
2018-12-18 14:32:05 +00:00
|
|
|
|
return Err(Error::ParseError(
|
|
|
|
|
"Text element present twice for the same xml:lang.",
|
|
|
|
|
));
|
2017-05-06 20:13:53 +00:00
|
|
|
|
}
|
2017-08-27 00:04:56 +00:00
|
|
|
|
} else if child.has_ns(ns::XMPP_STANZAS) {
|
2017-05-06 20:13:53 +00:00
|
|
|
|
if defined_condition.is_some() {
|
2018-12-18 14:32:05 +00:00
|
|
|
|
return Err(Error::ParseError(
|
|
|
|
|
"Error must not have more than one defined-condition.",
|
|
|
|
|
));
|
2017-05-06 20:13:53 +00:00
|
|
|
|
}
|
2018-05-14 14:33:47 +00:00
|
|
|
|
check_no_children!(child, "defined-condition");
|
2017-11-24 04:30:33 +00:00
|
|
|
|
let condition = DefinedCondition::try_from(child.clone())?;
|
2017-05-06 20:13:53 +00:00
|
|
|
|
defined_condition = Some(condition);
|
|
|
|
|
} else {
|
|
|
|
|
if other.is_some() {
|
2018-12-18 14:32:05 +00:00
|
|
|
|
return Err(Error::ParseError(
|
|
|
|
|
"Error must not have more than one other element.",
|
|
|
|
|
));
|
2017-05-06 20:13:53 +00:00
|
|
|
|
}
|
|
|
|
|
other = Some(child.clone());
|
2017-05-01 00:24:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let defined_condition =
|
|
|
|
|
defined_condition.ok_or(Error::ParseError("Error must have a defined-condition."))?;
|
2017-05-01 00:24:45 +00:00
|
|
|
|
|
2017-05-06 20:13:53 +00:00
|
|
|
|
Ok(StanzaError {
|
2019-02-21 20:00:58 +00:00
|
|
|
|
type_,
|
|
|
|
|
by,
|
|
|
|
|
defined_condition,
|
|
|
|
|
texts,
|
|
|
|
|
other,
|
2017-05-06 20:13:53 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
2017-05-01 00:24:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 19:36:13 +00:00
|
|
|
|
impl From<StanzaError> for Element {
|
|
|
|
|
fn from(err: StanzaError) -> Element {
|
2019-02-28 01:44:31 +00:00
|
|
|
|
Element::builder("error")
|
2018-12-18 14:32:05 +00:00
|
|
|
|
.ns(ns::DEFAULT_NS)
|
|
|
|
|
.attr("type", err.type_)
|
|
|
|
|
.attr("by", err.by)
|
|
|
|
|
.append(err.defined_condition)
|
2019-02-28 01:44:31 +00:00
|
|
|
|
.append(
|
|
|
|
|
err.texts.into_iter().map(|(lang, text)| {
|
|
|
|
|
Element::builder("text")
|
|
|
|
|
.ns(ns::XMPP_STANZAS)
|
|
|
|
|
.attr("xml:lang", lang)
|
|
|
|
|
.append(text)
|
|
|
|
|
.build()
|
|
|
|
|
}).collect::<Vec<_>>())
|
|
|
|
|
.append(err.other)
|
|
|
|
|
.build()
|
2017-05-01 00:24:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2017-05-06 20:13:53 +00:00
|
|
|
|
use super::*;
|
2017-05-01 00:24:45 +00:00
|
|
|
|
|
2018-10-28 12:10:48 +00:00
|
|
|
|
#[cfg(target_pointer_width = "32")]
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_size() {
|
|
|
|
|
assert_size!(ErrorType, 1);
|
|
|
|
|
assert_size!(DefinedCondition, 1);
|
|
|
|
|
assert_size!(StanzaError, 104);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(target_pointer_width = "64")]
|
2018-10-26 12:26:16 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_size() {
|
|
|
|
|
assert_size!(ErrorType, 1);
|
|
|
|
|
assert_size!(DefinedCondition, 1);
|
|
|
|
|
assert_size!(StanzaError, 208);
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-01 00:24:45 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_simple() {
|
2017-07-29 05:49:02 +00:00
|
|
|
|
#[cfg(not(feature = "component"))]
|
2017-05-01 00:24:45 +00:00
|
|
|
|
let elem: Element = "<error xmlns='jabber:client' type='cancel'><undefined-condition xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/></error>".parse().unwrap();
|
2017-07-29 05:49:02 +00:00
|
|
|
|
#[cfg(feature = "component")]
|
|
|
|
|
let elem: Element = "<error xmlns='jabber:component:accept' type='cancel'><undefined-condition xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/></error>".parse().unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let error = StanzaError::try_from(elem).unwrap();
|
2017-05-06 20:13:53 +00:00
|
|
|
|
assert_eq!(error.type_, ErrorType::Cancel);
|
2018-12-18 14:32:05 +00:00
|
|
|
|
assert_eq!(
|
|
|
|
|
error.defined_condition,
|
|
|
|
|
DefinedCondition::UndefinedCondition
|
|
|
|
|
);
|
2017-05-01 00:24:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_invalid_type() {
|
2017-07-29 05:49:02 +00:00
|
|
|
|
#[cfg(not(feature = "component"))]
|
2017-05-01 00:24:45 +00:00
|
|
|
|
let elem: Element = "<error xmlns='jabber:client'/>".parse().unwrap();
|
2017-07-29 05:49:02 +00:00
|
|
|
|
#[cfg(feature = "component")]
|
|
|
|
|
let elem: Element = "<error xmlns='jabber:component:accept'/>".parse().unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let error = StanzaError::try_from(elem).unwrap_err();
|
2017-05-01 00:24:45 +00:00
|
|
|
|
let message = match error {
|
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
2017-05-23 00:02:23 +00:00
|
|
|
|
assert_eq!(message, "Required attribute 'type' missing.");
|
2017-05-01 00:24:45 +00:00
|
|
|
|
|
2017-07-29 05:49:02 +00:00
|
|
|
|
#[cfg(not(feature = "component"))]
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<error xmlns='jabber:client' type='coucou'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-07-29 05:49:02 +00:00
|
|
|
|
#[cfg(feature = "component")]
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<error xmlns='jabber:component:accept' type='coucou'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let error = StanzaError::try_from(elem).unwrap_err();
|
2017-05-01 00:24:45 +00:00
|
|
|
|
let message = match error {
|
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
2017-06-13 23:50:57 +00:00
|
|
|
|
assert_eq!(message, "Unknown value for 'type' attribute.");
|
2017-05-01 00:24:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_invalid_condition() {
|
2017-07-29 05:49:02 +00:00
|
|
|
|
#[cfg(not(feature = "component"))]
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<error xmlns='jabber:client' type='cancel'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-07-29 05:49:02 +00:00
|
|
|
|
#[cfg(feature = "component")]
|
2018-12-18 14:32:05 +00:00
|
|
|
|
let elem: Element = "<error xmlns='jabber:component:accept' type='cancel'/>"
|
|
|
|
|
.parse()
|
|
|
|
|
.unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let error = StanzaError::try_from(elem).unwrap_err();
|
2017-05-01 00:24:45 +00:00
|
|
|
|
let message = match error {
|
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
|
|
|
|
assert_eq!(message, "Error must have a defined-condition.");
|
|
|
|
|
}
|
|
|
|
|
}
|