2020-09-15 19:26:47 +00:00
|
|
|
jest.setTimeout(120000);
|
2022-07-30 03:55:59 +00:00
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
import { CommunityView } from "lemmy-js-client/dist/types/CommunityView";
|
2020-08-04 14:57:37 +00:00
|
|
|
import {
|
|
|
|
alpha,
|
|
|
|
beta,
|
2022-10-10 15:20:36 +00:00
|
|
|
gamma,
|
2020-08-04 14:57:37 +00:00
|
|
|
setupLogins,
|
2021-08-23 15:25:39 +00:00
|
|
|
resolveCommunity,
|
2020-08-04 14:57:37 +00:00
|
|
|
createCommunity,
|
|
|
|
deleteCommunity,
|
|
|
|
removeCommunity,
|
2020-11-05 20:19:06 +00:00
|
|
|
getCommunity,
|
|
|
|
followCommunity,
|
2022-10-10 15:20:36 +00:00
|
|
|
banPersonFromCommunity,
|
|
|
|
resolvePerson,
|
|
|
|
getSite,
|
|
|
|
createPost,
|
|
|
|
getPost,
|
|
|
|
resolvePost,
|
2022-10-27 09:24:07 +00:00
|
|
|
} from "./shared";
|
2020-08-04 14:57:37 +00:00
|
|
|
|
|
|
|
beforeAll(async () => {
|
|
|
|
await setupLogins();
|
|
|
|
});
|
|
|
|
|
2020-09-17 15:41:51 +00:00
|
|
|
function assertCommunityFederation(
|
2023-01-04 15:59:26 +00:00
|
|
|
communityOne?: CommunityView,
|
|
|
|
communityTwo?: CommunityView
|
2020-12-20 21:16:57 +00:00
|
|
|
) {
|
2023-01-04 15:59:26 +00:00
|
|
|
expect(communityOne?.community.actor_id).toBe(
|
|
|
|
communityTwo?.community.actor_id
|
|
|
|
);
|
|
|
|
expect(communityOne?.community.name).toBe(communityTwo?.community.name);
|
|
|
|
expect(communityOne?.community.title).toBe(communityTwo?.community.title);
|
|
|
|
expect(communityOne?.community.description).toBe(
|
|
|
|
communityTwo?.community.description
|
|
|
|
);
|
|
|
|
expect(communityOne?.community.icon).toBe(communityTwo?.community.icon);
|
|
|
|
expect(communityOne?.community.banner).toBe(communityTwo?.community.banner);
|
|
|
|
expect(communityOne?.community.published).toBe(
|
|
|
|
communityTwo?.community.published
|
|
|
|
);
|
|
|
|
expect(communityOne?.community.nsfw).toBe(communityTwo?.community.nsfw);
|
|
|
|
expect(communityOne?.community.removed).toBe(communityTwo?.community.removed);
|
|
|
|
expect(communityOne?.community.deleted).toBe(communityTwo?.community.deleted);
|
2020-09-17 15:41:51 +00:00
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
test("Create community", async () => {
|
2020-08-04 14:57:37 +00:00
|
|
|
let communityRes = await createCommunity(alpha);
|
2020-12-20 21:16:57 +00:00
|
|
|
expect(communityRes.community_view.community.name).toBeDefined();
|
2020-08-04 14:57:37 +00:00
|
|
|
|
|
|
|
// A dupe check
|
2020-12-20 21:16:57 +00:00
|
|
|
let prevName = communityRes.community_view.community.name;
|
|
|
|
let communityRes2: any = await createCommunity(alpha, prevName);
|
2022-10-27 09:24:07 +00:00
|
|
|
expect(communityRes2["error"]).toBe("community_already_exists");
|
2020-09-15 19:26:47 +00:00
|
|
|
|
|
|
|
// Cache the community on beta, make sure it has the other fields
|
|
|
|
let searchShort = `!${prevName}@lemmy-alpha:8541`;
|
2023-01-04 15:59:26 +00:00
|
|
|
let betaCommunity = (await resolveCommunity(beta, searchShort)).community;
|
2021-08-23 15:25:39 +00:00
|
|
|
assertCommunityFederation(betaCommunity, communityRes.community_view);
|
2020-08-04 14:57:37 +00:00
|
|
|
});
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
test("Delete community", async () => {
|
2020-08-04 14:57:37 +00:00
|
|
|
let communityRes = await createCommunity(beta);
|
2020-11-05 20:19:06 +00:00
|
|
|
|
|
|
|
// Cache the community on Alpha
|
2020-12-20 21:16:57 +00:00
|
|
|
let searchShort = `!${communityRes.community_view.community.name}@lemmy-beta:8551`;
|
2023-01-04 15:59:26 +00:00
|
|
|
let alphaCommunity = (await resolveCommunity(alpha, searchShort)).community;
|
|
|
|
if (!alphaCommunity) {
|
|
|
|
throw "Missing alpha community";
|
|
|
|
}
|
2021-08-23 15:25:39 +00:00
|
|
|
assertCommunityFederation(alphaCommunity, communityRes.community_view);
|
2020-11-05 20:19:06 +00:00
|
|
|
|
|
|
|
// Follow the community from alpha
|
2022-10-27 09:24:07 +00:00
|
|
|
let follow = await followCommunity(alpha, true, alphaCommunity.community.id);
|
2020-11-05 20:19:06 +00:00
|
|
|
|
|
|
|
// Make sure the follow response went through
|
2022-05-26 15:17:04 +00:00
|
|
|
expect(follow.community_view.community.local).toBe(false);
|
2020-11-05 20:19:06 +00:00
|
|
|
|
2020-08-04 14:57:37 +00:00
|
|
|
let deleteCommunityRes = await deleteCommunity(
|
|
|
|
beta,
|
|
|
|
true,
|
2020-12-20 21:16:57 +00:00
|
|
|
communityRes.community_view.community.id
|
2020-08-04 14:57:37 +00:00
|
|
|
);
|
2020-12-20 21:16:57 +00:00
|
|
|
expect(deleteCommunityRes.community_view.community.deleted).toBe(true);
|
2022-10-27 09:24:07 +00:00
|
|
|
expect(deleteCommunityRes.community_view.community.title).toBe(
|
|
|
|
communityRes.community_view.community.title
|
|
|
|
);
|
2020-08-04 14:57:37 +00:00
|
|
|
|
|
|
|
// Make sure it got deleted on A
|
2020-12-20 21:16:57 +00:00
|
|
|
let communityOnAlphaDeleted = await getCommunity(
|
|
|
|
alpha,
|
2021-08-23 15:25:39 +00:00
|
|
|
alphaCommunity.community.id
|
2020-12-20 21:16:57 +00:00
|
|
|
);
|
|
|
|
expect(communityOnAlphaDeleted.community_view.community.deleted).toBe(true);
|
2020-08-04 14:57:37 +00:00
|
|
|
|
|
|
|
// Undelete
|
|
|
|
let undeleteCommunityRes = await deleteCommunity(
|
|
|
|
beta,
|
|
|
|
false,
|
2020-12-20 21:16:57 +00:00
|
|
|
communityRes.community_view.community.id
|
2020-08-04 14:57:37 +00:00
|
|
|
);
|
2020-12-20 21:16:57 +00:00
|
|
|
expect(undeleteCommunityRes.community_view.community.deleted).toBe(false);
|
2020-08-04 14:57:37 +00:00
|
|
|
|
|
|
|
// Make sure it got undeleted on A
|
2020-12-20 21:16:57 +00:00
|
|
|
let communityOnAlphaUnDeleted = await getCommunity(
|
|
|
|
alpha,
|
2021-08-23 15:25:39 +00:00
|
|
|
alphaCommunity.community.id
|
2020-12-20 21:16:57 +00:00
|
|
|
);
|
|
|
|
expect(communityOnAlphaUnDeleted.community_view.community.deleted).toBe(
|
|
|
|
false
|
|
|
|
);
|
2020-08-04 14:57:37 +00:00
|
|
|
});
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
test("Remove community", async () => {
|
2020-08-04 14:57:37 +00:00
|
|
|
let communityRes = await createCommunity(beta);
|
2020-11-05 20:19:06 +00:00
|
|
|
|
|
|
|
// Cache the community on Alpha
|
2020-12-20 21:16:57 +00:00
|
|
|
let searchShort = `!${communityRes.community_view.community.name}@lemmy-beta:8551`;
|
2023-01-04 15:59:26 +00:00
|
|
|
let alphaCommunity = (await resolveCommunity(alpha, searchShort)).community;
|
|
|
|
if (!alphaCommunity) {
|
|
|
|
throw "Missing alpha community";
|
|
|
|
}
|
2021-08-23 15:25:39 +00:00
|
|
|
assertCommunityFederation(alphaCommunity, communityRes.community_view);
|
2020-11-05 20:19:06 +00:00
|
|
|
|
|
|
|
// Follow the community from alpha
|
2022-10-27 09:24:07 +00:00
|
|
|
let follow = await followCommunity(alpha, true, alphaCommunity.community.id);
|
2020-11-05 20:19:06 +00:00
|
|
|
|
|
|
|
// Make sure the follow response went through
|
2022-05-26 15:17:04 +00:00
|
|
|
expect(follow.community_view.community.local).toBe(false);
|
2020-11-05 20:19:06 +00:00
|
|
|
|
2020-08-04 14:57:37 +00:00
|
|
|
let removeCommunityRes = await removeCommunity(
|
|
|
|
beta,
|
|
|
|
true,
|
2020-12-20 21:16:57 +00:00
|
|
|
communityRes.community_view.community.id
|
2020-08-04 14:57:37 +00:00
|
|
|
);
|
2020-12-20 21:16:57 +00:00
|
|
|
expect(removeCommunityRes.community_view.community.removed).toBe(true);
|
2022-10-27 09:24:07 +00:00
|
|
|
expect(removeCommunityRes.community_view.community.title).toBe(
|
|
|
|
communityRes.community_view.community.title
|
|
|
|
);
|
2020-08-04 14:57:37 +00:00
|
|
|
|
2020-11-05 20:19:06 +00:00
|
|
|
// Make sure it got Removed on A
|
2020-12-20 21:16:57 +00:00
|
|
|
let communityOnAlphaRemoved = await getCommunity(
|
|
|
|
alpha,
|
2021-08-23 15:25:39 +00:00
|
|
|
alphaCommunity.community.id
|
2020-12-20 21:16:57 +00:00
|
|
|
);
|
|
|
|
expect(communityOnAlphaRemoved.community_view.community.removed).toBe(true);
|
2020-08-04 14:57:37 +00:00
|
|
|
|
|
|
|
// unremove
|
|
|
|
let unremoveCommunityRes = await removeCommunity(
|
|
|
|
beta,
|
|
|
|
false,
|
2020-12-20 21:16:57 +00:00
|
|
|
communityRes.community_view.community.id
|
2020-08-04 14:57:37 +00:00
|
|
|
);
|
2020-12-20 21:16:57 +00:00
|
|
|
expect(unremoveCommunityRes.community_view.community.removed).toBe(false);
|
2020-08-04 14:57:37 +00:00
|
|
|
|
2020-11-05 20:19:06 +00:00
|
|
|
// Make sure it got undeleted on A
|
2020-12-20 21:16:57 +00:00
|
|
|
let communityOnAlphaUnRemoved = await getCommunity(
|
|
|
|
alpha,
|
2021-08-23 15:25:39 +00:00
|
|
|
alphaCommunity.community.id
|
2020-12-20 21:16:57 +00:00
|
|
|
);
|
|
|
|
expect(communityOnAlphaUnRemoved.community_view.community.removed).toBe(
|
|
|
|
false
|
|
|
|
);
|
2020-08-04 14:57:37 +00:00
|
|
|
});
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
test("Search for beta community", async () => {
|
2020-11-05 20:19:06 +00:00
|
|
|
let communityRes = await createCommunity(beta);
|
2020-12-20 21:16:57 +00:00
|
|
|
expect(communityRes.community_view.community.name).toBeDefined();
|
2020-11-05 20:19:06 +00:00
|
|
|
|
2020-12-20 21:16:57 +00:00
|
|
|
let searchShort = `!${communityRes.community_view.community.name}@lemmy-beta:8551`;
|
2023-01-04 15:59:26 +00:00
|
|
|
let alphaCommunity = (await resolveCommunity(alpha, searchShort)).community;
|
2021-08-23 15:25:39 +00:00
|
|
|
assertCommunityFederation(alphaCommunity, communityRes.community_view);
|
2020-08-04 14:57:37 +00:00
|
|
|
});
|
2022-10-10 15:20:36 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
test("Admin actions in remote community are not federated to origin", async () => {
|
2022-10-10 15:20:36 +00:00
|
|
|
// create a community on alpha
|
|
|
|
let communityRes = (await createCommunity(alpha)).community_view;
|
|
|
|
expect(communityRes.community.name).toBeDefined();
|
|
|
|
|
|
|
|
// gamma follows community and posts in it
|
2022-10-27 09:24:07 +00:00
|
|
|
let gammaCommunity = (
|
|
|
|
await resolveCommunity(gamma, communityRes.community.actor_id)
|
2023-01-04 15:59:26 +00:00
|
|
|
).community;
|
|
|
|
if (!gammaCommunity) {
|
|
|
|
throw "Missing gamma community";
|
|
|
|
}
|
|
|
|
await followCommunity(gamma, true, gammaCommunity.community.id);
|
2022-11-28 14:29:33 +00:00
|
|
|
gammaCommunity = (
|
|
|
|
await resolveCommunity(gamma, communityRes.community.actor_id)
|
2023-01-04 15:59:26 +00:00
|
|
|
).community;
|
|
|
|
if (!gammaCommunity) {
|
|
|
|
throw "Missing gamma community";
|
|
|
|
}
|
2022-11-28 14:29:33 +00:00
|
|
|
expect(gammaCommunity.subscribed).toBe("Subscribed");
|
2022-10-27 09:24:07 +00:00
|
|
|
let gammaPost = (await createPost(gamma, gammaCommunity.community.id))
|
|
|
|
.post_view;
|
2022-10-10 15:20:36 +00:00
|
|
|
expect(gammaPost.post.id).toBeDefined();
|
|
|
|
expect(gammaPost.creator_banned_from_community).toBe(false);
|
|
|
|
|
|
|
|
// admin of beta decides to ban gamma from community
|
2022-10-27 09:24:07 +00:00
|
|
|
let betaCommunity = (
|
|
|
|
await resolveCommunity(beta, communityRes.community.actor_id)
|
2023-01-04 15:59:26 +00:00
|
|
|
).community;
|
|
|
|
if (!betaCommunity) {
|
|
|
|
throw "Missing beta community";
|
|
|
|
}
|
|
|
|
let bannedUserInfo1 = (await getSite(gamma)).my_user?.local_user_view.person;
|
|
|
|
if (!bannedUserInfo1) {
|
|
|
|
throw "Missing banned user 1";
|
|
|
|
}
|
|
|
|
let bannedUserInfo2 = (await resolvePerson(beta, bannedUserInfo1.actor_id))
|
2022-10-27 09:24:07 +00:00
|
|
|
.person;
|
2023-01-04 15:59:26 +00:00
|
|
|
if (!bannedUserInfo2) {
|
|
|
|
throw "Missing banned user 2";
|
|
|
|
}
|
2022-10-27 09:24:07 +00:00
|
|
|
let banRes = await banPersonFromCommunity(
|
|
|
|
beta,
|
|
|
|
bannedUserInfo2.person.id,
|
|
|
|
betaCommunity.community.id,
|
|
|
|
true,
|
|
|
|
true
|
|
|
|
);
|
2022-10-10 15:20:36 +00:00
|
|
|
expect(banRes.banned).toBe(true);
|
|
|
|
|
|
|
|
// ban doesnt federate to community's origin instance alpha
|
2023-01-04 15:59:26 +00:00
|
|
|
let alphaPost = (await resolvePost(alpha, gammaPost.post)).post;
|
|
|
|
expect(alphaPost?.creator_banned_from_community).toBe(false);
|
2022-10-10 15:20:36 +00:00
|
|
|
|
|
|
|
// and neither to gamma
|
2022-10-27 09:24:07 +00:00
|
|
|
let gammaPost2 = await getPost(gamma, gammaPost.post.id);
|
2022-10-10 15:20:36 +00:00
|
|
|
expect(gammaPost2.post_view.creator_banned_from_community).toBe(false);
|
|
|
|
});
|