X-Git-Url: http://these/git/?a=blobdiff_plain;f=api_tests%2Fsrc%2Fpost.spec.ts;h=42173dba81959126caab13bc9d567ba3c842d3cb;hb=3471f3533cb724b2cf6953d563aadfcc9f66c1d2;hp=01befa60cff84a15408986655112183c2c103791;hpb=1a0d1f64f0046a2b6af71d1dcb120ef164de581c;p=lemmy.git diff --git a/api_tests/src/post.spec.ts b/api_tests/src/post.spec.ts index 01befa60..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, @@ -8,30 +10,40 @@ import { setupLogins, createPost, editPost, - stickyPost, + featurePost, lockPost, - searchPost, + resolvePost, likePost, followBeta, - searchForBetaCommunity, + resolveBetaCommunity, createComment, deletePost, removePost, getPost, unfollowRemotes, - searchForUser, - banUserFromSite, + resolvePerson, + banPersonFromSite, searchPostLocal, - banUserFromCommunity, -} from './shared'; -import { PostView, CommunityView } from 'lemmy-js-client'; - -let betaCommunity: CommunityView; + 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(); - let search = await searchForBetaCommunity(alpha); - betaCommunity = search.communities[0]; + betaCommunity = (await resolveBetaCommunity(alpha)).community; + expect(betaCommunity).toBeDefined(); await unfollows(); }); @@ -39,30 +51,28 @@ afterAll(async () => { await unfollows(); }); -async function unfollows() { - await unfollowRemotes(alpha); - await unfollowRemotes(gamma); - await unfollowRemotes(delta); - await unfollowRemotes(epsilon); +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); } -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); - 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_html).toBe(postTwo.post.embed_html); - 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 () => { + if (!betaCommunity) { + throw "Missing beta community"; + } -test('Create a post', async () => { let postRes = await createPost(alpha, betaCommunity.community.id); expect(postRes.post_view.post).toBeDefined(); expect(postRes.post_view.community.local).toBe(false); @@ -70,30 +80,33 @@ test('Create a post', async () => { expect(postRes.post_view.counts.score).toBe(1); // Make sure that post is liked on beta - let searchBeta = await searchPost(beta, postRes.post_view.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.counts.score).toBe(1); + 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_view.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_view.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 () => { +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); @@ -103,154 +116,199 @@ test('Unlike a post', async () => { expect(unlike2.post_view.counts.score).toBe(0); // Make sure that post is unliked on beta - let searchBeta = await searchPost(beta, postRes.post_view.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.counts.score).toBe(0); + 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 () => { +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 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_view.post); - let betaPost = searchBeta.posts[0]; + 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 editPost(beta, betaPost.post); - 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 () => { +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_view.post); - expect(stickiedPostRes.post_view.post.stickied).toBe(true); + 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_view.post); - let betaPost = searchBeta.posts[0]; - expect(betaPost.community.local).toBe(true); - expect(betaPost.creator.local).toBe(false); - expect(betaPost.post.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_view.post); - expect(unstickiedPost.post_view.post.stickied).toBe(false); + 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_view.post); - let betaPost2 = searchBeta2.posts[0]; - expect(betaPost2.community.local).toBe(true); - expect(betaPost2.creator.local).toBe(false); - expect(betaPost2.post.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_view.post); - let gammaPost = searchGamma.posts[0]; - let gammaTrySticky = await stickyPost(gamma, true, gammaPost.post); - let searchBeta3 = await searchPost(beta, postRes.post_view.post); - let betaPost3 = searchBeta3.posts[0]; - expect(gammaTrySticky.post_view.post.stickied).toBe(true); - expect(betaPost3.post.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 () => { +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_view.post); + 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 beta - let searchBeta = await searchPostLocal(beta, postRes.post_view.post); - let betaPost1 = searchBeta.posts[0]; - expect(betaPost1.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: any = await createComment(alpha, postRes.post_view.post.id); - expect(comment['error']).toBe('locked'); + await expect(createComment(alpha, alphaPost1.post.id)).rejects.toBe("locked"); // Unlock a post - let unlockedPost = await lockPost(alpha, false, postRes.post_view.post); + let unlockedPost = await lockPost(beta, false, betaPost1.post); expect(unlockedPost.post_view.post.locked).toBe(false); - // Make sure that post is unlocked on beta - let searchBeta2 = await searchPost(beta, postRes.post_view.post); - let betaPost2 = searchBeta2.posts[0]; - expect(betaPost2.community.local).toBe(true); - expect(betaPost2.creator.local).toBe(false); - expect(betaPost2.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 beta - let commentBeta = await createComment(beta, betaPost2.post.id); - expect(commentBeta).toBeDefined(); + // Try to create a new comment, on alpha + let commentAlpha = await createComment(alpha, alphaPost1.post.id); + expect(commentAlpha).toBeDefined(); }); -test('Delete a post', async () => { +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_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_view.post); - let betaPost = searchBeta.posts[0]; // This will be undefined because of the tombstone - expect(betaPost).toBeUndefined(); + await expect(resolvePost(beta, postRes.post_view.post)).rejects.toBe( + "couldnt_find_object", + ); // Undelete 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_view.post); - let betaPost2 = searchBeta2.posts[0]; + 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.post); - 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 postRes = await createPost(alpha, betaCommunity.community.id); - - let removedPost = await removePost(alpha, true, postRes.post_view.post); +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_view.post); - let betaPost = searchBeta.posts[0]; + 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_view.post); + 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_view.post); - let betaPost2 = searchBeta2.posts[0]; - expect(betaPost2.post.removed).toBe(false); + 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 () => { +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(); @@ -265,7 +323,7 @@ test('Remove a post from admin and community on same instance', async () => { expect(removePostRes.post_view.post.removed).toBe(true); // Make sure lemmy alpha sees post is removed - let alphaPost = await getPost(alpha, postRes.post_view.post.id); + // 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); @@ -280,80 +338,188 @@ test('Remove a post from admin and community on same instance', async () => { await unfollowRemotes(alpha); }); -test('Search for a post', async () => { +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 searchBeta = await searchPost(beta, postRes.post_view.post); - - expect(searchBeta.posts[0].post.name).toBeDefined(); + let betaPost = (await resolvePost(beta, postRes.post_view.post)).post; + expect(betaPost?.post.name).toBeDefined(); }); -test('A and G subscribe to B (center) A posts, it gets announced to G', async () => { - let postRes = await createPost(alpha, betaCommunity.community.id); - expect(postRes.post_view.post).toBeDefined(); - - let search2 = await searchPost(gamma, postRes.post_view.post); - expect(search2.posts[0].post.name).toBeDefined(); -}); - -test('Enforce site ban for federated user', async () => { - let alphaShortname = `@lemmy_alpha@lemmy-alpha:8541`; - let userSearch = await searchForUser(beta, alphaShortname); - let alphaUser = userSearch.users[0]; - expect(alphaUser).toBeDefined(); - - // ban alpha from beta site - let banAlpha = await banUserFromSite(beta, alphaUser.user.id, true); +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); - // Alpha makes post on beta - 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); + // alpha ban should be federated to beta + let alphaUserOnBeta1 = await resolvePerson(beta, alphaUserActorId); + expect(alphaUserOnBeta1.person?.person.banned).toBe(true); - // Make sure that post doesn't make it to beta - let searchBeta = await searchPostLocal(beta, postRes.post_view.post); - let betaPost = searchBeta.posts[0]; - expect(betaPost).toBeUndefined(); + // 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.user.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(); - - // ban alpha from beta site - await banUserFromCommunity(beta, alphaUser.user.id, 2, false); - let banAlpha = await banUserFromCommunity(beta, alphaUser.user.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); - // Alpha makes post on beta - 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); + // ensure that the post by alpha got removed + await expect(getPost(alpha, searchBeta1.posts[0].post.id)).rejects.toBe( + "unknown", + ); - // Make sure that post doesn't make it to beta community - let searchBeta = await searchPostLocal(beta, postRes.post_view.post); - let betaPost = searchBeta.posts[0]; - expect(betaPost).toBeUndefined(); + // 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( + let unBanAlpha = await banPersonFromCommunity( beta, - alphaUser.user.id, + alphaPerson.person.id, 2, - false + 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"); });