260 lines
7.8 KiB
Rust
260 lines
7.8 KiB
Rust
//! Types for the *m.room.name* event.
|
|
|
|
use ruma_events_macros::StateEventContent;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::{InvalidInput, StateEvent};
|
|
|
|
/// The room name is a human-friendly string designed to be displayed to the end-user.
|
|
pub type NameEvent = StateEvent<NameEventContent>;
|
|
|
|
/// The payload for `NameEvent`.
|
|
#[derive(Clone, Debug, Deserialize, Serialize, StateEventContent)]
|
|
#[ruma_event(type = "m.room.name")]
|
|
pub struct NameEventContent {
|
|
/// The name of the room. This MUST NOT exceed 255 bytes.
|
|
#[serde(default, deserialize_with = "room_name")]
|
|
pub(crate) name: Option<String>,
|
|
}
|
|
|
|
impl NameEventContent {
|
|
/// Create a new `NameEventContent` with the given name.
|
|
///
|
|
/// # Errors
|
|
///
|
|
/// `InvalidInput` will be returned if the name is more than 255 bytes.
|
|
pub fn new(name: String) -> Result<Self, InvalidInput> {
|
|
match name.len() {
|
|
0 => Ok(Self { name: None }),
|
|
1..=255 => Ok(Self { name: Some(name) }),
|
|
_ => Err(InvalidInput("a room name cannot be more than 255 bytes".into())),
|
|
}
|
|
}
|
|
|
|
/// The name of the room, if any.
|
|
pub fn name(&self) -> Option<&str> {
|
|
self.name.as_deref()
|
|
}
|
|
}
|
|
|
|
fn room_name<'de, D>(deserializer: D) -> Result<Option<String>, D::Error>
|
|
where
|
|
D: serde::de::Deserializer<'de>,
|
|
{
|
|
use serde::de::Error;
|
|
|
|
// this handles the null case and the empty string or nothing case
|
|
match Option::<String>::deserialize(deserializer)? {
|
|
Some(name) => match name.len() {
|
|
0 => Ok(None),
|
|
1..=255 => Ok(Some(name)),
|
|
_ => Err(D::Error::custom("a room name cannot be more than 255 bytes")),
|
|
},
|
|
None => Ok(None),
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use std::{
|
|
iter::FromIterator,
|
|
time::{Duration, UNIX_EPOCH},
|
|
};
|
|
|
|
use js_int::Int;
|
|
use matches::assert_matches;
|
|
use ruma_common::Raw;
|
|
use ruma_identifiers::{event_id, room_id, user_id};
|
|
use serde_json::{from_value as from_json_value, json, to_value as to_json_value};
|
|
|
|
use crate::{StateEvent, Unsigned};
|
|
|
|
use super::NameEventContent;
|
|
|
|
#[test]
|
|
fn serialization_with_optional_fields_as_none() {
|
|
let name_event = StateEvent {
|
|
content: NameEventContent { name: Some("The room name".into()) },
|
|
event_id: event_id!("$h29iv0s8:example.com"),
|
|
origin_server_ts: UNIX_EPOCH + Duration::from_millis(1),
|
|
prev_content: None,
|
|
room_id: room_id!("!n8f893n9:example.com"),
|
|
sender: user_id!("@carl:example.com"),
|
|
state_key: "".into(),
|
|
unsigned: Unsigned::default(),
|
|
};
|
|
|
|
let actual = to_json_value(&name_event).unwrap();
|
|
let expected = json!({
|
|
"content": {
|
|
"name": "The room name"
|
|
},
|
|
"event_id": "$h29iv0s8:example.com",
|
|
"origin_server_ts": 1,
|
|
"room_id": "!n8f893n9:example.com",
|
|
"sender": "@carl:example.com",
|
|
"state_key": "",
|
|
"type": "m.room.name"
|
|
});
|
|
|
|
assert_eq!(actual, expected);
|
|
}
|
|
|
|
#[test]
|
|
fn serialization_with_all_fields() {
|
|
let name_event = StateEvent {
|
|
content: NameEventContent { name: Some("The room name".into()) },
|
|
event_id: event_id!("$h29iv0s8:example.com"),
|
|
origin_server_ts: UNIX_EPOCH + Duration::from_millis(1),
|
|
prev_content: Some(NameEventContent { name: Some("The old name".into()) }),
|
|
room_id: room_id!("!n8f893n9:example.com"),
|
|
sender: user_id!("@carl:example.com"),
|
|
state_key: "".into(),
|
|
unsigned: Unsigned { age: Some(Int::from(100)), ..Unsigned::default() },
|
|
};
|
|
|
|
let actual = to_json_value(&name_event).unwrap();
|
|
let expected = json!({
|
|
"content": {
|
|
"name": "The room name"
|
|
},
|
|
"event_id": "$h29iv0s8:example.com",
|
|
"origin_server_ts": 1,
|
|
"prev_content": { "name": "The old name" },
|
|
"room_id": "!n8f893n9:example.com",
|
|
"sender": "@carl:example.com",
|
|
"state_key": "",
|
|
"type": "m.room.name",
|
|
"unsigned": {
|
|
"age": 100
|
|
}
|
|
});
|
|
|
|
assert_eq!(actual, expected);
|
|
}
|
|
|
|
#[test]
|
|
fn absent_field_as_none() {
|
|
let json_data = json!({
|
|
"content": {},
|
|
"event_id": "$h29iv0s8:example.com",
|
|
"origin_server_ts": 1,
|
|
"room_id": "!n8f893n9:example.com",
|
|
"sender": "@carl:example.com",
|
|
"state_key": "",
|
|
"type": "m.room.name"
|
|
});
|
|
assert_eq!(
|
|
from_json_value::<Raw<StateEvent<NameEventContent>>>(json_data)
|
|
.unwrap()
|
|
.deserialize()
|
|
.unwrap()
|
|
.content
|
|
.name,
|
|
None
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn name_fails_validation_when_too_long() {
|
|
// "XXXX .." 256 times
|
|
let long_string: String = String::from_iter(std::iter::repeat('X').take(256));
|
|
assert_eq!(long_string.len(), 256);
|
|
|
|
let long_content_json = json!({ "name": &long_string });
|
|
let from_raw: Raw<NameEventContent> = from_json_value(long_content_json).unwrap();
|
|
|
|
let result = from_raw.deserialize();
|
|
assert!(result.is_err(), "Result should be invalid: {:?}", result);
|
|
}
|
|
|
|
#[test]
|
|
fn json_with_empty_name_creates_content_as_none() {
|
|
let long_content_json = json!({ "name": "" });
|
|
let from_raw: Raw<NameEventContent> = from_json_value(long_content_json).unwrap();
|
|
assert_matches!(from_raw.deserialize().unwrap(), NameEventContent { name: None });
|
|
}
|
|
|
|
#[test]
|
|
fn new_with_empty_name_creates_content_as_none() {
|
|
assert_matches!(
|
|
NameEventContent::new(String::new()).unwrap(),
|
|
NameEventContent { name: None }
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn null_field_as_none() {
|
|
let json_data = json!({
|
|
"content": {
|
|
"name": null
|
|
},
|
|
"event_id": "$h29iv0s8:example.com",
|
|
"origin_server_ts": 1,
|
|
"room_id": "!n8f893n9:example.com",
|
|
"sender": "@carl:example.com",
|
|
"state_key": "",
|
|
"type": "m.room.name"
|
|
});
|
|
assert_eq!(
|
|
from_json_value::<Raw<StateEvent<NameEventContent>>>(json_data)
|
|
.unwrap()
|
|
.deserialize()
|
|
.unwrap()
|
|
.content
|
|
.name,
|
|
None
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn empty_string_as_none() {
|
|
let json_data = json!({
|
|
"content": {
|
|
"name": ""
|
|
},
|
|
"event_id": "$h29iv0s8:example.com",
|
|
"origin_server_ts": 1,
|
|
"room_id": "!n8f893n9:example.com",
|
|
"sender": "@carl:example.com",
|
|
"state_key": "",
|
|
"type": "m.room.name"
|
|
});
|
|
assert_eq!(
|
|
from_json_value::<Raw<StateEvent<NameEventContent>>>(json_data)
|
|
.unwrap()
|
|
.deserialize()
|
|
.unwrap()
|
|
.content
|
|
.name,
|
|
None
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn nonempty_field_as_some() {
|
|
let name = Some("The room name".into());
|
|
let json_data = json!({
|
|
"content": {
|
|
"name": "The room name"
|
|
},
|
|
"event_id": "$h29iv0s8:example.com",
|
|
"origin_server_ts": 1,
|
|
"room_id": "!n8f893n9:example.com",
|
|
"sender": "@carl:example.com",
|
|
"state_key": "",
|
|
"type": "m.room.name"
|
|
});
|
|
|
|
assert_eq!(
|
|
from_json_value::<Raw<StateEvent<NameEventContent>>>(json_data)
|
|
.unwrap()
|
|
.deserialize()
|
|
.unwrap()
|
|
.content
|
|
.name,
|
|
name
|
|
);
|
|
}
|
|
}
|