mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-14 00:14:03 +00:00
d4dccd17ae
Merge pull request 'Adding unique ap_ids. Fixes #1100' (#90) from unique_ap_ids into activity-sender Reviewed-on: https://yerbamate.dev/LemmyNet/lemmy/pulls/90 Adding back in on_conflict. Trying to add back in the on_conflict_do_nothing. Trying to reduce delay time. Removing createFakes. Removing some unit tests. Adding comment jest timeout. Fixing tests again. Fixing tests again. Merge branch 'activity-sender' into unique_ap_ids_2 Replace actix client with reqwest to speed up federation tests Trying to fix tests again. Fixing unit tests. Fixing some broken unit tests, not done yet. Adding uniques. Adding unique ap_ids. Fixes #1100 use proper sql functionality for upsert added logging in fetcher, replace post/comment::create with upsert no need to do an actual update in post/comment::upsert Merge branch 'main' into activity-sender implement upsert for user/community reuse http client got it working attempt to use background-jobs crate rewrite with proper error handling and less boilerplate remove do_send, dont return errors from activity_sender WIP: implement ActivitySender actor Co-authored-by: dessalines <dessalines@noreply.yerbamate.dev> Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Felix Ableitner <me@nutomic.com> Reviewed-on: https://yerbamate.dev/LemmyNet/lemmy/pulls/89
305 lines
9.8 KiB
TypeScript
Vendored
305 lines
9.8 KiB
TypeScript
Vendored
jest.setTimeout(120000);
|
|
import {
|
|
alpha,
|
|
beta,
|
|
gamma,
|
|
delta,
|
|
epsilon,
|
|
setupLogins,
|
|
createPost,
|
|
updatePost,
|
|
stickyPost,
|
|
lockPost,
|
|
searchPost,
|
|
likePost,
|
|
followBeta,
|
|
searchForBetaCommunity,
|
|
createComment,
|
|
deletePost,
|
|
removePost,
|
|
getPost,
|
|
unfollowRemotes,
|
|
delay,
|
|
} from './shared';
|
|
|
|
beforeAll(async () => {
|
|
await setupLogins();
|
|
await followBeta(alpha);
|
|
await followBeta(gamma);
|
|
await followBeta(delta);
|
|
await followBeta(epsilon);
|
|
await delay(10000);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await unfollowRemotes(alpha);
|
|
await unfollowRemotes(gamma);
|
|
await unfollowRemotes(delta);
|
|
await unfollowRemotes(epsilon);
|
|
});
|
|
|
|
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 delay();
|
|
|
|
// Make sure that post is liked on beta
|
|
let searchBeta = await searchPost(beta, postRes.post);
|
|
let betaPost = searchBeta.posts[0];
|
|
|
|
expect(betaPost).toBeDefined();
|
|
expect(betaPost.community_local).toBe(true);
|
|
expect(betaPost.creator_local).toBe(false);
|
|
expect(betaPost.score).toBe(1);
|
|
|
|
// 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();
|
|
|
|
// Epsilon has alpha blocked, it should not see the alpha post
|
|
let searchEpsilon = await searchPost(epsilon, postRes.post);
|
|
expect(searchEpsilon.posts[0]).toBeUndefined();
|
|
});
|
|
|
|
test('Create a post in a non-existent community', async () => {
|
|
let postRes = await createPost(alpha, -2);
|
|
expect(postRes).toStrictEqual({ error: 'couldnt_create_post' });
|
|
});
|
|
|
|
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();
|
|
|
|
// 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 delay();
|
|
|
|
// Make sure that post is unliked on beta
|
|
let searchBeta = await searchPost(beta, postRes.post);
|
|
let betaPost = searchBeta.posts[0];
|
|
|
|
expect(betaPost).toBeDefined();
|
|
expect(betaPost.community_local).toBe(true);
|
|
expect(betaPost.creator_local).toBe(false);
|
|
expect(betaPost.score).toBe(0);
|
|
});
|
|
|
|
test('Update a post', async () => {
|
|
let search = await searchForBetaCommunity(alpha);
|
|
let postRes = await createPost(alpha, search.communities[0].id);
|
|
await delay();
|
|
|
|
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();
|
|
|
|
// 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);
|
|
await delay();
|
|
|
|
// Make sure lemmy beta cannot update the post
|
|
let updatedPostBeta = await updatePost(beta, betaPost);
|
|
expect(updatedPostBeta).toStrictEqual({ error: '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();
|
|
|
|
let stickiedPostRes = await stickyPost(alpha, true, postRes.post);
|
|
expect(stickiedPostRes.post.stickied).toBe(true);
|
|
await delay();
|
|
|
|
// 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);
|
|
|
|
// Unsticky a post
|
|
let unstickiedPost = await stickyPost(alpha, false, postRes.post);
|
|
expect(unstickiedPost.post.stickied).toBe(false);
|
|
await delay();
|
|
|
|
// 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);
|
|
|
|
// 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);
|
|
});
|
|
|
|
test('Lock a post', async () => {
|
|
let search = await searchForBetaCommunity(alpha);
|
|
await delay();
|
|
let postRes = await createPost(alpha, search.communities[0].id);
|
|
await delay();
|
|
|
|
let lockedPostRes = await lockPost(alpha, true, postRes.post);
|
|
expect(lockedPostRes.post.locked).toBe(true);
|
|
await delay();
|
|
|
|
// Make sure that post is locked 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.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();
|
|
|
|
// Try to create a new comment, on beta
|
|
let commentBeta = await createComment(beta, betaPost.id);
|
|
expect(commentBeta['error']).toBe('locked');
|
|
await delay();
|
|
|
|
// 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);
|
|
});
|
|
|
|
test('Delete a post', async () => {
|
|
let search = await searchForBetaCommunity(alpha);
|
|
let postRes = await createPost(alpha, search.communities[0].id);
|
|
await delay();
|
|
|
|
let deletedPost = await deletePost(alpha, true, postRes.post);
|
|
expect(deletedPost.post.deleted).toBe(true);
|
|
await delay();
|
|
|
|
// 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();
|
|
|
|
// Undelete
|
|
let undeletedPost = await deletePost(alpha, false, postRes.post);
|
|
expect(undeletedPost.post.deleted).toBe(false);
|
|
await delay();
|
|
|
|
// 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);
|
|
|
|
// Make sure lemmy beta cannot delete the post
|
|
let deletedPostBeta = await deletePost(beta, true, betaPost2);
|
|
expect(deletedPostBeta).toStrictEqual({ error: '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();
|
|
|
|
// 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();
|
|
|
|
// Undelete
|
|
let undeletedPost = await removePost(alpha, false, postRes.post);
|
|
expect(undeletedPost.post.removed).toBe(false);
|
|
await delay();
|
|
|
|
// 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);
|
|
});
|
|
|
|
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 delay();
|
|
|
|
// Get the id for beta
|
|
let searchBeta = await searchPost(beta, postRes.post);
|
|
let betaPost = searchBeta.posts[0];
|
|
await delay();
|
|
|
|
// The beta admin removes it (the community lives on beta)
|
|
let removePostRes = await removePost(beta, true, betaPost);
|
|
expect(removePostRes.post.removed).toBe(true);
|
|
await delay();
|
|
|
|
// Make sure lemmy alpha sees post is removed
|
|
let alphaPost = await getPost(alpha, postRes.post.id);
|
|
expect(alphaPost.post.removed).toBe(true);
|
|
await delay();
|
|
|
|
// Undelete
|
|
let undeletedPost = await removePost(beta, false, betaPost);
|
|
expect(undeletedPost.post.removed).toBe(false);
|
|
await delay();
|
|
|
|
// Make sure lemmy alpha sees post is undeleted
|
|
let alphaPost2 = await getPost(alpha, postRes.post.id);
|
|
expect(alphaPost2.post.removed).toBe(false);
|
|
});
|
|
|
|
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();
|
|
});
|
|
|
|
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();
|
|
|
|
let search2 = await searchPost(gamma, postRes.post);
|
|
expect(search2.posts[0].name).toBeDefined();
|
|
});
|