2020-09-15 19:26:47 +00:00
|
|
|
jest.setTimeout(120000);
|
2020-08-04 14:57:37 +00:00
|
|
|
import {
|
|
|
|
alpha,
|
|
|
|
setupLogins,
|
|
|
|
searchForBetaCommunity,
|
|
|
|
followCommunity,
|
|
|
|
checkFollowedCommunities,
|
|
|
|
unfollowRemotes,
|
2020-08-31 13:48:02 +00:00
|
|
|
delay,
|
2020-10-01 13:32:01 +00:00
|
|
|
longDelay,
|
2020-08-04 14:57:37 +00:00
|
|
|
} from './shared';
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
|
|
|
await setupLogins();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(async () => {
|
|
|
|
await unfollowRemotes(alpha);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Follow federated community', async () => {
|
|
|
|
let search = await searchForBetaCommunity(alpha); // TODO sometimes this is returning null?
|
|
|
|
let follow = await followCommunity(alpha, true, search.communities[0].id);
|
|
|
|
|
|
|
|
// Make sure the follow response went through
|
|
|
|
expect(follow.community.local).toBe(false);
|
|
|
|
expect(follow.community.name).toBe('main');
|
2020-10-01 13:32:01 +00:00
|
|
|
await longDelay();
|
2020-08-04 14:57:37 +00:00
|
|
|
|
|
|
|
// Check it from local
|
|
|
|
let followCheck = await checkFollowedCommunities(alpha);
|
2020-10-01 13:32:01 +00:00
|
|
|
await delay();
|
2020-08-04 14:57:37 +00:00
|
|
|
let remoteCommunityId = followCheck.communities.filter(
|
|
|
|
c => c.community_local == false
|
|
|
|
)[0].community_id;
|
|
|
|
expect(remoteCommunityId).toBeDefined();
|
|
|
|
|
|
|
|
// Test an unfollow
|
|
|
|
let unfollow = await followCommunity(alpha, false, remoteCommunityId);
|
|
|
|
expect(unfollow.community.local).toBe(false);
|
2020-08-31 13:48:02 +00:00
|
|
|
await delay();
|
2020-08-04 14:57:37 +00:00
|
|
|
|
|
|
|
// Make sure you are unsubbed locally
|
|
|
|
let unfollowCheck = await checkFollowedCommunities(alpha);
|
|
|
|
expect(unfollowCheck.communities.length).toBeGreaterThanOrEqual(1);
|
|
|
|
});
|