![Dessalines](/assets/img/avatar_default.png)
* Moving settings to Database. - Moves many settings into the database. Fixes #2285 - Adds a local_site and instance table. Fixes #2365 . Fixes #2368 - Separates SQL update an insert forms, to avoid runtime errors. - Adds TypedBuilder to all the SQL forms, instead of default. * Fix weird clippy issue. * Removing extra lines. * Some fixes from suggestions. * Fixing apub tests. * Using instance creation helper function. * Move forms to their own line. * Trying to fix local_site_data, still broken. * Fixing federation tests. * Trying to fix check features 1. * Addressing PR comments. * Adding check_apub to all verify functions.
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
jest.setTimeout(120000);
|
|
import { SubscribedType } from "lemmy-js-client";
|
|
|
|
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.unwrap();
|
|
let follow = await followCommunity(alpha, true, betaCommunity.community.id);
|
|
|
|
// Make sure the follow response went through
|
|
expect(follow.community_view.community.local).toBe(false);
|
|
expect(follow.community_view.community.name).toBe("main");
|
|
expect(follow.community_view.subscribed).toBe(SubscribedType.Subscribed);
|
|
|
|
// Check it from local
|
|
let site = await getSite(alpha);
|
|
let remoteCommunityId = site.my_user
|
|
.unwrap()
|
|
.follows.find(c => c.community.local == false).community.id;
|
|
expect(remoteCommunityId).toBeDefined();
|
|
expect(site.my_user.unwrap().follows.length).toBe(2);
|
|
|
|
// Test an unfollow
|
|
let unfollow = await followCommunity(alpha, false, remoteCommunityId);
|
|
expect(unfollow.community_view.subscribed).toBe(SubscribedType.NotSubscribed);
|
|
|
|
// Make sure you are unsubbed locally
|
|
let siteUnfollowCheck = await getSite(alpha);
|
|
expect(siteUnfollowCheck.my_user.unwrap().follows.length).toBe(1);
|
|
});
|