]> Untitled Git - lemmy.git/blobdiff - api_tests/src/follow.spec.ts
Moving settings to Database. (#2492)
[lemmy.git] / api_tests / src / follow.spec.ts
index d75735b00e402421ff050842b3974e606c8e075f..f80b40de858d5e7b7427d68b48984aa3b4f3f648 100644 (file)
@@ -1,4 +1,6 @@
 jest.setTimeout(120000);
+import { SubscribedType } from "lemmy-js-client";
+
 import {
   alpha,
   setupLogins,
@@ -6,7 +8,7 @@ import {
   followCommunity,
   unfollowRemotes,
   getSite,
-} from './shared';
+} from "./shared";
 
 beforeAll(async () => {
   await setupLogins();
@@ -16,31 +18,28 @@ afterAll(async () => {
   await unfollowRemotes(alpha);
 });
 
-test('Follow federated community', async () => {
-  let betaCommunity = (await resolveBetaCommunity(alpha)).community;
-  let follow = await followCommunity(
-    alpha,
-    true,
-    betaCommunity.community.id
-  );
+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_follower_view.community.local).toBe(false);
-  expect(follow.community_follower_view.community.name).toBe('main');
-  expect(follow.community_follower_view.pending).toBe(true);
+  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.follows.find(
-    c => c.community.local == false
-  ).community.id;
+  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_follower_view).toBeNull()
+  expect(unfollow.community_view.subscribed).toBe(SubscribedType.NotSubscribed);
 
   // Make sure you are unsubbed locally
   let siteUnfollowCheck = await getSite(alpha);
-  expect(siteUnfollowCheck.my_user.follows.length).toBeGreaterThanOrEqual(1);
+  expect(siteUnfollowCheck.my_user.unwrap().follows.length).toBe(1);
 });