#![cfg(feature = "unstable-msc3551")] use assign::assign; use js_int::uint; use matches::assert_matches; use ruma_common::{ event_id, events::{ file::{EncryptedContentInit, FileContent, FileContentInfo, FileEventContent}, message::MessageContent, room::{ message::{InReplyTo, Relation}, JsonWebKeyInit, }, AnyMessageLikeEvent, MessageLikeEvent, MessageLikeUnsigned, }, mxc_uri, room_id, serde::Base64, 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 = FileEventContent::plain( "Upload: my_file.txt", mxc_uri!("mxc://notareal.hs/abcdef").to_owned(), None, ); assert_eq!( to_json_value(&event_content).unwrap(), json!({ "org.matrix.msc1767.text": "Upload: my_file.txt", "org.matrix.msc1767.file": { "url": "mxc://notareal.hs/abcdef", } }) ); } #[test] fn encrypted_content_serialization() { let event_content = FileEventContent::encrypted( "Upload: my_file.txt", mxc_uri!("mxc://notareal.hs/abcdef").to_owned(), EncryptedContentInit { key: JsonWebKeyInit { kty: "oct".to_owned(), key_ops: vec!["encrypt".to_owned(), "decrypt".to_owned()], alg: "A256CTR".to_owned(), k: Base64::parse("TLlG_OpX807zzQuuwv4QZGJ21_u7weemFGYJFszMn9A").unwrap(), ext: true, } .into(), iv: Base64::parse("S22dq3NAX8wAAAAAAAAAAA").unwrap(), hashes: [( "sha256".to_owned(), Base64::parse("aWOHudBnDkJ9IwaR1Nd8XKoI7DOrqDTwt6xDPfVGN6Q").unwrap(), )] .into(), v: "v2".to_owned(), } .into(), None, ); assert_eq!( to_json_value(&event_content).unwrap(), json!({ "org.matrix.msc1767.text": "Upload: my_file.txt", "org.matrix.msc1767.file": { "url": "mxc://notareal.hs/abcdef", "key": { "kty": "oct", "key_ops": ["encrypt", "decrypt"], "alg": "A256CTR", "k": "TLlG_OpX807zzQuuwv4QZGJ21_u7weemFGYJFszMn9A", "ext": true }, "iv": "S22dq3NAX8wAAAAAAAAAAA", "hashes": { "sha256": "aWOHudBnDkJ9IwaR1Nd8XKoI7DOrqDTwt6xDPfVGN6Q" }, "v": "v2" } }) ); } #[test] fn file_event_serialization() { let event = MessageLikeEvent { content: assign!( FileEventContent::plain_message( MessageContent::html( "Upload: my_file.txt", "Upload: my_file.txt", ), mxc_uri!("mxc://notareal.hs/abcdef").to_owned(), Some(Box::new(assign!( FileContentInfo::new(), { name: Some("my_file.txt".to_owned()), mimetype: Some("text/plain".to_owned()), size: Some(uint!(774)), } ))), ), { relates_to: Some(Relation::Reply { in_reply_to: InReplyTo::new(event_id!("$replyevent:example.com").to_owned()), }), } ), event_id: event_id!("$event:notareal.hs").to_owned(), sender: user_id!("@user:notareal.hs").to_owned(), origin_server_ts: MilliSecondsSinceUnixEpoch(uint!(134_829_848)), room_id: room_id!("!roomid:notareal.hs").to_owned(), unsigned: MessageLikeUnsigned::default(), }; assert_eq!( to_json_value(&event).unwrap(), json!({ "content": { "org.matrix.msc1767.message": [ { "body": "Upload: my_file.txt", "mimetype": "text/html"}, { "body": "Upload: my_file.txt", "mimetype": "text/plain"}, ], "org.matrix.msc1767.file": { "url": "mxc://notareal.hs/abcdef", "name": "my_file.txt", "mimetype": "text/plain", "size": 774, }, "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.file", }) ); } #[test] fn plain_content_deserialization() { let json_data = json!({ "org.matrix.msc1767.text": "Upload: my_file.txt", "org.matrix.msc1767.file": { "url": "mxc://notareal.hs/abcdef", } }); assert_matches!( from_json_value::(json_data) .unwrap(), FileEventContent { message, file, .. } if message.find_plain() == Some("Upload: my_file.txt") && message.find_html().is_none() && file.url.as_str() == "mxc://notareal.hs/abcdef" ); } #[test] fn encrypted_content_deserialization() { let json_data = json!({ "org.matrix.msc1767.text": "Upload: my_file.txt", "org.matrix.msc1767.file": { "url": "mxc://notareal.hs/abcdef", "key": { "kty": "oct", "key_ops": ["encrypt", "decrypt"], "alg": "A256CTR", "k": "TLlG_OpX807zzQuuwv4QZGJ21_u7weemFGYJFszMn9A", "ext": true }, "iv": "S22dq3NAX8wAAAAAAAAAAA", "hashes": { "sha256": "aWOHudBnDkJ9IwaR1Nd8XKoI7DOrqDTwt6xDPfVGN6Q" }, "v": "v2" } }); assert_matches!( from_json_value::(json_data) .unwrap(), FileEventContent { message, file, .. } if message.find_plain() == Some("Upload: my_file.txt") && message.find_html().is_none() && file.url.as_str() == "mxc://notareal.hs/abcdef" && file.encryption_info.is_some() ); } #[test] fn message_event_deserialization() { let json_data = json!({ "content": { "org.matrix.msc1767.message": [ { "body": "Upload: my_file.txt", "mimetype": "text/html"}, { "body": "Upload: my_file.txt", "mimetype": "text/plain"}, ], "org.matrix.msc1767.file": { "url": "mxc://notareal.hs/abcdef", "name": "my_file.txt", "mimetype": "text/plain", "size": 774, }, }, "event_id": "$event:notareal.hs", "origin_server_ts": 134_829_848, "room_id": "!roomid:notareal.hs", "sender": "@user:notareal.hs", "type": "m.file", }); assert_matches!( from_json_value::(json_data).unwrap(), AnyMessageLikeEvent::File(MessageLikeEvent { content: FileEventContent { message, file: FileContent { url, info: Some(info), .. }, .. }, event_id, origin_server_ts, room_id, sender, unsigned }) if event_id == event_id!("$event:notareal.hs") && message.find_plain() == Some("Upload: my_file.txt") && message.find_html() == Some("Upload: my_file.txt") && url.as_str() == "mxc://notareal.hs/abcdef" && info.name.as_deref() == Some("my_file.txt") && info.mimetype.as_deref() == Some("text/plain") && info.size == Some(uint!(774)) && origin_server_ts == MilliSecondsSinceUnixEpoch(uint!(134_829_848)) && room_id == room_id!("!roomid:notareal.hs") && sender == user_id!("@user:notareal.hs") && unsigned.is_empty() ); }