mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-23 03:11:32 +00:00
9d3a0cef56
* Combined tables try 2
* Finishing up combined report table.
* Fix ts optionals.
* Adding tests, triggers, and history updates for report_combined.
* Adding profile.
* Add cursor pagination to report_combined view (#5244)
* add pagination cursor
* store timestamp instead of id in cursor (partial)
* Revert "store timestamp instead of id in cursor (partial)"
This reverts commit 89359dde4b
.
* use paginated query builder
* Fixing migration and paged API.
* Using dullbananas trigger procedure
* Removing pointless list routes, reorganizing tests.
* Fixing column XOR check.
* Forgot to remove list report actions.
* Cleanup.
* Use internal tagging.
* Fixing api tests.
* Adding a few indexes.
* Fixing migration name.
* Fixing unique constraints.
* Addressing PR comments.
* Fixing api tests.
* Update crates/db_views/src/report_combined_view.rs
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Update crates/db_views/src/report_combined_view.rs
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Update crates/db_views/src/report_combined_view.rs
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Update migrations/2024-12-02-181601_add_report_combined_table/up.sql
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Update migrations/2024-12-02-181601_add_report_combined_table/up.sql
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Fixing import and fmt.
* Fixing null types in postgres.
* Comment out err.
* Addressing PR comments.
* Removing serialization
---------
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
123 lines
3.7 KiB
TypeScript
123 lines
3.7 KiB
TypeScript
jest.setTimeout(120000);
|
|
|
|
import {
|
|
alpha,
|
|
setupLogins,
|
|
resolveBetaCommunity,
|
|
followCommunity,
|
|
waitUntil,
|
|
beta,
|
|
betaUrl,
|
|
registerUser,
|
|
unfollows,
|
|
delay,
|
|
getMyUser,
|
|
} from "./shared";
|
|
|
|
beforeAll(setupLogins);
|
|
|
|
afterAll(unfollows);
|
|
|
|
test("Follow local community", async () => {
|
|
let user = await registerUser(beta, betaUrl);
|
|
|
|
let community = (await resolveBetaCommunity(user)).community!;
|
|
let follow = await followCommunity(user, true, community.community.id);
|
|
|
|
// Make sure the follow response went through
|
|
expect(follow.community_view.community.local).toBe(true);
|
|
expect(follow.community_view.subscribed).toBe("Subscribed");
|
|
expect(follow.community_view.counts.subscribers).toBe(
|
|
community.counts.subscribers + 1,
|
|
);
|
|
expect(follow.community_view.counts.subscribers_local).toBe(
|
|
community.counts.subscribers_local + 1,
|
|
);
|
|
|
|
// Test an unfollow
|
|
let unfollow = await followCommunity(user, false, community.community.id);
|
|
expect(unfollow.community_view.subscribed).toBe("NotSubscribed");
|
|
expect(unfollow.community_view.counts.subscribers).toBe(
|
|
community.counts.subscribers,
|
|
);
|
|
expect(unfollow.community_view.counts.subscribers_local).toBe(
|
|
community.counts.subscribers_local,
|
|
);
|
|
});
|
|
|
|
test("Follow federated community", async () => {
|
|
// It takes about 1 second for the community aggregates to federate
|
|
await delay(2000); // if this is the second test run, we don't have a way to wait for the correct number of subscribers
|
|
const betaCommunityInitial = (
|
|
await waitUntil(
|
|
() => resolveBetaCommunity(alpha),
|
|
c => !!c.community && c.community?.counts.subscribers >= 1,
|
|
)
|
|
).community;
|
|
if (!betaCommunityInitial) {
|
|
throw "Missing beta community";
|
|
}
|
|
let follow = await followCommunity(
|
|
alpha,
|
|
true,
|
|
betaCommunityInitial.community.id,
|
|
);
|
|
expect(follow.community_view.subscribed).toBe("Pending");
|
|
const betaCommunity = (
|
|
await waitUntil(
|
|
() => resolveBetaCommunity(alpha),
|
|
c => c.community?.subscribed === "Subscribed",
|
|
)
|
|
).community;
|
|
|
|
// Make sure the follow response went through
|
|
expect(betaCommunity?.community.local).toBe(false);
|
|
expect(betaCommunity?.community.name).toBe("main");
|
|
expect(betaCommunity?.subscribed).toBe("Subscribed");
|
|
expect(betaCommunity?.counts.subscribers_local).toBe(
|
|
betaCommunityInitial.counts.subscribers_local + 1,
|
|
);
|
|
|
|
// check that unfollow was federated
|
|
let communityOnBeta1 = await resolveBetaCommunity(beta);
|
|
expect(communityOnBeta1.community?.counts.subscribers).toBe(
|
|
betaCommunityInitial.counts.subscribers + 1,
|
|
);
|
|
|
|
// Check it from local
|
|
let my_user = await getMyUser(alpha);
|
|
let remoteCommunityId = my_user?.follows.find(
|
|
c =>
|
|
c.community.local == false &&
|
|
c.community.id === betaCommunityInitial.community.id,
|
|
)?.community.id;
|
|
expect(remoteCommunityId).toBeDefined();
|
|
|
|
if (!remoteCommunityId) {
|
|
throw "Missing remote community id";
|
|
}
|
|
|
|
// Test an unfollow
|
|
let unfollow = await followCommunity(alpha, false, remoteCommunityId);
|
|
expect(unfollow.community_view.subscribed).toBe("NotSubscribed");
|
|
|
|
// Make sure you are unsubbed locally
|
|
let siteUnfollowCheck = await getMyUser(alpha);
|
|
expect(
|
|
siteUnfollowCheck.follows.find(
|
|
c => c.community.id === betaCommunityInitial.community.id,
|
|
),
|
|
).toBe(undefined);
|
|
|
|
// check that unfollow was federated
|
|
let communityOnBeta2 = await waitUntil(
|
|
() => resolveBetaCommunity(beta),
|
|
c =>
|
|
c.community?.counts.subscribers ===
|
|
betaCommunityInitial.counts.subscribers,
|
|
);
|
|
expect(communityOnBeta2.community?.counts.subscribers).toBe(
|
|
betaCommunityInitial.counts.subscribers,
|
|
);
|
|
expect(communityOnBeta2.community?.counts.subscribers_local).toBe(1);
|
|
});
|