2023-03-07 15:56:09 -08:00
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
|
|
|
|
import * as assert from 'assert';
|
|
|
|
import { signup, api, post, react, startServer, waitFire } from '../utils.js';
|
|
|
|
import type { INestApplicationContext } from '@nestjs/common';
|
2023-06-24 16:34:18 -07:00
|
|
|
import type * as misskey from 'misskey-js';
|
2023-03-07 15:56:09 -08:00
|
|
|
|
|
|
|
describe('Renote Mute', () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
let app: INestApplicationContext;
|
2023-03-07 15:56:09 -08:00
|
|
|
|
|
|
|
// alice mutes carol
|
2023-06-24 16:34:18 -07:00
|
|
|
let alice: misskey.entities.MeSignup;
|
|
|
|
let bob: misskey.entities.MeSignup;
|
|
|
|
let carol: misskey.entities.MeSignup;
|
2023-03-07 15:56:09 -08:00
|
|
|
|
|
|
|
beforeAll(async () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
app = await startServer();
|
2023-03-07 15:56:09 -08:00
|
|
|
alice = await signup({ username: 'alice' });
|
|
|
|
bob = await signup({ username: 'bob' });
|
|
|
|
carol = await signup({ username: 'carol' });
|
|
|
|
}, 1000 * 60 * 2);
|
|
|
|
|
|
|
|
afterAll(async () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
await app.close();
|
2023-03-07 15:56:09 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
test('ミュート作成', async () => {
|
|
|
|
const res = await api('/renote-mute/create', {
|
|
|
|
userId: carol.id,
|
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 204);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('タイムラインにリノートミュートしているユーザーのリノートが含まれない', async () => {
|
|
|
|
const bobNote = await post(bob, { text: 'hi' });
|
|
|
|
const carolRenote = await post(carol, { renoteId: bobNote.id });
|
|
|
|
const carolNote = await post(carol, { text: 'hi' });
|
|
|
|
|
|
|
|
const res = await api('/notes/local-timeline', {}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === carolRenote.id), false);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), true);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('タイムラインにリノートミュートしているユーザーの引用が含まれる', async () => {
|
|
|
|
const bobNote = await post(bob, { text: 'hi' });
|
|
|
|
const carolRenote = await post(carol, { renoteId: bobNote.id, text: 'kore' });
|
|
|
|
const carolNote = await post(carol, { text: 'hi' });
|
|
|
|
|
|
|
|
const res = await api('/notes/local-timeline', {}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === carolRenote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), true);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ストリームにリノートミュートしているユーザーのリノートが流れない', async () => {
|
|
|
|
const bobNote = await post(bob, { text: 'hi' });
|
|
|
|
|
|
|
|
const fired = await waitFire(
|
|
|
|
alice, 'localTimeline',
|
|
|
|
() => api('notes/create', { renoteId: bobNote.id }, carol),
|
|
|
|
msg => msg.type === 'note' && msg.body.userId === carol.id,
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.strictEqual(fired, false);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ストリームにリノートミュートしているユーザーの引用が流れる', async () => {
|
|
|
|
const bobNote = await post(bob, { text: 'hi' });
|
|
|
|
|
|
|
|
const fired = await waitFire(
|
|
|
|
alice, 'localTimeline',
|
|
|
|
() => api('notes/create', { renoteId: bobNote.id, text: 'kore' }, carol),
|
|
|
|
msg => msg.type === 'note' && msg.body.userId === carol.id,
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.strictEqual(fired, true);
|
|
|
|
});
|
|
|
|
});
|