96 lines
3.6 KiB
TypeScript
96 lines
3.6 KiB
TypeScript
import assert, { rejects, strictEqual } from 'node:assert';
|
|
import * as Misskey from 'misskey-js';
|
|
import { createAccount, deepStrictEqualWithExcludedFields, fetchAdmin, type LoginUser, resolveRemoteNote, resolveRemoteUser, sleep } from './utils.js';
|
|
|
|
const [aAdmin, bAdmin] = await Promise.all([
|
|
fetchAdmin('a.test'),
|
|
fetchAdmin('b.test'),
|
|
]);
|
|
|
|
describe('User Suspension', () => {
|
|
describe('Suspension', () => {
|
|
describe('Check suspend/unsuspend consistency', () => {
|
|
let alice: LoginUser, bob: LoginUser;
|
|
let bobInA: Misskey.entities.UserDetailedNotMe, aliceInB: Misskey.entities.UserDetailedNotMe;
|
|
|
|
beforeAll(async () => {
|
|
[alice, bob] = await Promise.all([
|
|
createAccount('a.test'),
|
|
createAccount('b.test'),
|
|
]);
|
|
|
|
[bobInA, aliceInB] = await Promise.all([
|
|
resolveRemoteUser('b.test', bob.id, alice),
|
|
resolveRemoteUser('a.test', alice.id, bob),
|
|
]);
|
|
});
|
|
|
|
test('Bob follows Alice, and Alice gets suspended, there is no following relation, and Bob fails to follow again', async () => {
|
|
await bob.client.request('following/create', { userId: aliceInB.id });
|
|
await sleep();
|
|
|
|
const followers = await alice.client.request('users/followers', { userId: alice.id });
|
|
strictEqual(followers.length, 1); // followed by Bob
|
|
|
|
await aAdmin.client.request('admin/suspend-user', { userId: alice.id });
|
|
await sleep();
|
|
|
|
const aliceInBRaw = await bAdmin.client.request('admin/show-user', { userId: aliceInB.id });
|
|
strictEqual(aliceInBRaw.isRemoteSuspended, true);
|
|
const renewedAliceInB = await bob.client.request('users/show', { userId: aliceInB.id });
|
|
strictEqual(renewedAliceInB.isSuspended, true);
|
|
|
|
await rejects(
|
|
async () => await bob.client.request('following/create', { userId: aliceInB.id }),
|
|
(err: any) => {
|
|
strictEqual(err.code, 'ALREADY_FOLLOWING');
|
|
return true;
|
|
},
|
|
);
|
|
});
|
|
|
|
test('Alice gets unsuspended, Bob succeeds in following Alice', async () => {
|
|
await aAdmin.client.request('admin/unsuspend-user', { userId: alice.id });
|
|
await sleep();
|
|
|
|
const aliceInBRenewed = await bAdmin.client.request('admin/show-user', { userId: aliceInB.id });
|
|
strictEqual(aliceInBRenewed.isRemoteSuspended, false);
|
|
|
|
await rejects(
|
|
async () => await bob.client.request('following/create', { userId: aliceInB.id }),
|
|
(err: any) => {
|
|
strictEqual(err.code, 'ALREADY_FOLLOWING');
|
|
return true;
|
|
},
|
|
);
|
|
});
|
|
|
|
test('Alice can follow Bob', async () => {
|
|
await alice.client.request('following/create', { userId: bobInA.id });
|
|
await sleep();
|
|
|
|
const bobFollowers = await bob.client.request('users/followers', { userId: bob.id });
|
|
strictEqual(bobFollowers.length, 1); // followed by Alice
|
|
assert(bobFollowers[0].follower != null);
|
|
const renewedAliceInB = bobFollowers[0].follower;
|
|
assert(aliceInB.username === renewedAliceInB.username);
|
|
assert(aliceInB.host === renewedAliceInB.host);
|
|
assert(aliceInB.id === renewedAliceInB.id);
|
|
});
|
|
|
|
test('Alice follows Bob, and Alice gets suspended, the following relation hidden', async () => {
|
|
await aAdmin.client.request('admin/suspend-user', { userId: alice.id });
|
|
await sleep(1000);
|
|
|
|
const renewedAliceInB = await bob.client.request('users/show', { userId: aliceInB.id });
|
|
strictEqual(renewedAliceInB.isSuspended, true);
|
|
const aliceInBRaw = await bAdmin.client.request('admin/show-user', { userId: aliceInB.id });
|
|
strictEqual(aliceInBRaw.isRemoteSuspended, true);
|
|
|
|
const bobFollowers = await bob.client.request('users/followers', { userId: bob.id });
|
|
strictEqual(bobFollowers.length, 0); // Relation is hidden
|
|
});
|
|
});
|
|
});
|
|
});
|