]> Untitled Git - lemmy.git/blobdiff - crates/apub/src/protocol/activities/community/mod.rs
Implement separate mod activities for feature, lock post (#2716)
[lemmy.git] / crates / apub / src / protocol / activities / community / mod.rs
index 62f8329b6806731b6b18b8cb67ae171422b6a467..d43e111e0b989b814c609e7990578ca806f33f33 100644 (file)
@@ -1,7 +1,54 @@
-pub mod add_mod;
 pub mod announce;
-pub mod block_user;
-pub mod remove_mod;
+pub mod collection_add;
+pub mod collection_remove;
+pub mod lock_page;
 pub mod report;
-pub mod undo_block_user;
 pub mod update;
+
+#[cfg(test)]
+mod tests {
+  use crate::protocol::{
+    activities::community::{
+      announce::AnnounceActivity,
+      collection_add::CollectionAdd,
+      collection_remove::CollectionRemove,
+      lock_page::{LockPage, UndoLockPage},
+      report::Report,
+      update::UpdateCommunity,
+    },
+    tests::test_parse_lemmy_item,
+  };
+
+  #[test]
+  fn test_parse_lemmy_community_activities() {
+    test_parse_lemmy_item::<AnnounceActivity>(
+      "assets/lemmy/activities/community/announce_create_page.json",
+    )
+    .unwrap();
+
+    test_parse_lemmy_item::<CollectionAdd>("assets/lemmy/activities/community/add_mod.json")
+      .unwrap();
+    test_parse_lemmy_item::<CollectionRemove>("assets/lemmy/activities/community/remove_mod.json")
+      .unwrap();
+
+    test_parse_lemmy_item::<CollectionAdd>(
+      "assets/lemmy/activities/community/add_featured_post.json",
+    )
+    .unwrap();
+    test_parse_lemmy_item::<CollectionRemove>(
+      "assets/lemmy/activities/community/remove_featured_post.json",
+    )
+    .unwrap();
+
+    test_parse_lemmy_item::<LockPage>("assets/lemmy/activities/community/lock_page.json").unwrap();
+    test_parse_lemmy_item::<UndoLockPage>("assets/lemmy/activities/community/undo_lock_page.json")
+      .unwrap();
+
+    test_parse_lemmy_item::<UpdateCommunity>(
+      "assets/lemmy/activities/community/update_community.json",
+    )
+    .unwrap();
+
+    test_parse_lemmy_item::<Report>("assets/lemmy/activities/community/report_page.json").unwrap();
+  }
+}