X-Git-Url: http://these/git/?a=blobdiff_plain;f=api_tests%2Fsrc%2Fpost.spec.ts;h=42173dba81959126caab13bc9d567ba3c842d3cb;hb=3471f3533cb724b2cf6953d563aadfcc9f66c1d2;hp=cf60987c663dddd6d2279ff58ada9f865e4c2b84;hpb=4a61758bdecc7e2e8254426f130335b1efae3119;p=lemmy.git diff --git a/api_tests/src/post.spec.ts b/api_tests/src/post.spec.ts index cf60987c..42173dba 100644 --- a/api_tests/src/post.spec.ts +++ b/api_tests/src/post.spec.ts @@ -1,4 +1,6 @@ jest.setTimeout(120000); + +import { CommunityView } from "lemmy-js-client/dist/types/CommunityView"; import { alpha, beta, @@ -7,399 +9,517 @@ import { epsilon, setupLogins, createPost, - updatePost, - stickyPost, + editPost, + featurePost, lockPost, - searchPost, + resolvePost, likePost, followBeta, - searchForBetaCommunity, + resolveBetaCommunity, createComment, deletePost, removePost, getPost, unfollowRemotes, - delay, - longDelay, - searchForUser, - banUserFromSite, + resolvePerson, + banPersonFromSite, searchPostLocal, - banUserFromCommunity, -} from './shared'; -import { - Post, -} from 'lemmy-js-client'; + followCommunity, + banPersonFromCommunity, + reportPost, + listPostReports, + randomString, + registerUser, + API, + getSite, + unfollows, + resolveCommunity, +} from "./shared"; +import { PostView } from "lemmy-js-client/dist/types/PostView"; +import { CreatePost } from "lemmy-js-client/dist/types/CreatePost"; + +let betaCommunity: CommunityView | undefined; beforeAll(async () => { await setupLogins(); - await followBeta(alpha); - await followBeta(gamma); - await followBeta(delta); - await followBeta(epsilon); - await longDelay(); + betaCommunity = (await resolveBetaCommunity(alpha)).community; + expect(betaCommunity).toBeDefined(); + await unfollows(); }); afterAll(async () => { - await unfollowRemotes(alpha); - await unfollowRemotes(gamma); - await unfollowRemotes(delta); - await unfollowRemotes(epsilon); + await unfollows(); }); -function assertPostFederation( - postOne: Post, - postTwo: Post) { - expect(postOne.ap_id).toBe(postTwo.ap_id); - expect(postOne.name).toBe(postTwo.name); - expect(postOne.body).toBe(postTwo.body); - expect(postOne.url).toBe(postTwo.url); - expect(postOne.nsfw).toBe(postTwo.nsfw); - expect(postOne.embed_title).toBe(postTwo.embed_title); - expect(postOne.embed_description).toBe(postTwo.embed_description); - expect(postOne.embed_html).toBe(postTwo.embed_html); - expect(postOne.published).toBe(postTwo.published); - expect(postOne.community_actor_id).toBe(postTwo.community_actor_id); - expect(postOne.locked).toBe(postTwo.locked); - expect(postOne.removed).toBe(postTwo.removed); - expect(postOne.deleted).toBe(postTwo.deleted); +function assertPostFederation(postOne?: PostView, postTwo?: PostView) { + expect(postOne?.post.ap_id).toBe(postTwo?.post.ap_id); + expect(postOne?.post.name).toBe(postTwo?.post.name); + expect(postOne?.post.body).toBe(postTwo?.post.body); + // TODO url clears arent working + // expect(postOne?.post.url).toBe(postTwo?.post.url); + expect(postOne?.post.nsfw).toBe(postTwo?.post.nsfw); + expect(postOne?.post.embed_title).toBe(postTwo?.post.embed_title); + expect(postOne?.post.embed_description).toBe(postTwo?.post.embed_description); + expect(postOne?.post.embed_video_url).toBe(postTwo?.post.embed_video_url); + expect(postOne?.post.published).toBe(postTwo?.post.published); + expect(postOne?.community.actor_id).toBe(postTwo?.community.actor_id); + expect(postOne?.post.locked).toBe(postTwo?.post.locked); + expect(postOne?.post.removed).toBe(postTwo?.post.removed); + expect(postOne?.post.deleted).toBe(postTwo?.post.deleted); } -test('Create a post', async () => { - let search = await searchForBetaCommunity(alpha); - await delay(); - let postRes = await createPost(alpha, search.communities[0].id); - expect(postRes.post).toBeDefined(); - expect(postRes.post.community_local).toBe(false); - expect(postRes.post.creator_local).toBe(true); - expect(postRes.post.score).toBe(1); - await longDelay(); +test("Create a post", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + + let postRes = await createPost(alpha, betaCommunity.community.id); + expect(postRes.post_view.post).toBeDefined(); + expect(postRes.post_view.community.local).toBe(false); + expect(postRes.post_view.creator.local).toBe(true); + expect(postRes.post_view.counts.score).toBe(1); // Make sure that post is liked on beta - let searchBeta = await searchPost(beta, postRes.post); - let betaPost = searchBeta.posts[0]; + let betaPost = (await resolvePost(beta, postRes.post_view.post)).post; expect(betaPost).toBeDefined(); - expect(betaPost.community_local).toBe(true); - expect(betaPost.creator_local).toBe(false); - expect(betaPost.score).toBe(1); - assertPostFederation(betaPost, postRes.post); + expect(betaPost?.community.local).toBe(true); + expect(betaPost?.creator.local).toBe(false); + expect(betaPost?.counts.score).toBe(1); + assertPostFederation(betaPost, postRes.post_view); // Delta only follows beta, so it should not see an alpha ap_id - let searchDelta = await searchPost(delta, postRes.post); - expect(searchDelta.posts[0]).toBeUndefined(); + await expect(resolvePost(delta, postRes.post_view.post)).rejects.toBe( + "couldnt_find_object", + ); // Epsilon has alpha blocked, it should not see the alpha post - let searchEpsilon = await searchPost(epsilon, postRes.post); - expect(searchEpsilon.posts[0]).toBeUndefined(); + await expect(resolvePost(epsilon, postRes.post_view.post)).rejects.toBe( + "couldnt_find_object", + ); }); -test('Create a post in a non-existent community', async () => { - let postRes = await createPost(alpha, -2); - expect(postRes).toStrictEqual({ error: 'couldnt_create_post' }); +test("Create a post in a non-existent community", async () => { + await expect(createPost(alpha, -2)).rejects.toBe("couldnt_find_community"); }); -test('Unlike a post', async () => { - let search = await searchForBetaCommunity(alpha); - let postRes = await createPost(alpha, search.communities[0].id); - await delay(); - let unlike = await likePost(alpha, 0, postRes.post); - expect(unlike.post.score).toBe(0); - await delay(); +test("Unlike a post", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + let postRes = await createPost(alpha, betaCommunity.community.id); + let unlike = await likePost(alpha, 0, postRes.post_view.post); + expect(unlike.post_view.counts.score).toBe(0); // Try to unlike it again, make sure it stays at 0 - let unlike2 = await likePost(alpha, 0, postRes.post); - expect(unlike2.post.score).toBe(0); - await longDelay(); + let unlike2 = await likePost(alpha, 0, postRes.post_view.post); + expect(unlike2.post_view.counts.score).toBe(0); // Make sure that post is unliked on beta - let searchBeta = await searchPost(beta, postRes.post); - let betaPost = searchBeta.posts[0]; - + let betaPost = (await resolvePost(beta, postRes.post_view.post)).post; expect(betaPost).toBeDefined(); - expect(betaPost.community_local).toBe(true); - expect(betaPost.creator_local).toBe(false); - expect(betaPost.score).toBe(0); - assertPostFederation(betaPost, postRes.post); + expect(betaPost?.community.local).toBe(true); + expect(betaPost?.creator.local).toBe(false); + expect(betaPost?.counts.score).toBe(0); + assertPostFederation(betaPost, postRes.post_view); }); -test('Update a post', async () => { - let search = await searchForBetaCommunity(alpha); - let postRes = await createPost(alpha, search.communities[0].id); - await delay(); +test("Update a post", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + let postRes = await createPost(alpha, betaCommunity.community.id); - let updatedName = 'A jest test federated post, updated'; - let updatedPost = await updatePost(alpha, postRes.post); - expect(updatedPost.post.name).toBe(updatedName); - expect(updatedPost.post.community_local).toBe(false); - expect(updatedPost.post.creator_local).toBe(true); - await delay(); + let updatedName = "A jest test federated post, updated"; + let updatedPost = await editPost(alpha, postRes.post_view.post); + expect(updatedPost.post_view.post.name).toBe(updatedName); + expect(updatedPost.post_view.community.local).toBe(false); + expect(updatedPost.post_view.creator.local).toBe(true); // Make sure that post is updated on beta - let searchBeta = await searchPost(beta, postRes.post); - let betaPost = searchBeta.posts[0]; - expect(betaPost.community_local).toBe(true); - expect(betaPost.creator_local).toBe(false); - expect(betaPost.name).toBe(updatedName); - assertPostFederation(betaPost, updatedPost.post); - await delay(); + let betaPost = (await resolvePost(beta, postRes.post_view.post)).post; + if (!betaPost) { + throw "Missing beta post"; + } + expect(betaPost.community.local).toBe(true); + expect(betaPost.creator.local).toBe(false); + expect(betaPost.post.name).toBe(updatedName); + assertPostFederation(betaPost, updatedPost.post_view); // Make sure lemmy beta cannot update the post - let updatedPostBeta = await updatePost(beta, betaPost); - expect(updatedPostBeta).toStrictEqual({ error: 'no_post_edit_allowed' }); + await expect(editPost(beta, betaPost.post)).rejects.toBe( + "no_post_edit_allowed", + ); }); -test('Sticky a post', async () => { - let search = await searchForBetaCommunity(alpha); - let postRes = await createPost(alpha, search.communities[0].id); - await delay(); +test("Sticky a post", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + let postRes = await createPost(alpha, betaCommunity.community.id); - let stickiedPostRes = await stickyPost(alpha, true, postRes.post); - expect(stickiedPostRes.post.stickied).toBe(true); - await delay(); + let betaPost1 = (await resolvePost(beta, postRes.post_view.post)).post; + if (!betaPost1) { + throw "Missing beta post1"; + } + let stickiedPostRes = await featurePost(beta, true, betaPost1.post); + expect(stickiedPostRes.post_view.post.featured_community).toBe(true); // Make sure that post is stickied on beta - let searchBeta = await searchPost(beta, postRes.post); - let betaPost = searchBeta.posts[0]; - expect(betaPost.community_local).toBe(true); - expect(betaPost.creator_local).toBe(false); - expect(betaPost.stickied).toBe(true); + let betaPost = (await resolvePost(beta, postRes.post_view.post)).post; + expect(betaPost?.community.local).toBe(true); + expect(betaPost?.creator.local).toBe(false); + expect(betaPost?.post.featured_community).toBe(true); // Unsticky a post - let unstickiedPost = await stickyPost(alpha, false, postRes.post); - expect(unstickiedPost.post.stickied).toBe(false); - await delay(); + let unstickiedPost = await featurePost(beta, false, betaPost1.post); + expect(unstickiedPost.post_view.post.featured_community).toBe(false); // Make sure that post is unstickied on beta - let searchBeta2 = await searchPost(beta, postRes.post); - let betaPost2 = searchBeta2.posts[0]; - expect(betaPost2.community_local).toBe(true); - expect(betaPost2.creator_local).toBe(false); - expect(betaPost2.stickied).toBe(false); + let betaPost2 = (await resolvePost(beta, postRes.post_view.post)).post; + expect(betaPost2?.community.local).toBe(true); + expect(betaPost2?.creator.local).toBe(false); + expect(betaPost2?.post.featured_community).toBe(false); // Make sure that gamma cannot sticky the post on beta - let searchGamma = await searchPost(gamma, postRes.post); - let gammaPost = searchGamma.posts[0]; - let gammaTrySticky = await stickyPost(gamma, true, gammaPost); - await delay(); - let searchBeta3 = await searchPost(beta, postRes.post); - let betaPost3 = searchBeta3.posts[0]; - expect(gammaTrySticky.post.stickied).toBe(true); - expect(betaPost3.stickied).toBe(false); + let gammaPost = (await resolvePost(gamma, postRes.post_view.post)).post; + if (!gammaPost) { + throw "Missing gamma post"; + } + let gammaTrySticky = await featurePost(gamma, true, gammaPost.post); + let betaPost3 = (await resolvePost(beta, postRes.post_view.post)).post; + expect(gammaTrySticky.post_view.post.featured_community).toBe(true); + expect(betaPost3?.post.featured_community).toBe(false); }); -test('Lock a post', async () => { - let search = await searchForBetaCommunity(alpha); - await delay(); - let postRes = await createPost(alpha, search.communities[0].id); - await delay(); +test("Lock a post", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + await followCommunity(alpha, true, betaCommunity.community.id); + let postRes = await createPost(alpha, betaCommunity.community.id); // Lock the post - let lockedPostRes = await lockPost(alpha, true, postRes.post); - expect(lockedPostRes.post.locked).toBe(true); - await longDelay(); - - // Make sure that post is locked on beta - let searchBeta = await searchPostLocal(beta, postRes.post); - let betaPost1 = searchBeta.posts[0]; - expect(betaPost1.locked).toBe(true); - await delay(); + let betaPost1 = (await resolvePost(beta, postRes.post_view.post)).post; + if (!betaPost1) { + throw "Missing beta post1"; + } + let lockedPostRes = await lockPost(beta, true, betaPost1.post); + expect(lockedPostRes.post_view.post.locked).toBe(true); + + // Make sure that post is locked on alpha + let searchAlpha = await searchPostLocal(alpha, postRes.post_view.post); + let alphaPost1 = searchAlpha.posts[0]; + expect(alphaPost1.post.locked).toBe(true); // Try to make a new comment there, on alpha - let comment = await createComment(alpha, postRes.post.id); - expect(comment['error']).toBe('locked'); - await delay(); + await expect(createComment(alpha, alphaPost1.post.id)).rejects.toBe("locked"); // Unlock a post - let unlockedPost = await lockPost(alpha, false, postRes.post); - expect(unlockedPost.post.locked).toBe(false); - await delay(); - - // Make sure that post is unlocked on beta - let searchBeta2 = await searchPost(beta, postRes.post); - let betaPost2 = searchBeta2.posts[0]; - expect(betaPost2.community_local).toBe(true); - expect(betaPost2.creator_local).toBe(false); - expect(betaPost2.locked).toBe(false); - - // Try to create a new comment, on beta - let commentBeta = await createComment(beta, betaPost2.id); - expect(commentBeta).toBeDefined(); + let unlockedPost = await lockPost(beta, false, betaPost1.post); + expect(unlockedPost.post_view.post.locked).toBe(false); + + // Make sure that post is unlocked on alpha + let searchAlpha2 = await searchPostLocal(alpha, postRes.post_view.post); + let alphaPost2 = searchAlpha2.posts[0]; + expect(alphaPost2.community.local).toBe(false); + expect(alphaPost2.creator.local).toBe(true); + expect(alphaPost2.post.locked).toBe(false); + + // Try to create a new comment, on alpha + let commentAlpha = await createComment(alpha, alphaPost1.post.id); + expect(commentAlpha).toBeDefined(); }); -test('Delete a post', async () => { - let search = await searchForBetaCommunity(alpha); - let postRes = await createPost(alpha, search.communities[0].id); - await delay(); +test("Delete a post", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + + let postRes = await createPost(alpha, betaCommunity.community.id); + expect(postRes.post_view.post).toBeDefined(); - let deletedPost = await deletePost(alpha, true, postRes.post); - expect(deletedPost.post.deleted).toBe(true); - await delay(); + let deletedPost = await deletePost(alpha, true, postRes.post_view.post); + expect(deletedPost.post_view.post.deleted).toBe(true); + expect(deletedPost.post_view.post.name).toBe(postRes.post_view.post.name); // Make sure lemmy beta sees post is deleted - let searchBeta = await searchPost(beta, postRes.post); - let betaPost = searchBeta.posts[0]; // This will be undefined because of the tombstone - expect(betaPost).toBeUndefined(); - await delay(); + await expect(resolvePost(beta, postRes.post_view.post)).rejects.toBe( + "couldnt_find_object", + ); // Undelete - let undeletedPost = await deletePost(alpha, false, postRes.post); - expect(undeletedPost.post.deleted).toBe(false); - await delay(); + let undeletedPost = await deletePost(alpha, false, postRes.post_view.post); + expect(undeletedPost.post_view.post.deleted).toBe(false); // Make sure lemmy beta sees post is undeleted - let searchBeta2 = await searchPost(beta, postRes.post); - let betaPost2 = searchBeta2.posts[0]; - expect(betaPost2.deleted).toBe(false); - assertPostFederation(betaPost2, undeletedPost.post); + let betaPost2 = (await resolvePost(beta, postRes.post_view.post)).post; + if (!betaPost2) { + throw "Missing beta post 2"; + } + expect(betaPost2.post.deleted).toBe(false); + assertPostFederation(betaPost2, undeletedPost.post_view); // Make sure lemmy beta cannot delete the post - let deletedPostBeta = await deletePost(beta, true, betaPost2); - expect(deletedPostBeta).toStrictEqual({ error: 'no_post_edit_allowed' }); + await expect(deletePost(beta, true, betaPost2.post)).rejects.toBe( + "no_post_edit_allowed", + ); }); -test('Remove a post from admin and community on different instance', async () => { - let search = await searchForBetaCommunity(alpha); - let postRes = await createPost(alpha, search.communities[0].id); - await delay(); - - let removedPost = await removePost(alpha, true, postRes.post); - expect(removedPost.post.removed).toBe(true); - await delay(); +test("Remove a post from admin and community on different instance", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + + let gammaCommunity = ( + await resolveCommunity(gamma, betaCommunity.community.actor_id) + ).community?.community; + if (!gammaCommunity) { + throw "Missing gamma community"; + } + let postRes = await createPost(gamma, gammaCommunity.id); + + let alphaPost = (await resolvePost(alpha, postRes.post_view.post)).post; + if (!alphaPost) { + throw "Missing alpha post"; + } + let removedPost = await removePost(alpha, true, alphaPost.post); + expect(removedPost.post_view.post.removed).toBe(true); + expect(removedPost.post_view.post.name).toBe(postRes.post_view.post.name); // Make sure lemmy beta sees post is NOT removed - let searchBeta = await searchPost(beta, postRes.post); - let betaPost = searchBeta.posts[0]; - expect(betaPost.removed).toBe(false); - await delay(); + let betaPost = (await resolvePost(beta, postRes.post_view.post)).post; + if (!betaPost) { + throw "Missing beta post"; + } + expect(betaPost.post.removed).toBe(false); // Undelete - let undeletedPost = await removePost(alpha, false, postRes.post); - expect(undeletedPost.post.removed).toBe(false); - await delay(); + let undeletedPost = await removePost(alpha, false, alphaPost.post); + expect(undeletedPost.post_view.post.removed).toBe(false); // Make sure lemmy beta sees post is undeleted - let searchBeta2 = await searchPost(beta, postRes.post); - let betaPost2 = searchBeta2.posts[0]; - expect(betaPost2.removed).toBe(false); - assertPostFederation(betaPost2, undeletedPost.post); + let betaPost2 = (await resolvePost(beta, postRes.post_view.post)).post; + expect(betaPost2?.post.removed).toBe(false); + assertPostFederation(betaPost2, undeletedPost.post_view); }); -test('Remove a post from admin and community on same instance', async () => { - let search = await searchForBetaCommunity(alpha); - let postRes = await createPost(alpha, search.communities[0].id); - await longDelay(); +test("Remove a post from admin and community on same instance", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + await followBeta(alpha); + let postRes = await createPost(alpha, betaCommunity.community.id); + expect(postRes.post_view.post).toBeDefined(); // Get the id for beta - let searchBeta = await searchPost(beta, postRes.post); + let searchBeta = await searchPostLocal(beta, postRes.post_view.post); let betaPost = searchBeta.posts[0]; - await longDelay(); + expect(betaPost).toBeDefined(); // The beta admin removes it (the community lives on beta) - let removePostRes = await removePost(beta, true, betaPost); - expect(removePostRes.post.removed).toBe(true); - await longDelay(); + let removePostRes = await removePost(beta, true, betaPost.post); + expect(removePostRes.post_view.post.removed).toBe(true); // Make sure lemmy alpha sees post is removed - let alphaPost = await getPost(alpha, postRes.post.id); - expect(alphaPost.post.removed).toBe(true); - assertPostFederation(alphaPost.post, removePostRes.post); - await longDelay(); + // let alphaPost = await getPost(alpha, postRes.post_view.post.id); + // expect(alphaPost.post_view.post.removed).toBe(true); // TODO this shouldn't be commented + // assertPostFederation(alphaPost.post_view, removePostRes.post_view); // Undelete - let undeletedPost = await removePost(beta, false, betaPost); - expect(undeletedPost.post.removed).toBe(false); - await longDelay(); + let undeletedPost = await removePost(beta, false, betaPost.post); + expect(undeletedPost.post_view.post.removed).toBe(false); // Make sure lemmy alpha sees post is undeleted - let alphaPost2 = await getPost(alpha, postRes.post.id); - await delay(); - expect(alphaPost2.post.removed).toBe(false); - assertPostFederation(alphaPost2.post, undeletedPost.post); -}); - -test('Search for a post', async () => { - let search = await searchForBetaCommunity(alpha); - await delay(); - let postRes = await createPost(alpha, search.communities[0].id); - await delay(); - let searchBeta = await searchPost(beta, postRes.post); - - expect(searchBeta.posts[0].name).toBeDefined(); + let alphaPost2 = await getPost(alpha, postRes.post_view.post.id); + expect(alphaPost2.post_view.post.removed).toBe(false); + assertPostFederation(alphaPost2.post_view, undeletedPost.post_view); + await unfollowRemotes(alpha); }); -test('A and G subscribe to B (center) A posts, it gets announced to G', async () => { - let search = await searchForBetaCommunity(alpha); - let postRes = await createPost(alpha, search.communities[0].id); - await delay(); +test("Search for a post", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + await unfollowRemotes(alpha); + let postRes = await createPost(alpha, betaCommunity.community.id); + expect(postRes.post_view.post).toBeDefined(); - let search2 = await searchPost(gamma, postRes.post); - expect(search2.posts[0].name).toBeDefined(); + let betaPost = (await resolvePost(beta, postRes.post_view.post)).post; + expect(betaPost?.post.name).toBeDefined(); }); -test('Enforce site ban for federated user', async () => { +test("Enforce site ban for federated user", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + // create a test user + let alphaUserJwt = await registerUser(alpha); + expect(alphaUserJwt).toBeDefined(); + let alpha_user: API = { + client: alpha.client, + auth: alphaUserJwt.jwt ?? "", + }; + let alphaUserActorId = (await getSite(alpha_user)).my_user?.local_user_view + .person.actor_id; + if (!alphaUserActorId) { + throw "Missing alpha user actor id"; + } + expect(alphaUserActorId).toBeDefined(); + let alphaPerson = (await resolvePerson(alpha_user, alphaUserActorId)).person; + if (!alphaPerson) { + throw "Missing alpha person"; + } + expect(alphaPerson).toBeDefined(); + + // alpha makes post in beta community, it federates to beta instance + let postRes1 = await createPost(alpha_user, betaCommunity.community.id); + let searchBeta1 = await searchPostLocal(beta, postRes1.post_view.post); + expect(searchBeta1.posts[0]).toBeDefined(); + + // ban alpha from its instance + let banAlpha = await banPersonFromSite( + alpha, + alphaPerson.person.id, + true, + true, + ); + expect(banAlpha.banned).toBe(true); - let alphaShortname = `@lemmy_alpha@lemmy-alpha:8541`; - let userSearch = await searchForUser(beta, alphaShortname); - let alphaUser = userSearch.users[0]; - expect(alphaUser).toBeDefined(); - await delay(); + // alpha ban should be federated to beta + let alphaUserOnBeta1 = await resolvePerson(beta, alphaUserActorId); + expect(alphaUserOnBeta1.person?.person.banned).toBe(true); - // ban alpha from beta site - let banAlpha = await banUserFromSite(beta, alphaUser.id, true); - expect(banAlpha.banned).toBe(true); - await longDelay(); - - // Alpha makes post on beta - let search = await searchForBetaCommunity(alpha); - await delay(); - let postRes = await createPost(alpha, search.communities[0].id); - expect(postRes.post).toBeDefined(); - expect(postRes.post.community_local).toBe(false); - expect(postRes.post.creator_local).toBe(true); - expect(postRes.post.score).toBe(1); - await longDelay(); - - // Make sure that post doesn't make it to beta - let searchBeta = await searchPostLocal(beta, postRes.post); - let betaPost = searchBeta.posts[0]; - expect(betaPost).toBeUndefined(); - await delay(); + // existing alpha post should be removed on beta + let searchBeta2 = await getPost(beta, searchBeta1.posts[0].post.id); + expect(searchBeta2.post_view.post.removed).toBe(true); // Unban alpha - let unBanAlpha = await banUserFromSite(beta, alphaUser.id, false); + let unBanAlpha = await banPersonFromSite( + alpha, + alphaPerson.person.id, + false, + false, + ); expect(unBanAlpha.banned).toBe(false); + + // alpha makes new post in beta community, it federates + let postRes2 = await createPost(alpha_user, betaCommunity.community.id); + let searchBeta3 = await searchPostLocal(beta, postRes2.post_view.post); + expect(searchBeta3.posts[0]).toBeDefined(); + + let alphaUserOnBeta2 = await resolvePerson(beta, alphaUserActorId); + expect(alphaUserOnBeta2.person?.person.banned).toBe(false); }); -test('Enforce community ban for federated user', async () => { +test.skip("Enforce community ban for federated user", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } let alphaShortname = `@lemmy_alpha@lemmy-alpha:8541`; - let userSearch = await searchForUser(beta, alphaShortname); - let alphaUser = userSearch.users[0]; - expect(alphaUser).toBeDefined(); - await delay(); - - // ban alpha from beta site - await banUserFromCommunity(beta, alphaUser.id, 2, false); - let banAlpha = await banUserFromCommunity(beta, alphaUser.id, 2, true); + let alphaPerson = (await resolvePerson(beta, alphaShortname)).person; + if (!alphaPerson) { + throw "Missing alpha person"; + } + expect(alphaPerson).toBeDefined(); + + // make a post in beta, it goes through + let postRes1 = await createPost(alpha, betaCommunity.community.id); + let searchBeta1 = await searchPostLocal(beta, postRes1.post_view.post); + expect(searchBeta1.posts[0]).toBeDefined(); + + // ban alpha from beta community + let banAlpha = await banPersonFromCommunity( + beta, + alphaPerson.person.id, + 2, + true, + true, + ); expect(banAlpha.banned).toBe(true); - await longDelay(); - - // Alpha makes post on beta - let search = await searchForBetaCommunity(alpha); - await delay(); - let postRes = await createPost(alpha, search.communities[0].id); - expect(postRes.post).toBeDefined(); - expect(postRes.post.community_local).toBe(false); - expect(postRes.post.creator_local).toBe(true); - expect(postRes.post.score).toBe(1); - await longDelay(); - - // Make sure that post doesn't make it to beta community - let searchBeta = await searchPostLocal(beta, postRes.post); - let betaPost = searchBeta.posts[0]; - expect(betaPost).toBeUndefined(); + + // ensure that the post by alpha got removed + await expect(getPost(alpha, searchBeta1.posts[0].post.id)).rejects.toBe( + "unknown", + ); + + // Alpha tries to make post on beta, but it fails because of ban + await expect(createPost(alpha, betaCommunity.community.id)).rejects.toBe( + "banned_from_community", + ); // Unban alpha - let unBanAlpha = await banUserFromCommunity(beta, alphaUser.id, 2, false); + let unBanAlpha = await banPersonFromCommunity( + beta, + alphaPerson.person.id, + 2, + false, + false, + ); expect(unBanAlpha.banned).toBe(false); + let postRes3 = await createPost(alpha, betaCommunity.community.id); + expect(postRes3.post_view.post).toBeDefined(); + expect(postRes3.post_view.community.local).toBe(false); + expect(postRes3.post_view.creator.local).toBe(true); + expect(postRes3.post_view.counts.score).toBe(1); + + // Make sure that post makes it to beta community + let searchBeta2 = await searchPostLocal(beta, postRes3.post_view.post); + expect(searchBeta2.posts[0]).toBeDefined(); +}); + +test("A and G subscribe to B (center) A posts, it gets announced to G", async () => { + if (!betaCommunity) { + throw "Missing beta community"; + } + let postRes = await createPost(alpha, betaCommunity.community.id); + expect(postRes.post_view.post).toBeDefined(); + + let betaPost = (await resolvePost(gamma, postRes.post_view.post)).post; + expect(betaPost?.post.name).toBeDefined(); +}); + +test("Report a post", async () => { + // Note, this is a different one from the setup + let betaCommunity = (await resolveBetaCommunity(beta)).community; + if (!betaCommunity) { + throw "Missing beta community"; + } + let postRes = await createPost(beta, betaCommunity.community.id); + expect(postRes.post_view.post).toBeDefined(); + + let alphaPost = (await resolvePost(alpha, postRes.post_view.post)).post; + if (!alphaPost) { + throw "Missing alpha post"; + } + let alphaReport = ( + await reportPost(alpha, alphaPost.post.id, randomString(10)) + ).post_report_view.post_report; + + let betaReport = (await listPostReports(beta)).post_reports[0].post_report; + expect(betaReport).toBeDefined(); + expect(betaReport.resolved).toBe(false); + expect(betaReport.original_post_name).toBe(alphaReport.original_post_name); + expect(betaReport.original_post_url).toBe(alphaReport.original_post_url); + expect(betaReport.original_post_body).toBe(alphaReport.original_post_body); + expect(betaReport.reason).toBe(alphaReport.reason); +}); + +test("Sanitize HTML", async () => { + let betaCommunity = (await resolveBetaCommunity(beta)).community; + if (!betaCommunity) { + throw "Missing beta community"; + } + + let name = randomString(5); + let body = " hello"; + let form: CreatePost = { + name, + body, + auth: beta.auth, + community_id: betaCommunity.community.id, + }; + let post = await beta.client.createPost(form); + expect(post.post_view.post.body).toBe(" hello"); });