//! # Handle webxdc messages. use crate::chat::Chat; use crate::context::Context; use crate::dc_tools::{dc_create_smeared_timestamp, dc_open_file_std}; use crate::message::{Message, MessageState, MsgId, Viewtype}; use crate::mimeparser::SystemMessage; use crate::param::Param; use crate::{chat, EventType}; use anyhow::{bail, ensure, format_err, Result}; use async_std::path::PathBuf; use deltachat_derive::FromSql; use lettre_email::mime; use lettre_email::PartBuilder; use serde::{Deserialize, Serialize}; use serde_json::Value; use std::convert::TryFrom; use std::fs::File; use std::io::{Read, Seek, SeekFrom}; use zip::ZipArchive; pub const WEBXDC_SUFFIX: &str = "xdc"; const WEBXDC_DEFAULT_ICON: &str = "__webxdc__/default-icon.png"; /// Defines the maximal size in bytes of an .xdc file that can be sent. /// /// We introduce a limit to force developer to create small .xdc /// to save user's traffic and disk space for a better ux. /// /// The 100K limit should also let .xdc pass worse-quality auto-download filters /// which are usually 160K incl. base64 overhead. /// /// The limit is also an experiment to see how small we can go; /// it is planned to raise that limit as needed in subsequent versions. const WEBXDC_SENDING_LIMIT: u64 = 655360; /// Be more tolerant for .xdc sizes on receiving - /// might be, the senders version uses already a larger limit /// and not showing the .xdc on some devices would be even worse ux. const WEBXDC_RECEIVING_LIMIT: u64 = 4194304; /// Raw information read from manifest.toml #[derive(Debug, Deserialize)] #[non_exhaustive] struct WebxdcManifest { name: Option, } /// Parsed information from WebxdcManifest and fallbacks. #[derive(Debug, Serialize)] pub struct WebxdcInfo { pub name: String, pub icon: String, pub summary: String, } /// Status Update ID. #[derive( Debug, Copy, Clone, Default, PartialEq, Eq, Hash, PartialOrd, Ord, Serialize, Deserialize, FromSql, FromPrimitive, )] pub struct StatusUpdateSerial(u32); impl StatusUpdateSerial { /// Create a new [MsgId]. pub fn new(id: u32) -> StatusUpdateSerial { StatusUpdateSerial(id) } /// Gets StatusUpdateId as untyped integer. /// Avoid using this outside ffi. pub fn to_u32(self) -> u32 { self.0 } } impl rusqlite::types::ToSql for StatusUpdateSerial { fn to_sql(&self) -> rusqlite::Result { let val = rusqlite::types::Value::Integer(i64::from(self.0)); let out = rusqlite::types::ToSqlOutput::Owned(val); Ok(out) } } // Array of update items as sent on the wire. #[derive(Debug, Deserialize)] struct StatusUpdates { updates: Vec, } /// Update items as sent on the wire and as stored in the database. #[derive(Debug, Serialize, Deserialize)] pub(crate) struct StatusUpdateItem { payload: Value, #[serde(skip_serializing_if = "Option::is_none")] info: Option, #[serde(skip_serializing_if = "Option::is_none")] summary: Option, } /// Update items as passed to the UIs. #[derive(Debug, Serialize, Deserialize)] pub(crate) struct StatusUpdateItemAndSerial { #[serde(flatten)] item: StatusUpdateItem, serial: StatusUpdateSerial, max_serial: StatusUpdateSerial, } impl Context { /// check if a file is an acceptable webxdc for sending or receiving. pub(crate) async fn is_webxdc_file(&self, filename: &str, mut reader: R) -> Result where R: Read + Seek, { if !filename.ends_with(WEBXDC_SUFFIX) { return Ok(false); } let size = reader.seek(SeekFrom::End(0))?; if size > WEBXDC_RECEIVING_LIMIT { info!( self, "{} exceeds receiving limit of {} bytes", &filename, WEBXDC_RECEIVING_LIMIT ); return Ok(false); } reader.seek(SeekFrom::Start(0))?; let mut archive = match zip::ZipArchive::new(reader) { Ok(archive) => archive, Err(_) => { info!(self, "{} cannot be opened as zip-file", &filename); return Ok(false); } }; if archive.by_name("index.html").is_err() { info!(self, "{} misses index.html", &filename); return Ok(false); } Ok(true) } /// ensure that a file is an acceptable webxdc for sending /// (sending has more strict size limits). pub(crate) async fn ensure_sendable_webxdc_file(&self, path: &PathBuf) -> Result<()> { let mut file = std::fs::File::open(path)?; if !self .is_webxdc_file(path.to_str().unwrap_or_default(), &mut file) .await? { bail!( "{} is not a valid webxdc file", path.to_str().unwrap_or_default() ); } let size = file.seek(SeekFrom::End(0))?; if size > WEBXDC_SENDING_LIMIT { bail!( "webxdc {} exceeds acceptable size of {} bytes", path.to_str().unwrap_or_default(), WEBXDC_SENDING_LIMIT ); } Ok(()) } /// Takes an update-json as `{payload: PAYLOAD}` (or legacy `PAYLOAD`) /// writes it to the database and handles events, info-messages and summary. async fn create_status_update_record( &self, instance: &mut Message, update_str: &str, timestamp: i64, ) -> Result { let update_str = update_str.trim(); if update_str.is_empty() { bail!("create_status_update_record: empty update."); } let status_update_item: StatusUpdateItem = { if let Ok(item) = serde_json::from_str::(update_str) { match instance.state { MessageState::Undefined | MessageState::OutPreparing | MessageState::OutDraft => StatusUpdateItem { payload: item.payload, info: None, // no info-messages in draft mode summary: item.summary, }, _ => item, } } else { bail!("create_status_update_record: no valid update item."); } }; if let Some(ref info) = status_update_item.info { chat::add_info_msg_with_cmd( self, instance.chat_id, info.as_str(), SystemMessage::Unknown, timestamp, Some(instance), ) .await?; } if let Some(ref summary) = status_update_item.summary { if instance .param .update_timestamp(Param::WebxdcSummaryTimestamp, timestamp)? { instance.param.set(Param::WebxdcSummary, summary); instance.update_param(self).await; self.emit_event(EventType::MsgsChanged { chat_id: instance.chat_id, msg_id: instance.id, }); } } let rowid = self .sql .insert( "INSERT INTO msgs_status_updates (msg_id, update_item) VALUES(?, ?);", paramsv![instance.id, serde_json::to_string(&status_update_item)?], ) .await?; self.emit_event(EventType::WebxdcStatusUpdate(instance.id)); Ok(StatusUpdateSerial(u32::try_from(rowid)?)) } /// Sends a status update for an webxdc instance. /// /// If the instance is a draft, /// the status update is sent once the instance is actually sent. /// /// If an update is sent immediately, the message-id of the update-message is returned, /// this update-message is visible in chats, however, the id may be useful. pub async fn send_webxdc_status_update( &self, instance_msg_id: MsgId, update_str: &str, descr: &str, ) -> Result> { let mut instance = Message::load_from_db(self, instance_msg_id).await?; if instance.viewtype != Viewtype::Webxdc { bail!("send_webxdc_status_update: is no webxdc message"); } let chat = Chat::load_from_db(self, instance.chat_id).await?; ensure!(chat.can_send(self).await?, "cannot send to {}", chat.id); let status_update_serial = self .create_status_update_record( &mut instance, update_str, dc_create_smeared_timestamp(self).await, ) .await?; match instance.state { MessageState::Undefined | MessageState::OutPreparing | MessageState::OutDraft => { // send update once the instance is actually send Ok(None) } _ => { // send update now // (also send updates on MessagesState::Failed, maybe only one member cannot receive) let mut status_update = Message { chat_id: instance.chat_id, viewtype: Viewtype::Text, text: Some(descr.to_string()), hidden: true, ..Default::default() }; status_update .param .set_cmd(SystemMessage::WebxdcStatusUpdate); status_update.param.set( Param::Arg, self.render_webxdc_status_update_object( instance_msg_id, Some(status_update_serial), ) .await? .ok_or_else(|| format_err!("Status object expected."))?, ); status_update.set_quote(self, Some(&instance)).await?; status_update.param.remove(Param::GuaranteeE2ee); // may be set by set_quote(), if #2985 is done, this line can be removed let status_update_msg_id = chat::send_msg(self, instance.chat_id, &mut status_update).await?; Ok(Some(status_update_msg_id)) } } } pub(crate) async fn build_status_update_part(&self, json: &str) -> PartBuilder { PartBuilder::new() .content_type(&"application/json".parse::().unwrap()) .header(( "Content-Disposition", "attachment; filename=\"status-update.json\"", )) .body(json) } /// Receives status updates from receive_imf to the database /// and sends out an event. /// /// `msg_id` may be an instance (in case there are initial status updates) /// or a reply to an instance (for all other updates). /// /// `json` is an array containing one or more update items as created by send_webxdc_status_update(), /// the array is parsed using serde, the single payloads are used as is. pub(crate) async fn receive_status_update(&self, msg_id: MsgId, json: &str) -> Result<()> { let msg = Message::load_from_db(self, msg_id).await?; let (timestamp, mut instance) = if msg.viewtype == Viewtype::Webxdc { (msg.timestamp_sort, msg) } else if let Some(parent) = msg.parent(self).await? { if parent.viewtype == Viewtype::Webxdc { (msg.timestamp_sort, parent) } else { bail!("receive_status_update: message is not the child of a webxdc message.") } } else { bail!("receive_status_update: status message has no parent.") }; let updates: StatusUpdates = serde_json::from_str(json)?; for update_item in updates.updates { self.create_status_update_record( &mut instance, &*serde_json::to_string(&update_item)?, timestamp, ) .await?; } Ok(()) } /// Returns status updates as an JSON-array, ready to be consumed by a webxdc. /// /// Example: `[{"serial":1, "max_serial":3, "payload":"any update data"}, /// {"serial":3, "max_serial":3, "payload":"another update data"}]` /// Updates with serials larger than `last_known_serial` are returned. /// If no last serial is known, set `last_known_serial` to 0. /// If no updates are available, an empty JSON-array is returned. pub async fn get_webxdc_status_updates( &self, instance_msg_id: MsgId, last_known_serial: StatusUpdateSerial, ) -> Result { let json = self .sql .query_map( "SELECT update_item, id FROM msgs_status_updates WHERE msg_id=? AND id>? ORDER BY id", paramsv![instance_msg_id, last_known_serial], |row| { let update_item_str = row.get::<_, String>(0)?; let serial = row.get::<_, StatusUpdateSerial>(1)?; Ok((update_item_str, serial)) }, |rows| { let mut rows_copy : Vec<(String, StatusUpdateSerial)> = Vec::new(); // `rows_copy` needed as `rows` cannot be iterated twice. let mut max_serial = StatusUpdateSerial(0); for row in rows { let row = row?; if row.1 > max_serial { max_serial = row.1; } rows_copy.push(row); } let mut json = String::default(); for row in rows_copy { let (update_item_str, serial) = row; let update_item = StatusUpdateItemAndSerial { item: serde_json::from_str(&*update_item_str)?, serial, max_serial, }; if !json.is_empty() { json.push_str(",\n"); } json.push_str(&*serde_json::to_string(&update_item)?); } Ok(json) }, ) .await?; Ok(format!("[{}]", json)) } /// Renders JSON-object for status updates as used on the wire. /// /// Example: `{"updates": [{"payload":"any update data"}, /// {"payload":"another update data"}]}` /// If `status_update_serial` is set, exactly that update is rendered, otherwise all updates are rendered. pub(crate) async fn render_webxdc_status_update_object( &self, instance_msg_id: MsgId, status_update_serial: Option, ) -> Result> { let json = self .sql .query_map( "SELECT update_item FROM msgs_status_updates WHERE msg_id=? AND (1=? OR id=?) ORDER BY id", paramsv![ instance_msg_id, if status_update_serial.is_some() { 0 } else { 1 }, status_update_serial.unwrap_or(StatusUpdateSerial(0)) ], |row| row.get::<_, String>(0), |rows| { let mut json = String::default(); for row in rows { let update_item = row?; if !json.is_empty() { json.push_str(",\n"); } json.push_str(&update_item); } Ok(json) }, ) .await?; if json.is_empty() { Ok(None) } else { Ok(Some(format!(r#"{{"updates":[{}]}}"#, json))) } } } async fn parse_webxdc_manifest(bytes: &[u8]) -> Result { let manifest: WebxdcManifest = toml::from_slice(bytes)?; Ok(manifest) } async fn get_blob(archive: &mut ZipArchive, name: &str) -> Result> { let mut file = archive.by_name(name)?; let mut buf = Vec::new(); file.read_to_end(&mut buf)?; Ok(buf) } impl Message { /// Get handle to a webxdc ZIP-archive. /// To check for file existance use archive.by_name(), to read a file, use get_blob(archive). async fn get_webxdc_archive(&self, context: &Context) -> Result> { let path = self .get_file(context) .ok_or_else(|| format_err!("No webxdc instance file."))?; let file = dc_open_file_std(context, path)?; let archive = zip::ZipArchive::new(file)?; Ok(archive) } /// Return file form inside an archive. /// Currently, this works only if the message is an webxdc instance. pub async fn get_webxdc_blob(&self, context: &Context, name: &str) -> Result> { ensure!(self.viewtype == Viewtype::Webxdc, "No webxdc instance."); if name == WEBXDC_DEFAULT_ICON { return Ok(include_bytes!("../assets/icon-webxdc.png").to_vec()); } // ignore first slash. // this way, files can be accessed absolutely (`/index.html`) as well as relatively (`index.html`) let name = if name.starts_with('/') { name.split_at(1).1 } else { name }; let mut archive = self.get_webxdc_archive(context).await?; get_blob(&mut archive, name).await } /// Return info from manifest.toml or from fallbacks. pub async fn get_webxdc_info(&self, context: &Context) -> Result { ensure!(self.viewtype == Viewtype::Webxdc, "No webxdc instance."); let mut archive = self.get_webxdc_archive(context).await?; let mut manifest = if let Ok(bytes) = get_blob(&mut archive, "manifest.toml").await { if let Ok(manifest) = parse_webxdc_manifest(&bytes).await { manifest } else { WebxdcManifest { name: None } } } else { WebxdcManifest { name: None } }; if let Some(ref name) = manifest.name { let name = name.trim(); if name.is_empty() { warn!(context, "empty name given in manifest"); manifest.name = None; } } Ok(WebxdcInfo { name: if let Some(name) = manifest.name { name } else { self.get_filename().unwrap_or_default() }, icon: if archive.by_name("icon.png").is_ok() { "icon.png".to_string() } else if archive.by_name("icon.jpg").is_ok() { "icon.jpg".to_string() } else { WEBXDC_DEFAULT_ICON.to_string() }, summary: self .param .get(Param::WebxdcSummary) .unwrap_or_default() .to_string(), }) } } #[cfg(test)] mod tests { use std::io::Cursor; use async_std::fs::File; use async_std::io::WriteExt; use crate::chat::{ add_contact_to_chat, create_group_chat, forward_msgs, send_msg, send_text_msg, ChatId, ProtectionStatus, }; use crate::chatlist::Chatlist; use crate::contact::Contact; use crate::dc_receive_imf::dc_receive_imf; use crate::test_utils::TestContext; use super::*; #[allow(clippy::assertions_on_constants)] #[async_std::test] async fn test_webxdc_file_limits() -> Result<()> { assert!(WEBXDC_SENDING_LIMIT >= 32768); assert!(WEBXDC_SENDING_LIMIT < 16777216); assert!(WEBXDC_RECEIVING_LIMIT >= WEBXDC_SENDING_LIMIT * 2); assert!(WEBXDC_RECEIVING_LIMIT < 16777216); Ok(()) } #[async_std::test] async fn test_is_webxdc_file() -> Result<()> { let t = TestContext::new().await; assert!( !t.is_webxdc_file( "bad-ext-no-zip.txt", Cursor::new(include_bytes!("../test-data/message/issue_523.txt")) ) .await? ); assert!( !t.is_webxdc_file( "bad-ext-good-zip.txt", Cursor::new(include_bytes!("../test-data/webxdc/minimal.xdc")) ) .await? ); assert!( !t.is_webxdc_file( "good-ext-no-zip.xdc", Cursor::new(include_bytes!("../test-data/message/issue_523.txt")) ) .await? ); assert!( !t.is_webxdc_file( "good-ext-no-index-html.xdc", Cursor::new(include_bytes!("../test-data/webxdc/no-index-html.xdc")) ) .await? ); assert!( t.is_webxdc_file( "good-ext-good-zip.xdc", Cursor::new(include_bytes!("../test-data/webxdc/minimal.xdc")) ) .await? ); Ok(()) } async fn create_webxdc_instance(t: &TestContext, name: &str, bytes: &[u8]) -> Result { let file = t.get_blobdir().join(name); File::create(&file).await?.write_all(bytes).await?; let mut instance = Message::new(Viewtype::File); instance.set_file(file.to_str().unwrap(), None); Ok(instance) } async fn send_webxdc_instance(t: &TestContext, chat_id: ChatId) -> Result { let mut instance = create_webxdc_instance( t, "minimal.xdc", include_bytes!("../test-data/webxdc/minimal.xdc"), ) .await?; let instance_msg_id = send_msg(t, chat_id, &mut instance).await?; assert_eq!(instance.viewtype, Viewtype::Webxdc); Message::load_from_db(t, instance_msg_id).await } #[async_std::test] async fn test_send_webxdc_instance() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; // send as .xdc file let instance = send_webxdc_instance(&t, chat_id).await?; assert_eq!(instance.viewtype, Viewtype::Webxdc); assert_eq!(instance.get_filename(), Some("minimal.xdc".to_string())); assert_eq!(instance.chat_id, chat_id); // sending using bad extension is not working, even when setting Viewtype to webxdc let file = t.get_blobdir().join("index.html"); File::create(&file) .await? .write_all("ola!".as_ref()) .await?; let mut instance = Message::new(Viewtype::Webxdc); instance.set_file(file.to_str().unwrap(), None); assert!(send_msg(&t, chat_id, &mut instance).await.is_err()); Ok(()) } #[async_std::test] async fn test_send_invalid_webxdc() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; // sending invalid .xdc as file is possible, but must not result in Viewtype::Webxdc let mut instance = create_webxdc_instance( &t, "invalid-no-zip-but-7z.xdc", include_bytes!("../test-data/webxdc/invalid-no-zip-but-7z.xdc"), ) .await?; let instance_id = send_msg(&t, chat_id, &mut instance).await?; assert_eq!(instance.viewtype, Viewtype::File); let test = Message::load_from_db(&t, instance_id).await?; assert_eq!(test.viewtype, Viewtype::File); // sending invalid .xdc as Viewtype::Webxdc should fail already on sending let file = t.get_blobdir().join("invalid2.xdc"); File::create(&file) .await? .write_all(include_bytes!( "../test-data/webxdc/invalid-no-zip-but-7z.xdc" )) .await?; let mut instance = Message::new(Viewtype::Webxdc); instance.set_file(file.to_str().unwrap(), None); assert!(send_msg(&t, chat_id, &mut instance).await.is_err()); Ok(()) } #[async_std::test] async fn test_forward_webxdc_instance() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let instance = send_webxdc_instance(&t, chat_id).await?; t.send_webxdc_status_update( instance.id, r#"{"info": "foo", "summary":"bar", "payload": 42}"#, "descr", ) .await?; assert!(!instance.is_forwarded()); assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":42,"info":"foo","summary":"bar","serial":1,"max_serial":1}]"# ); assert_eq!(chat_id.get_msg_cnt(&t).await?, 2); // instance and info let info = Message::load_from_db(&t, instance.id) .await? .get_webxdc_info(&t) .await?; assert_eq!(info.summary, "bar".to_string()); // forwarding an instance creates a fresh instance; updates etc. are not forwarded forward_msgs(&t, &[instance.get_id()], chat_id).await?; let instance2 = t.get_last_msg_in(chat_id).await; assert!(instance2.is_forwarded()); assert_eq!( t.get_webxdc_status_updates(instance2.id, StatusUpdateSerial(0)) .await?, "[]" ); assert_eq!(chat_id.get_msg_cnt(&t).await?, 3); // two instances, only one info let info = Message::load_from_db(&t, instance2.id) .await? .get_webxdc_info(&t) .await?; assert_eq!(info.summary, "".to_string()); Ok(()) } #[async_std::test] async fn test_receive_webxdc_instance() -> Result<()> { let t = TestContext::new_alice().await; dc_receive_imf( &t, include_bytes!("../test-data/message/webxdc_good_extension.eml"), "INBOX", false, ) .await?; let instance = t.get_last_msg().await; assert_eq!(instance.viewtype, Viewtype::Webxdc); assert_eq!(instance.get_filename(), Some("minimal.xdc".to_string())); dc_receive_imf( &t, include_bytes!("../test-data/message/webxdc_bad_extension.eml"), "INBOX", false, ) .await?; let instance = t.get_last_msg().await; assert_eq!(instance.viewtype, Viewtype::File); // we require the correct extension, only a mime type is not sufficient assert_eq!(instance.get_filename(), Some("index.html".to_string())); Ok(()) } #[async_std::test] async fn test_webxdc_contact_request() -> Result<()> { let alice = TestContext::new_alice().await; let bob = TestContext::new_bob().await; // Alice sends an webxdc instance to Bob let alice_chat = alice.create_chat(&bob).await; let _alice_instance = send_webxdc_instance(&alice, alice_chat.id).await?; bob.recv_msg(&alice.pop_sent_msg().await).await; // Bob can start the webxdc from a contact request (get index.html) // but cannot send updates to contact requests let bob_instance = bob.get_last_msg().await; let bob_chat = Chat::load_from_db(&bob, bob_instance.chat_id).await?; assert!(bob_chat.is_contact_request()); assert!(bob_instance .get_webxdc_blob(&bob, "index.html") .await .is_ok()); assert!(bob .send_webxdc_status_update(bob_instance.id, r#"{"payload":42}"#, "descr") .await .is_err()); assert_eq!( bob.get_webxdc_status_updates(bob_instance.id, StatusUpdateSerial(0)) .await?, "[]" ); // Once the contact request is accepted, Bob can send updates bob_chat.id.accept(&bob).await?; assert!(bob .send_webxdc_status_update(bob_instance.id, r#"{"payload":42}"#, "descr") .await .is_ok()); assert_eq!( bob.get_webxdc_status_updates(bob_instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":42,"serial":1,"max_serial":1}]"# ); Ok(()) } #[async_std::test] async fn test_delete_webxdc_instance() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let mut instance = create_webxdc_instance( &t, "minimal.xdc", include_bytes!("../test-data/webxdc/minimal.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; let instance = chat_id.get_draft(&t).await?.unwrap(); t.send_webxdc_status_update(instance.id, r#"{"payload": 42}"#, "descr") .await?; assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":42,"serial":1,"max_serial":1}]"#.to_string() ); // set_draft(None) deletes the message without the need to simulate network chat_id.set_draft(&t, None).await?; assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, "[]".to_string() ); assert_eq!( t.sql .count("SELECT COUNT(*) FROM msgs_status_updates;", paramsv![],) .await?, 0 ); Ok(()) } #[async_std::test] async fn test_create_status_update_record() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let mut instance = send_webxdc_instance(&t, chat_id).await?; assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, "[]" ); let update_id1 = t .create_status_update_record( &mut instance, "\n\n{\"payload\": {\"foo\":\"bar\"}}\n", 1640178619, ) .await?; assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":1}]"# ); assert!(t .create_status_update_record(&mut instance, "\n\n\n", 1640178619) .await .is_err()); assert!(t .create_status_update_record(&mut instance, "bad json", 1640178619) .await .is_err()); assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":1}]"# ); let update_id2 = t .create_status_update_record( &mut instance, r#"{"payload" : { "foo2":"bar2"}}"#, 1640178619, ) .await?; assert_eq!( t.get_webxdc_status_updates(instance.id, update_id1).await?, r#"[{"payload":{"foo2":"bar2"},"serial":2,"max_serial":2}]"# ); t.create_status_update_record(&mut instance, r#"{"payload":true}"#, 1640178619) .await?; assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":3}, {"payload":{"foo2":"bar2"},"serial":2,"max_serial":3}, {"payload":true,"serial":3,"max_serial":3}]"# ); let _update_id3 = t .create_status_update_record( &mut instance, r#"{"payload" : 1, "sender": "that is not used"}"#, 1640178619, ) .await?; assert_eq!( t.get_webxdc_status_updates(instance.id, update_id2).await?, r#"[{"payload":true,"serial":3,"max_serial":4}, {"payload":1,"serial":4,"max_serial":4}]"# ); Ok(()) } #[async_std::test] async fn test_receive_status_update() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let instance = send_webxdc_instance(&t, chat_id).await?; assert!(t .receive_status_update(instance.id, r#"foo: bar"#) .await .is_err()); // no json assert!(t .receive_status_update(instance.id, r#"{"updada":[{"payload":{"foo":"bar"}}]}"#) .await .is_err()); // "updates" object missing assert!(t .receive_status_update(instance.id, r#"{"updates":[{"foo":"bar"}]}"#) .await .is_err()); // "payload" field missing assert!(t .receive_status_update(instance.id, r#"{"updates":{"payload":{"foo":"bar"}}}"#) .await .is_err()); // not an array t.receive_status_update(instance.id, r#"{"updates":[{"payload":{"foo":"bar"}}]}"#) .await?; assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":1}]"# ); t.receive_status_update( instance.id, r#" {"updates": [ {"payload" :42} , {"payload": 23} ] } "#, ) .await?; assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":3}, {"payload":42,"serial":2,"max_serial":3}, {"payload":23,"serial":3,"max_serial":3}]"# ); t.receive_status_update( instance.id, r#" {"updates": [ {"payload" :"ok", "future_item": "test"} ], "from": "future" } "#, ) .await?; // ignore members that may be added in the future assert_eq!( t.get_webxdc_status_updates(instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":4}, {"payload":42,"serial":2,"max_serial":4}, {"payload":23,"serial":3,"max_serial":4}, {"payload":"ok","serial":4,"max_serial":4}]"# ); Ok(()) } async fn expect_status_update_event(t: &TestContext, instance_id: MsgId) -> Result<()> { let event = t .evtracker .get_matching(|evt| matches!(evt, EventType::WebxdcStatusUpdate { .. })) .await; match event { EventType::WebxdcStatusUpdate(msg_id) => { assert_eq!(msg_id, instance_id); } _ => unreachable!(), } Ok(()) } #[async_std::test] async fn test_send_webxdc_status_update() -> Result<()> { let alice = TestContext::new_alice().await; let bob = TestContext::new_bob().await; // Alice sends an webxdc instance and a status update let alice_chat = alice.create_chat(&bob).await; let alice_instance = send_webxdc_instance(&alice, alice_chat.id).await?; let sent1 = &alice.pop_sent_msg().await; assert_eq!(alice_instance.viewtype, Viewtype::Webxdc); assert!(!sent1.payload().contains("report-type=status-update")); let status_update_msg_id = alice .send_webxdc_status_update( alice_instance.id, r#"{"payload" : {"foo":"bar"}}"#, "descr text", ) .await? .unwrap(); expect_status_update_event(&alice, alice_instance.id).await?; let sent2 = &alice.pop_sent_msg().await; let alice_update = Message::load_from_db(&alice, status_update_msg_id).await?; assert!(alice_update.hidden); assert_eq!(alice_update.viewtype, Viewtype::Text); assert_eq!(alice_update.get_filename(), None); assert_eq!(alice_update.text, Some("descr text".to_string())); assert_eq!(alice_update.chat_id, alice_instance.chat_id); assert_eq!( alice_update.parent(&alice).await?.unwrap().id, alice_instance.id ); assert_eq!(alice_chat.id.get_msg_cnt(&alice).await?, 1); assert!(sent2.payload().contains("report-type=status-update")); assert!(sent2.payload().contains("descr text")); assert_eq!( alice .get_webxdc_status_updates(alice_instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":1}]"# ); alice .send_webxdc_status_update( alice_instance.id, r#"{"payload":{"snipp":"snapp"}}"#, "bla text", ) .await? .unwrap(); assert_eq!( alice .get_webxdc_status_updates(alice_instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":2}, {"payload":{"snipp":"snapp"},"serial":2,"max_serial":2}]"# ); // Bob receives all messages bob.recv_msg(sent1).await; let bob_instance = bob.get_last_msg().await; let bob_chat_id = bob_instance.chat_id; assert_eq!(bob_instance.rfc724_mid, alice_instance.rfc724_mid); assert_eq!(bob_instance.viewtype, Viewtype::Webxdc); assert_eq!(bob_chat_id.get_msg_cnt(&bob).await?, 1); bob.recv_msg(sent2).await; expect_status_update_event(&bob, bob_instance.id).await?; assert_eq!(bob_chat_id.get_msg_cnt(&bob).await?, 1); assert_eq!( bob.get_webxdc_status_updates(bob_instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":1}]"# ); // Alice has a second device and also receives messages there let alice2 = TestContext::new_alice().await; alice2.recv_msg(sent1).await; alice2.recv_msg(sent2).await; let alice2_instance = alice2.get_last_msg().await; let alice2_chat_id = alice2_instance.chat_id; assert_eq!(alice2_instance.viewtype, Viewtype::Webxdc); assert_eq!(alice2_chat_id.get_msg_cnt(&alice2).await?, 1); Ok(()) } #[async_std::test] async fn test_render_webxdc_status_update_object() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "a chat").await?; let mut instance = create_webxdc_instance( &t, "minimal.xdc", include_bytes!("../test-data/webxdc/minimal.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; assert!(t .render_webxdc_status_update_object(instance.id, None) .await? .is_none()); t.send_webxdc_status_update(instance.id, r#"{"payload": 1}"#, "bla") .await?; assert!(t .render_webxdc_status_update_object(instance.id, None) .await? .is_some()); Ok(()) } #[async_std::test] async fn test_draft_and_send_webxdc_status_update() -> Result<()> { let alice = TestContext::new_alice().await; let bob = TestContext::new_bob().await; let alice_chat_id = alice.create_chat(&bob).await.id; // prepare webxdc instance, // status updates are not sent for drafts, therefore send_webxdc_status_update() returns Ok(None) let mut alice_instance = create_webxdc_instance( &alice, "minimal.xdc", include_bytes!("../test-data/webxdc/minimal.xdc"), ) .await?; alice_chat_id .set_draft(&alice, Some(&mut alice_instance)) .await?; let mut alice_instance = alice_chat_id.get_draft(&alice).await?.unwrap(); let status_update_msg_id = alice .send_webxdc_status_update(alice_instance.id, r#"{"payload": {"foo":"bar"}}"#, "descr") .await?; assert_eq!(status_update_msg_id, None); expect_status_update_event(&alice, alice_instance.id).await?; let status_update_msg_id = alice .send_webxdc_status_update(alice_instance.id, r#"{"payload":42, "info":"i"}"#, "descr") .await?; assert_eq!(status_update_msg_id, None); assert!(!alice.get_last_msg().await.is_info()); // 'info: "i"' message not added in draft mode // send webxdc instance, // the initial status updates are sent together in the same message let alice_instance_id = send_msg(&alice, alice_chat_id, &mut alice_instance).await?; let sent1 = alice.pop_sent_msg().await; let alice_instance = Message::load_from_db(&alice, alice_instance_id).await?; assert_eq!(alice_instance.viewtype, Viewtype::Webxdc); assert_eq!( alice_instance.get_filename(), Some("minimal.xdc".to_string()) ); assert_eq!(alice_instance.chat_id, alice_chat_id); // bob receives the instance together with the initial updates in a single message bob.recv_msg(&sent1).await; let bob_instance = bob.get_last_msg().await; assert_eq!(bob_instance.viewtype, Viewtype::Webxdc); assert_eq!(bob_instance.get_filename(), Some("minimal.xdc".to_string())); assert!(sent1.payload().contains("Content-Type: application/json")); assert!(sent1.payload().contains("status-update.json")); assert!(sent1.payload().contains(r#""payload":{"foo":"bar"}"#)); assert_eq!( bob.get_webxdc_status_updates(bob_instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":{"foo":"bar"},"serial":1,"max_serial":2}, {"payload":42,"serial":2,"max_serial":2}]"# // 'info: "i"' ignored as sent in draft mode ); Ok(()) } #[async_std::test] async fn test_send_webxdc_status_update_to_non_webxdc() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let msg_id = send_text_msg(&t, chat_id, "ho!".to_string()).await?; assert!(t .send_webxdc_status_update(msg_id, r#"{"foo":"bar"}"#, "descr") .await .is_err()); Ok(()) } #[async_std::test] async fn test_get_webxdc_blob() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let instance = send_webxdc_instance(&t, chat_id).await?; let buf = instance.get_webxdc_blob(&t, "index.html").await?; assert_eq!(buf.len(), 188); assert!(String::from_utf8_lossy(&buf).contains("document.write")); assert!(instance .get_webxdc_blob(&t, "not-existent.html") .await .is_err()); Ok(()) } #[async_std::test] async fn test_get_webxdc_blob_default_icon() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let instance = send_webxdc_instance(&t, chat_id).await?; let buf = instance.get_webxdc_blob(&t, WEBXDC_DEFAULT_ICON).await?; assert!(buf.len() > 100); assert!(String::from_utf8_lossy(&buf).contains("PNG\r\n")); Ok(()) } #[async_std::test] async fn test_get_webxdc_blob_with_absolute_paths() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let instance = send_webxdc_instance(&t, chat_id).await?; let buf = instance.get_webxdc_blob(&t, "/index.html").await?; assert!(String::from_utf8_lossy(&buf).contains("document.write")); assert!(instance.get_webxdc_blob(&t, "/not-there").await.is_err()); Ok(()) } #[async_std::test] async fn test_get_webxdc_blob_with_subdirs() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let mut instance = create_webxdc_instance( &t, "some-files.xdc", include_bytes!("../test-data/webxdc/some-files.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; let buf = instance.get_webxdc_blob(&t, "index.html").await?; assert_eq!(buf.len(), 65); assert!(String::from_utf8_lossy(&buf).contains("many files")); let buf = instance.get_webxdc_blob(&t, "subdir/bla.txt").await?; assert_eq!(buf.len(), 4); assert!(String::from_utf8_lossy(&buf).starts_with("bla")); let buf = instance .get_webxdc_blob(&t, "subdir/subsubdir/text.md") .await?; assert_eq!(buf.len(), 24); assert!(String::from_utf8_lossy(&buf).starts_with("this is a markdown file")); let buf = instance .get_webxdc_blob(&t, "subdir/subsubdir/text2.md") .await?; assert_eq!(buf.len(), 22); assert!(String::from_utf8_lossy(&buf).starts_with("another markdown")); let buf = instance .get_webxdc_blob(&t, "anotherdir/anothersubsubdir/foo.txt") .await?; assert_eq!(buf.len(), 4); assert!(String::from_utf8_lossy(&buf).starts_with("foo")); Ok(()) } #[async_std::test] async fn test_parse_webxdc_manifest() -> Result<()> { let result = parse_webxdc_manifest(r#"key = syntax error"#.as_bytes()).await; assert!(result.is_err()); let manifest = parse_webxdc_manifest(r#"no_name = "no name, no icon""#.as_bytes()).await?; assert_eq!(manifest.name, None); let manifest = parse_webxdc_manifest(r#"name = "name, no icon""#.as_bytes()).await?; assert_eq!(manifest.name, Some("name, no icon".to_string())); let manifest = parse_webxdc_manifest( r#"name = "foo" icon = "bar""# .as_bytes(), ) .await?; assert_eq!(manifest.name, Some("foo".to_string())); let manifest = parse_webxdc_manifest( r#"name = "foz" icon = "baz" add_item = "that should be just ignored" [section] sth_for_the = "future""# .as_bytes(), ) .await?; assert_eq!(manifest.name, Some("foz".to_string())); Ok(()) } #[async_std::test] async fn test_get_webxdc_info() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "foo").await?; let instance = send_webxdc_instance(&t, chat_id).await?; let info = instance.get_webxdc_info(&t).await?; assert_eq!(info.name, "minimal.xdc"); assert_eq!(info.icon, WEBXDC_DEFAULT_ICON.to_string()); let mut instance = create_webxdc_instance( &t, "with-manifest-empty-name.xdc", include_bytes!("../test-data/webxdc/with-manifest-empty-name.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; let info = instance.get_webxdc_info(&t).await?; assert_eq!(info.name, "with-manifest-empty-name.xdc"); assert_eq!(info.icon, WEBXDC_DEFAULT_ICON.to_string()); let mut instance = create_webxdc_instance( &t, "with-manifest-no-name.xdc", include_bytes!("../test-data/webxdc/with-manifest-no-name.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; let info = instance.get_webxdc_info(&t).await?; assert_eq!(info.name, "with-manifest-no-name.xdc"); assert_eq!(info.icon, WEBXDC_DEFAULT_ICON.to_string()); let mut instance = create_webxdc_instance( &t, "with-minimal-manifest.xdc", include_bytes!("../test-data/webxdc/with-minimal-manifest.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; let info = instance.get_webxdc_info(&t).await?; assert_eq!(info.name, "nice app!"); assert_eq!(info.icon, WEBXDC_DEFAULT_ICON.to_string()); let mut instance = create_webxdc_instance( &t, "with-manifest-and-png-icon.xdc", include_bytes!("../test-data/webxdc/with-manifest-and-png-icon.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; let info = instance.get_webxdc_info(&t).await?; assert_eq!(info.name, "with some icon"); assert_eq!(info.icon, "icon.png"); let mut instance = create_webxdc_instance( &t, "with-png-icon.xdc", include_bytes!("../test-data/webxdc/with-png-icon.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; let info = instance.get_webxdc_info(&t).await?; assert_eq!(info.name, "with-png-icon.xdc"); assert_eq!(info.icon, "icon.png"); let mut instance = create_webxdc_instance( &t, "with-jpg-icon.xdc", include_bytes!("../test-data/webxdc/with-jpg-icon.xdc"), ) .await?; chat_id.set_draft(&t, Some(&mut instance)).await?; let info = instance.get_webxdc_info(&t).await?; assert_eq!(info.name, "with-jpg-icon.xdc"); assert_eq!(info.icon, "icon.jpg"); let msg_id = send_text_msg(&t, chat_id, "foo".to_string()).await?; let msg = Message::load_from_db(&t, msg_id).await?; let result = msg.get_webxdc_info(&t).await; assert!(result.is_err()); Ok(()) } #[async_std::test] async fn test_webxdc_info_summary() -> Result<()> { let alice = TestContext::new_alice().await; let bob = TestContext::new_bob().await; // Alice creates an webxdc instance and updates summary let alice_chat = alice.create_chat(&bob).await; let alice_instance = send_webxdc_instance(&alice, alice_chat.id).await?; let sent_instance = &alice.pop_sent_msg().await; let info = alice_instance.get_webxdc_info(&alice).await?; assert_eq!(info.summary, "".to_string()); alice .send_webxdc_status_update( alice_instance.id, r#"{"summary":"sum: 1", "payload":1}"#, "descr", ) .await?; let sent_update1 = &alice.pop_sent_msg().await; let info = Message::load_from_db(&alice, alice_instance.id) .await? .get_webxdc_info(&alice) .await?; assert_eq!(info.summary, "sum: 1".to_string()); alice .send_webxdc_status_update( alice_instance.id, r#"{"summary":"sum: 2", "payload":2}"#, "descr", ) .await?; let sent_update2 = &alice.pop_sent_msg().await; let info = Message::load_from_db(&alice, alice_instance.id) .await? .get_webxdc_info(&alice) .await?; assert_eq!(info.summary, "sum: 2".to_string()); // Bob receives the updates bob.recv_msg(sent_instance).await; let bob_instance = bob.get_last_msg().await; bob.recv_msg(sent_update1).await; bob.recv_msg(sent_update2).await; let info = Message::load_from_db(&bob, bob_instance.id) .await? .get_webxdc_info(&bob) .await?; assert_eq!(info.summary, "sum: 2".to_string()); // Alice has a second device and also receives the updates there let alice2 = TestContext::new_alice().await; alice2.recv_msg(sent_instance).await; let alice2_instance = alice2.get_last_msg().await; alice2.recv_msg(sent_update1).await; alice2.recv_msg(sent_update2).await; let info = Message::load_from_db(&alice2, alice2_instance.id) .await? .get_webxdc_info(&alice2) .await?; assert_eq!(info.summary, "sum: 2".to_string()); Ok(()) } #[async_std::test] async fn test_webxdc_info_msg() -> Result<()> { let alice = TestContext::new_alice().await; let bob = TestContext::new_bob().await; // Alice sends update with an info message let alice_chat = alice.create_chat(&bob).await; let alice_instance = send_webxdc_instance(&alice, alice_chat.id).await?; let sent1 = &alice.pop_sent_msg().await; assert_eq!(alice_chat.id.get_msg_cnt(&alice).await?, 1); alice .send_webxdc_status_update( alice_instance.id, r#"{"info":"this appears in-chat", "payload":"sth. else"}"#, "descr text", ) .await?; let sent2 = &alice.pop_sent_msg().await; assert_eq!(alice_chat.id.get_msg_cnt(&alice).await?, 2); let info_msg = alice.get_last_msg().await; assert!(info_msg.is_info()); assert_eq!( info_msg.get_text(), Some("this appears in-chat".to_string()) ); assert_eq!( info_msg.parent(&alice).await?.unwrap().id, alice_instance.id ); assert!(info_msg.quoted_message(&alice).await?.is_none()); assert_eq!( alice .get_webxdc_status_updates(alice_instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":"sth. else","info":"this appears in-chat","serial":1,"max_serial":1}]"# ); // Bob receives all messages bob.recv_msg(sent1).await; let bob_instance = bob.get_last_msg().await; let bob_chat_id = bob_instance.chat_id; bob.recv_msg(sent2).await; assert_eq!(bob_chat_id.get_msg_cnt(&bob).await?, 2); let info_msg = bob.get_last_msg().await; assert!(info_msg.is_info()); assert_eq!( info_msg.get_text(), Some("this appears in-chat".to_string()) ); assert_eq!(info_msg.parent(&bob).await?.unwrap().id, bob_instance.id); assert!(info_msg.quoted_message(&bob).await?.is_none()); assert_eq!( bob.get_webxdc_status_updates(bob_instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":"sth. else","info":"this appears in-chat","serial":1,"max_serial":1}]"# ); // Alice has a second device and also receives the info message there let alice2 = TestContext::new_alice().await; alice2.recv_msg(sent1).await; let alice2_instance = alice2.get_last_msg().await; let alice2_chat_id = alice2_instance.chat_id; alice2.recv_msg(sent2).await; assert_eq!(alice2_chat_id.get_msg_cnt(&alice2).await?, 2); let info_msg = alice2.get_last_msg().await; assert!(info_msg.is_info()); assert_eq!( info_msg.get_text(), Some("this appears in-chat".to_string()) ); assert_eq!( info_msg.parent(&alice2).await?.unwrap().id, alice2_instance.id ); assert!(info_msg.quoted_message(&alice2).await?.is_none()); assert_eq!( alice2 .get_webxdc_status_updates(alice2_instance.id, StatusUpdateSerial(0)) .await?, r#"[{"payload":"sth. else","info":"this appears in-chat","serial":1,"max_serial":1}]"# ); Ok(()) } #[async_std::test] async fn test_webxdc_opportunistic_encryption() -> Result<()> { let alice = TestContext::new_alice().await; let bob = TestContext::new_bob().await; // Bob sends sth. to Alice, Alice has Bob's key let bob_chat_id = create_group_chat(&bob, ProtectionStatus::Unprotected, "chat").await?; add_contact_to_chat( &bob, bob_chat_id, Contact::create(&bob, "", "alice@example.org").await?, ) .await?; send_text_msg(&bob, bob_chat_id, "populate".to_string()).await?; alice.recv_msg(&bob.pop_sent_msg().await).await; // Alice sends instance+update to Bob let alice_chat_id = alice.get_last_msg().await.chat_id; alice_chat_id.accept(&alice).await?; let alice_instance = send_webxdc_instance(&alice, alice_chat_id).await?; let sent1 = &alice.pop_sent_msg().await; let update_msg_id = alice .send_webxdc_status_update(alice_instance.id, r#"{"payload":42}"#, "descr") .await? .unwrap(); let update_msg = Message::load_from_db(&alice, update_msg_id).await?; let sent2 = &alice.pop_sent_msg().await; assert!(alice_instance.get_showpadlock()); assert!(update_msg.get_showpadlock()); // Bob receives instance+update bob.recv_msg(sent1).await; let bob_instance = bob.get_last_msg().await; bob.recv_msg(sent2).await; assert!(bob_instance.get_showpadlock()); // Bob adds Claire with unknown key, update to Alice+Claire cannot be encrypted add_contact_to_chat( &bob, bob_chat_id, Contact::create(&bob, "", "claire@example.org").await?, ) .await?; let update_msg_id = bob .send_webxdc_status_update(bob_instance.id, r#"{"payload":43}"#, "descr") .await? .unwrap(); let update_msg = Message::load_from_db(&bob, update_msg_id).await?; assert!(!update_msg.get_showpadlock()); Ok(()) } #[async_std::test] async fn test_webxdc_chatlist_summary() -> Result<()> { let t = TestContext::new_alice().await; let chat_id = create_group_chat(&t, ProtectionStatus::Unprotected, "chat").await?; let mut instance = create_webxdc_instance( &t, "with-minimal-manifest.xdc", include_bytes!("../test-data/webxdc/with-minimal-manifest.xdc"), ) .await?; send_msg(&t, chat_id, &mut instance).await?; let chatlist = Chatlist::try_load(&t, 0, None, None).await?; assert_eq!(chatlist.len(), 1); let summary = chatlist.get_summary(&t, 0, None).await?; assert_eq!(summary.text, "nice app!".to_string()); Ok(()) } #[async_std::test] async fn test_webxdc_and_text() -> Result<()> { let alice = TestContext::new_alice().await; let bob = TestContext::new_bob().await; // Alice sends instance and adds some text let alice_chat = alice.create_chat(&bob).await; let mut alice_instance = create_webxdc_instance( &alice, "minimal.xdc", include_bytes!("../test-data/webxdc/minimal.xdc"), ) .await?; alice_instance.set_text(Some("user added text".to_string())); send_msg(&alice, alice_chat.id, &mut alice_instance).await?; let alice_instance = alice.get_last_msg().await; assert_eq!( alice_instance.get_text(), Some("user added text".to_string()) ); // Bob receives that instance let sent1 = alice.pop_sent_msg().await; bob.recv_msg(&sent1).await; let bob_instance = bob.get_last_msg().await; assert_eq!(bob_instance.get_text(), Some("user added text".to_string())); // Alice's second device receives the instance as well let alice2 = TestContext::new_alice().await; alice2.recv_msg(&sent1).await; let alice2_instance = alice2.get_last_msg().await; assert_eq!( alice2_instance.get_text(), Some("user added text".to_string()) ); Ok(()) } }