#![cfg(feature = "unstable-msc3488")] use assert_matches::assert_matches; use assign::assign; use js_int::uint; use ruma_common::{ event_id, events::{ location::{AssetType, LocationContent, LocationEventContent, ZoomLevel, ZoomLevelError}, message::TextContentBlock, relation::InReplyTo, room::message::Relation, AnyMessageLikeEvent, MessageLikeEvent, }, room_id, serde::CanBeEmpty, user_id, MilliSecondsSinceUnixEpoch, }; use serde_json::{from_value as from_json_value, json, to_value as to_json_value}; #[test] fn plain_content_serialization() { let event_content = LocationEventContent::with_plain_text( "Alice was at geo:51.5008,0.1247;u=35", LocationContent::new("geo:51.5008,0.1247;u=35".to_owned()), ); assert_eq!( to_json_value(&event_content).unwrap(), json!({ "org.matrix.msc1767.text": [ { "body": "Alice was at geo:51.5008,0.1247;u=35" }, ], "m.location": { "uri": "geo:51.5008,0.1247;u=35", }, }) ); } #[test] fn event_serialization() { let content = assign!( LocationEventContent::new( TextContentBlock::html( "Alice was at geo:51.5008,0.1247;u=35 as of Sat Nov 13 18:50:58 2021", "Alice was at geo:51.5008,0.1247;u=35 as of Sat Nov 13 18:50:58 2021", ), assign!( LocationContent::new("geo:51.5008,0.1247;u=35".to_owned()), { description: Some("Alice's whereabouts".into()), zoom_level: Some(ZoomLevel::new(4).unwrap()) } ) ), { ts: Some(MilliSecondsSinceUnixEpoch(uint!(1_636_829_458))), relates_to: Some(Relation::Reply { in_reply_to: InReplyTo::new(event_id!("$replyevent:example.com").to_owned()), }), } ); assert_eq!( to_json_value(&content).unwrap(), json!({ "org.matrix.msc1767.text": [ { "mimetype": "text/html", "body": "Alice was at geo:51.5008,0.1247;u=35 as of Sat Nov 13 18:50:58 2021" }, { "body": "Alice was at geo:51.5008,0.1247;u=35 as of Sat Nov 13 18:50:58 2021" }, ], "m.location": { "uri": "geo:51.5008,0.1247;u=35", "description": "Alice's whereabouts", "zoom_level": 4, }, "m.ts": 1_636_829_458, "m.relates_to": { "m.in_reply_to": { "event_id": "$replyevent:example.com", }, }, }) ); } #[test] fn plain_content_deserialization() { let json_data = json!({ "org.matrix.msc1767.text": [ { "body": "Alice was at geo:51.5008,0.1247;u=35" }, ], "m.location": { "uri": "geo:51.5008,0.1247;u=35", }, }); let ev = from_json_value::(json_data).unwrap(); assert_eq!(ev.text.find_plain(), Some("Alice was at geo:51.5008,0.1247;u=35")); assert_eq!(ev.text.find_html(), None); assert_eq!(ev.location.uri, "geo:51.5008,0.1247;u=35"); assert_eq!(ev.location.description, None); assert_matches!(ev.location.zoom_level, None); assert_eq!(ev.asset.type_, AssetType::Self_); assert_eq!(ev.ts, None); } #[test] fn zoomlevel_deserialization_pass() { let json_data = json!({ "uri": "geo:51.5008,0.1247;u=35", "zoom_level": 16, }); assert_matches!( from_json_value::(json_data).unwrap(), LocationContent { zoom_level: Some(zoom_level), .. } if zoom_level.get() == uint!(16) ); } #[test] fn zoomlevel_deserialization_too_high() { let json_data = json!({ "uri": "geo:51.5008,0.1247;u=35", "zoom_level": 30, }); let err = from_json_value::(json_data).unwrap_err(); assert!(err.is_data()); assert_eq!(err.to_string(), ZoomLevelError::TooHigh.to_string()); } #[test] fn message_event_deserialization() { let json_data = json!({ "content": { "org.matrix.msc1767.text": [ { "body": "Alice was at geo:51.5008,0.1247;u=35 as of Sat Nov 13 18:50:58 2021" }, ], "m.location": { "uri": "geo:51.5008,0.1247;u=35", "description": "Alice's whereabouts", "zoom_level": 4, }, "m.ts": 1_636_829_458, "m.relates_to": { "m.in_reply_to": { "event_id": "$replyevent:example.com", }, }, }, "event_id": "$event:notareal.hs", "origin_server_ts": 134_829_848, "room_id": "!roomid:notareal.hs", "sender": "@user:notareal.hs", "type": "m.location", }); let ev = from_json_value::(json_data).unwrap(); let ev = assert_matches!(ev, AnyMessageLikeEvent::Location(MessageLikeEvent::Original(ev)) => ev); assert_eq!( ev.content.text.find_plain(), Some("Alice was at geo:51.5008,0.1247;u=35 as of Sat Nov 13 18:50:58 2021") ); assert_eq!(ev.content.text.find_html(), None); assert_eq!(ev.content.location.uri, "geo:51.5008,0.1247;u=35"); assert_eq!(ev.content.location.description.as_deref(), Some("Alice's whereabouts")); assert_eq!(ev.content.location.zoom_level.unwrap().get(), uint!(4)); assert_eq!(ev.content.asset.type_, AssetType::Self_); assert_eq!(ev.content.ts, Some(MilliSecondsSinceUnixEpoch(uint!(1_636_829_458)))); assert_eq!(ev.event_id, event_id!("$event:notareal.hs")); assert_eq!(ev.origin_server_ts, MilliSecondsSinceUnixEpoch(uint!(134_829_848))); assert_eq!(ev.room_id, room_id!("!roomid:notareal.hs")); assert_eq!(ev.sender, user_id!("@user:notareal.hs")); assert!(ev.unsigned.is_empty()); }