2019-04-07 05:50:36 -07:00
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
|
|
|
|
import * as assert from 'assert';
|
2023-03-02 18:13:12 -08:00
|
|
|
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';
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
describe('Mute', () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
let app: INestApplicationContext;
|
2019-04-07 05:50:36 -07: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;
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
beforeAll(async () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
app = await startServer();
|
2020-01-08 21:35:04 -08:00
|
|
|
alice = await signup({ username: 'alice' });
|
|
|
|
bob = await signup({ username: 'bob' });
|
|
|
|
carol = await signup({ username: 'carol' });
|
2023-03-02 18:13:12 -08:00
|
|
|
}, 1000 * 60 * 2);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
afterAll(async () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
await app.close();
|
2019-04-07 05:50:36 -07:00
|
|
|
});
|
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ミュート作成', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('/mute/create', {
|
2022-05-21 06:21:41 -07:00
|
|
|
userId: carol.id,
|
2019-04-07 05:50:36 -07:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 204);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('「自分宛ての投稿」にミュートしているユーザーの投稿が含まれない', async () => {
|
2019-04-07 05:50:36 -07:00
|
|
|
const bobNote = await post(bob, { text: '@alice hi' });
|
|
|
|
const carolNote = await post(carol, { text: '@alice hi' });
|
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('/notes/mentions', {}, alice);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
2020-01-08 21:35:04 -08:00
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), false);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ミュートしているユーザーからメンションされても、hasUnreadMentions が true にならない', async () => {
|
2019-04-07 05:50:36 -07:00
|
|
|
// 状態リセット
|
2023-03-02 18:13:12 -08:00
|
|
|
await api('/i/read-all-unread-notes', {}, alice);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
await post(carol, { text: '@alice hi' });
|
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('/i', {}, alice);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(res.body.hasUnreadMentions, false);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ミュートしているユーザーからメンションされても、ストリームに unreadMention イベントが流れてこない', async () => {
|
2019-04-07 05:50:36 -07:00
|
|
|
// 状態リセット
|
2023-03-02 18:13:12 -08:00
|
|
|
await api('/i/read-all-unread-notes', {}, alice);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2022-06-26 03:16:32 -07:00
|
|
|
const fired = await waitFire(alice, 'main', () => post(carol, { text: '@alice hi' }), msg => msg.type === 'unreadMention');
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2022-06-26 03:16:32 -07:00
|
|
|
assert.strictEqual(fired, false);
|
|
|
|
});
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ミュートしているユーザーからメンションされても、ストリームに unreadNotification イベントが流れてこない', async () => {
|
2019-04-07 05:50:36 -07:00
|
|
|
// 状態リセット
|
2023-03-02 18:13:12 -08:00
|
|
|
await api('/i/read-all-unread-notes', {}, alice);
|
|
|
|
await api('/notifications/mark-all-as-read', {}, alice);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2022-06-26 03:16:32 -07:00
|
|
|
const fired = await waitFire(alice, 'main', () => post(carol, { text: '@alice hi' }), msg => msg.type === 'unreadNotification');
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2022-06-26 03:16:32 -07:00
|
|
|
assert.strictEqual(fired, false);
|
|
|
|
});
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
describe('Timeline', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('タイムラインにミュートしているユーザーの投稿が含まれない', async () => {
|
2023-03-07 15:56:09 -08:00
|
|
|
const aliceNote = await post(alice, { text: 'hi' });
|
|
|
|
const bobNote = await post(bob, { text: 'hi' });
|
|
|
|
const carolNote = await post(carol, { text: 'hi' });
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('/notes/local-timeline', {}, alice);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
2020-01-08 21:35:04 -08:00
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === aliceNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), false);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2019-04-07 05:50:36 -07:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('タイムラインにミュートしているユーザーの投稿のRenoteが含まれない', async () => {
|
2023-03-07 15:56:09 -08:00
|
|
|
const aliceNote = await post(alice, { text: 'hi' });
|
|
|
|
const carolNote = await post(carol, { text: 'hi' });
|
2019-04-07 05:50:36 -07:00
|
|
|
const bobNote = await post(bob, {
|
2022-05-21 06:21:41 -07:00
|
|
|
renoteId: carolNote.id,
|
2019-04-07 05:50:36 -07:00
|
|
|
});
|
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('/notes/local-timeline', {}, alice);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
2020-01-08 21:35:04 -08:00
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === aliceNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), false);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === carolNote.id), false);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2019-04-07 05:50:36 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('Notification', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('通知にミュートしているユーザーの通知が含まれない(リアクション)', async () => {
|
2023-03-07 15:56:09 -08:00
|
|
|
const aliceNote = await post(alice, { text: 'hi' });
|
2019-04-07 05:50:36 -07:00
|
|
|
await react(bob, aliceNote, 'like');
|
|
|
|
await react(carol, aliceNote, 'like');
|
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('/i/notifications', {}, alice);
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
2020-01-08 21:35:04 -08:00
|
|
|
assert.strictEqual(res.body.some((notification: any) => notification.userId === bob.id), true);
|
|
|
|
assert.strictEqual(res.body.some((notification: any) => notification.userId === carol.id), false);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2019-04-07 05:50:36 -07:00
|
|
|
});
|
|
|
|
});
|