lemmy/api_tests/src/follow.spec.ts

47 lines
1.2 KiB
TypeScript
Raw Normal View History

jest.setTimeout(120000);
import {
alpha,
setupLogins,
resolveBetaCommunity,
followCommunity,
unfollowRemotes,
getSite,
} from './shared';
beforeAll(async () => {
await setupLogins();
});
afterAll(async () => {
await unfollowRemotes(alpha);
});
test('Follow federated community', async () => {
let betaCommunity = (await resolveBetaCommunity(alpha)).community;
2020-12-20 21:16:57 +00:00
let follow = await followCommunity(
alpha,
true,
betaCommunity.community.id
2020-12-20 21:16:57 +00:00
);
// Make sure the follow response went through
2022-05-07 23:04:47 +00:00
expect(follow.community_follower_view.community.local).toBe(false);
expect(follow.community_follower_view.community.name).toBe('main');
expect(follow.community_follower_view.pending).toBe(true);
// Check it from local
let site = await getSite(alpha);
let remoteCommunityId = site.my_user.follows.find(
2020-12-20 21:16:57 +00:00
c => c.community.local == false
).community.id;
expect(remoteCommunityId).toBeDefined();
// Test an unfollow
let unfollow = await followCommunity(alpha, false, remoteCommunityId);
2022-05-07 23:04:47 +00:00
expect(unfollow.community_follower_view.community.local).toBe(false);
// Make sure you are unsubbed locally
let siteUnfollowCheck = await getSite(alpha);
expect(siteUnfollowCheck.my_user.follows.length).toBeGreaterThanOrEqual(1);
});