summaryrefslogtreecommitdiffstats
path: root/ui/src/api_tests
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-06-03 17:55:32 -0400
committerDessalines <tyhou13@gmx.com>2020-06-03 17:55:32 -0400
commitf40f74b20d736b72152ffdf3823026b9bce6f920 (patch)
treecc5db0ea985f09fd9414785dac22034ae0cdd4b3 /ui/src/api_tests
parent1aa30d855e111174f1e3931fdf0964a889cb9b7e (diff)
Adding additional 3-instance integration test for community announce.
Diffstat (limited to 'ui/src/api_tests')
-rw-r--r--ui/src/api_tests/api.spec.ts142
1 files changed, 140 insertions, 2 deletions
diff --git a/ui/src/api_tests/api.spec.ts b/ui/src/api_tests/api.spec.ts
index d5da17c7..4e38cfee 100644
--- a/ui/src/api_tests/api.spec.ts
+++ b/ui/src/api_tests/api.spec.ts
@@ -26,12 +26,17 @@ import {
} from '../interfaces';
let lemmyAlphaUrl = 'http://localhost:8540';
-let lemmyBetaUrl = 'http://localhost:8550';
let lemmyAlphaApiUrl = `${lemmyAlphaUrl}/api/v1`;
-let lemmyBetaApiUrl = `${lemmyBetaUrl}/api/v1`;
let lemmyAlphaAuth: string;
+
+let lemmyBetaUrl = 'http://localhost:8550';
+let lemmyBetaApiUrl = `${lemmyBetaUrl}/api/v1`;
let lemmyBetaAuth: string;
+let lemmyGammaUrl = 'http://localhost:8560';
+let lemmyGammaApiUrl = `${lemmyGammaUrl}/api/v1`;
+let lemmyGammaAuth: string;
+
// Workaround for tests being run before beforeAll() is finished
// https://github.com/facebook/jest/issues/9527#issuecomment-592406108
describe('main', () => {
@@ -67,6 +72,22 @@ describe('main', () => {
}).then(d => d.json());
lemmyBetaAuth = resB.jwt;
+
+ console.log('Logging in as lemmy_gamma');
+ let formC = {
+ username_or_email: 'lemmy_gamma',
+ password: 'lemmy',
+ };
+
+ let resG: LoginResponse = await fetch(`${lemmyGammaApiUrl}/user/login`, {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ body: wrapper(formC),
+ }).then(d => d.json());
+
+ lemmyGammaAuth = resG.jwt;
});
describe('post_search', () => {
@@ -190,6 +211,51 @@ describe('main', () => {
// Make sure the follow response went through
expect(followResAgain.community.local).toBe(false);
expect(followResAgain.community.name).toBe('main');
+
+ // Also make G follow B
+
+ // Use short-hand search url
+ let searchUrlG = `${lemmyGammaApiUrl}/search?q=!main@lemmy_beta:8550&type_=All&sort=TopAll`;
+
+ let searchResponseG: SearchResponse = await fetch(searchUrlG, {
+ method: 'GET',
+ }).then(d => d.json());
+
+ expect(searchResponseG.communities[0].name).toBe('main');
+
+ let followFormG: FollowCommunityForm = {
+ community_id: searchResponseG.communities[0].id,
+ follow: true,
+ auth: lemmyGammaAuth,
+ };
+
+ let followResG: CommunityResponse = await fetch(
+ `${lemmyGammaApiUrl}/community/follow`,
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ body: wrapper(followFormG),
+ }
+ ).then(d => d.json());
+
+ // Make sure the follow response went through
+ expect(followResG.community.local).toBe(false);
+ expect(followResG.community.name).toBe('main');
+
+ // Check that you are subscribed to it locally
+ let followedCommunitiesUrlG = `${lemmyGammaApiUrl}/user/followed_communities?&auth=${lemmyGammaAuth}`;
+ let followedCommunitiesResG: GetFollowedCommunitiesResponse = await fetch(
+ followedCommunitiesUrlG,
+ {
+ method: 'GET',
+ }
+ ).then(d => d.json());
+
+ expect(followedCommunitiesResG.communities[1].community_local).toBe(
+ false
+ );
});
});
@@ -1176,6 +1242,78 @@ describe('main', () => {
expect(searchResponse.comments[0].content).toBe(content);
});
});
+
+ describe('announce', () => {
+ test('A and G subscribe to B (center) A does action, it gets announced to G', async () => {
+ // A and G are already subscribed to B earlier.
+ //
+ let postName = 'A jest test post for announce';
+ let createPostForm: PostForm = {
+ name: postName,
+ auth: lemmyAlphaAuth,
+ community_id: 2,
+ creator_id: 2,
+ nsfw: false,
+ };
+
+ let createPostRes: PostResponse = await fetch(
+ `${lemmyAlphaApiUrl}/post`,
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ body: wrapper(createPostForm),
+ }
+ ).then(d => d.json());
+ expect(createPostRes.post.name).toBe(postName);
+
+ // Make sure that post got announced to Gamma
+ let searchUrl = `${lemmyGammaApiUrl}/search?q=${createPostRes.post.ap_id}&type_=All&sort=TopAll`;
+ let searchResponse: SearchResponse = await fetch(searchUrl, {
+ method: 'GET',
+ }).then(d => d.json());
+ let postId = searchResponse.posts[0].id;
+ expect(searchResponse.posts[0].name).toBe(postName);
+
+ // Create a test comment on Gamma, make sure it gets announced to alpha
+ let commentContent =
+ 'A jest test federated comment announce, lets mention @lemmy_beta@lemmy_beta:8550';
+
+ let commentForm: CommentForm = {
+ content: commentContent,
+ post_id: postId,
+ auth: lemmyGammaAuth,
+ };
+
+ let createCommentRes: CommentResponse = await fetch(
+ `${lemmyGammaApiUrl}/comment`,
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ body: wrapper(commentForm),
+ }
+ ).then(d => d.json());
+
+ expect(createCommentRes.comment.content).toBe(commentContent);
+ expect(createCommentRes.comment.community_local).toBe(false);
+ expect(createCommentRes.comment.creator_local).toBe(true);
+ expect(createCommentRes.comment.score).toBe(1);
+
+ // Get the post from alpha, make sure it has gamma's comment
+ let getPostUrl = `${lemmyAlphaApiUrl}/post?id=5`;
+ let getPostRes: GetPostResponse = await fetch(getPostUrl, {
+ method: 'GET',
+ }).then(d => d.json());
+
+ expect(getPostRes.comments[0].content).toBe(commentContent);
+ expect(getPostRes.comments[0].community_local).toBe(true);
+ expect(getPostRes.comments[0].creator_local).toBe(false);
+ expect(getPostRes.comments[0].score).toBe(1);
+ });
+ });
});
function wrapper(form: any): string {