2023-07-27 14:31:52 +09:00
|
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
|
2023-03-22 08:59:50 +09:00
|
|
|
|
import * as assert from 'node:assert';
|
2023-03-03 11:13:12 +09:00
|
|
|
|
import { readFile } from 'node:fs/promises';
|
|
|
|
|
import { isAbsolute, basename } from 'node:path';
|
2023-03-19 20:26:38 +09:00
|
|
|
|
import { inspect } from 'node:util';
|
2023-06-28 13:37:13 +09:00
|
|
|
|
import WebSocket, { ClientOptions } from 'ws';
|
2023-09-05 17:02:14 +09:00
|
|
|
|
import fetch, { File, RequestInit } from 'node-fetch';
|
2023-03-03 11:13:12 +09:00
|
|
|
|
import { DataSource } from 'typeorm';
|
2023-03-18 09:01:10 +09:00
|
|
|
|
import { JSDOM } from 'jsdom';
|
2023-04-12 13:20:16 +09:00
|
|
|
|
import { DEFAULT_POLICIES } from '@/core/RoleService.js';
|
2023-03-03 11:13:12 +09:00
|
|
|
|
import { entities } from '../src/postgres.js';
|
|
|
|
|
import { loadConfig } from '../src/config.js';
|
|
|
|
|
import type * as misskey from 'misskey-js';
|
|
|
|
|
|
|
|
|
|
export { server as startServer } from '@/boot/common.js';
|
|
|
|
|
|
2023-06-28 13:37:13 +09:00
|
|
|
|
interface UserToken {
|
|
|
|
|
token: string;
|
|
|
|
|
bearer?: boolean;
|
|
|
|
|
}
|
2023-06-27 08:07:20 +09:00
|
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
|
const config = loadConfig();
|
|
|
|
|
export const port = config.port;
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const cookie = (me: UserToken): string => {
|
2023-03-18 09:01:10 +09:00
|
|
|
|
return `token=${me.token};`;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const api = async (endpoint: string, params: any, me?: UserToken) => {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
const normalized = endpoint.replace(/^\//, '');
|
|
|
|
|
return await request(`api/${normalized}`, params, me);
|
|
|
|
|
};
|
|
|
|
|
|
2023-03-19 20:26:38 +09:00
|
|
|
|
export type ApiRequest = {
|
|
|
|
|
endpoint: string,
|
|
|
|
|
parameters: object,
|
2023-06-27 08:07:20 +09:00
|
|
|
|
user: UserToken | undefined,
|
2023-03-19 20:26:38 +09:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const successfulApiCall = async <T, >(request: ApiRequest, assertion: {
|
2023-04-12 13:20:16 +09:00
|
|
|
|
status?: number,
|
|
|
|
|
} = {}): Promise<T> => {
|
2023-03-19 20:26:38 +09:00
|
|
|
|
const { endpoint, parameters, user } = request;
|
|
|
|
|
const res = await api(endpoint, parameters, user);
|
2023-04-12 13:20:16 +09:00
|
|
|
|
const status = assertion.status ?? (res.body == null ? 204 : 200);
|
|
|
|
|
assert.strictEqual(res.status, status, inspect(res.body, { depth: 5, colors: true }));
|
2023-03-19 20:26:38 +09:00
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const failedApiCall = async <T, >(request: ApiRequest, assertion: {
|
|
|
|
|
status: number,
|
|
|
|
|
code: string,
|
|
|
|
|
id: string
|
|
|
|
|
}): Promise<T> => {
|
|
|
|
|
const { endpoint, parameters, user } = request;
|
|
|
|
|
const { status, code, id } = assertion;
|
|
|
|
|
const res = await api(endpoint, parameters, user);
|
|
|
|
|
assert.strictEqual(res.status, status, inspect(res.body));
|
|
|
|
|
assert.strictEqual(res.body.error.code, code, inspect(res.body));
|
|
|
|
|
assert.strictEqual(res.body.error.id, id, inspect(res.body));
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-28 13:37:13 +09:00
|
|
|
|
const request = async (path: string, params: any, me?: UserToken): Promise<{ status: number, headers: Headers, body: any }> => {
|
|
|
|
|
const bodyAuth: Record<string, string> = {};
|
|
|
|
|
const headers: Record<string, string> = {
|
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (me?.bearer) {
|
|
|
|
|
headers.Authorization = `Bearer ${me.token}`;
|
|
|
|
|
} else if (me) {
|
|
|
|
|
bodyAuth.i = me.token;
|
|
|
|
|
}
|
2023-03-03 11:13:12 +09:00
|
|
|
|
|
|
|
|
|
const res = await relativeFetch(path, {
|
|
|
|
|
method: 'POST',
|
2023-06-28 13:37:13 +09:00
|
|
|
|
headers,
|
|
|
|
|
body: JSON.stringify(Object.assign(bodyAuth, params)),
|
2023-03-03 11:13:12 +09:00
|
|
|
|
redirect: 'manual',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const body = res.headers.get('content-type') === 'application/json; charset=utf-8'
|
|
|
|
|
? await res.json()
|
|
|
|
|
: null;
|
|
|
|
|
|
|
|
|
|
return {
|
2023-06-28 13:37:13 +09:00
|
|
|
|
status: res.status,
|
|
|
|
|
headers: res.headers,
|
|
|
|
|
body,
|
2023-03-03 11:13:12 +09:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-07-27 18:51:58 +09:00
|
|
|
|
export const relativeFetch = async (path: string, init?: RequestInit | undefined) => {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
return await fetch(new URL(path, `http://127.0.0.1:${port}/`).toString(), init);
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-03 20:26:11 +09:00
|
|
|
|
function randomString(chars = 'abcdefghijklmnopqrstuvwxyz0123456789', length = 16) {
|
|
|
|
|
let randomString = '';
|
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
|
randomString += chars[Math.floor(Math.random() * chars.length)];
|
|
|
|
|
}
|
|
|
|
|
return randomString;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-25 08:34:18 +09:00
|
|
|
|
export const signup = async (params?: Partial<misskey.Endpoints['signup']['req']>): Promise<NonNullable<misskey.Endpoints['signup']['res']>> => {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
const q = Object.assign({
|
2023-10-03 20:26:11 +09:00
|
|
|
|
username: randomString(),
|
2023-03-03 11:13:12 +09:00
|
|
|
|
password: 'test',
|
|
|
|
|
}, params);
|
|
|
|
|
|
|
|
|
|
const res = await api('signup', q);
|
|
|
|
|
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const post = async (user: UserToken, params?: misskey.Endpoints['notes/create']['req']): Promise<misskey.entities.Note> => {
|
2023-03-08 08:56:09 +09:00
|
|
|
|
const q = params;
|
2023-03-03 11:13:12 +09:00
|
|
|
|
|
|
|
|
|
const res = await api('notes/create', q, user);
|
|
|
|
|
|
|
|
|
|
return res.body ? res.body.createdNote : null;
|
|
|
|
|
};
|
|
|
|
|
|
2023-03-19 20:26:38 +09:00
|
|
|
|
// 非公開ノートをAPI越しに見たときのノート NoteEntityService.ts
|
|
|
|
|
export const hiddenNote = (note: any): any => {
|
|
|
|
|
const temp = {
|
|
|
|
|
...note,
|
|
|
|
|
fileIds: [],
|
|
|
|
|
files: [],
|
|
|
|
|
text: null,
|
|
|
|
|
cw: null,
|
|
|
|
|
isHidden: true,
|
|
|
|
|
};
|
|
|
|
|
delete temp.visibleUserIds;
|
|
|
|
|
delete temp.poll;
|
|
|
|
|
return temp;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const react = async (user: UserToken, note: any, reaction: string): Promise<any> => {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
await api('notes/reactions/create', {
|
|
|
|
|
noteId: note.id,
|
|
|
|
|
reaction: reaction,
|
|
|
|
|
}, user);
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const userList = async (user: UserToken, userList: any = {}): Promise<any> => {
|
2023-05-19 20:53:20 +09:00
|
|
|
|
const res = await api('users/lists/create', {
|
|
|
|
|
name: 'test',
|
|
|
|
|
}, user);
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const page = async (user: UserToken, page: any = {}): Promise<any> => {
|
2023-03-18 09:01:10 +09:00
|
|
|
|
const res = await api('pages/create', {
|
|
|
|
|
alignCenter: false,
|
|
|
|
|
content: [
|
|
|
|
|
{
|
|
|
|
|
id: '2be9a64b-5ada-43a3-85f3-ec3429551ded',
|
|
|
|
|
text: 'Hello World!',
|
|
|
|
|
type: 'text',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
eyeCatchingImageId: null,
|
|
|
|
|
font: 'sans-serif',
|
|
|
|
|
hideTitleWhenPinned: false,
|
|
|
|
|
name: '1678594845072',
|
|
|
|
|
script: '',
|
|
|
|
|
summary: null,
|
|
|
|
|
title: '',
|
|
|
|
|
variables: [],
|
|
|
|
|
...page,
|
|
|
|
|
}, user);
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const play = async (user: UserToken, play: any = {}): Promise<any> => {
|
2023-03-18 09:01:10 +09:00
|
|
|
|
const res = await api('flash/create', {
|
|
|
|
|
permissions: [],
|
|
|
|
|
script: 'test',
|
|
|
|
|
summary: '',
|
|
|
|
|
title: 'test',
|
|
|
|
|
...play,
|
|
|
|
|
}, user);
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const clip = async (user: UserToken, clip: any = {}): Promise<any> => {
|
2023-03-18 09:01:10 +09:00
|
|
|
|
const res = await api('clips/create', {
|
|
|
|
|
description: null,
|
|
|
|
|
isPublic: true,
|
|
|
|
|
name: 'test',
|
|
|
|
|
...clip,
|
|
|
|
|
}, user);
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const galleryPost = async (user: UserToken, channel: any = {}): Promise<any> => {
|
2023-03-18 09:01:10 +09:00
|
|
|
|
const res = await api('gallery/posts/create', {
|
|
|
|
|
description: null,
|
|
|
|
|
fileIds: [],
|
|
|
|
|
isSensitive: false,
|
|
|
|
|
title: 'test',
|
|
|
|
|
...channel,
|
|
|
|
|
}, user);
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const channel = async (user: UserToken, channel: any = {}): Promise<any> => {
|
2023-03-18 09:01:10 +09:00
|
|
|
|
const res = await api('channels/create', {
|
|
|
|
|
bannerId: null,
|
|
|
|
|
description: null,
|
|
|
|
|
name: 'test',
|
|
|
|
|
...channel,
|
|
|
|
|
}, user);
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const role = async (user: UserToken, role: any = {}, policies: any = {}): Promise<any> => {
|
2023-04-12 13:20:16 +09:00
|
|
|
|
const res = await api('admin/roles/create', {
|
|
|
|
|
asBadge: false,
|
|
|
|
|
canEditMembersByModerator: false,
|
|
|
|
|
color: null,
|
|
|
|
|
condFormula: {
|
|
|
|
|
id: 'ebef1684-672d-49b6-ad82-1b3ec3784f85',
|
|
|
|
|
type: 'isRemote',
|
|
|
|
|
},
|
|
|
|
|
description: '',
|
|
|
|
|
displayOrder: 0,
|
|
|
|
|
iconUrl: null,
|
|
|
|
|
isAdministrator: false,
|
|
|
|
|
isModerator: false,
|
|
|
|
|
isPublic: false,
|
|
|
|
|
name: 'New Role',
|
|
|
|
|
target: 'manual',
|
2023-06-25 08:34:18 +09:00
|
|
|
|
policies: {
|
|
|
|
|
...Object.entries(DEFAULT_POLICIES).map(([k, v]) => [k, {
|
2023-04-12 13:20:16 +09:00
|
|
|
|
priority: 0,
|
|
|
|
|
useDefault: true,
|
|
|
|
|
value: v,
|
|
|
|
|
}]),
|
|
|
|
|
...policies,
|
|
|
|
|
},
|
|
|
|
|
...role,
|
|
|
|
|
}, user);
|
|
|
|
|
return res.body;
|
|
|
|
|
};
|
|
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
|
interface UploadOptions {
|
|
|
|
|
/** Optional, absolute path or relative from ./resources/ */
|
|
|
|
|
path?: string | URL;
|
|
|
|
|
/** The name to be used for the file upload */
|
|
|
|
|
name?: string;
|
|
|
|
|
/** A Blob can be provided instead of path */
|
|
|
|
|
blob?: Blob;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Upload file
|
|
|
|
|
* @param user User
|
|
|
|
|
*/
|
2023-06-28 13:37:13 +09:00
|
|
|
|
export const uploadFile = async (user?: UserToken, { path, name, blob }: UploadOptions = {}): Promise<{ status: number, headers: Headers, body: misskey.Endpoints['drive/files/create']['res'] | null }> => {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
const absPath = path == null
|
|
|
|
|
? new URL('resources/Lenna.jpg', import.meta.url)
|
|
|
|
|
: isAbsolute(path.toString())
|
|
|
|
|
? new URL(path)
|
|
|
|
|
: new URL(path, new URL('resources/', import.meta.url));
|
|
|
|
|
|
|
|
|
|
const formData = new FormData();
|
|
|
|
|
formData.append('file', blob ??
|
|
|
|
|
new File([await readFile(absPath)], basename(absPath.toString())));
|
|
|
|
|
formData.append('force', 'true');
|
|
|
|
|
if (name) {
|
|
|
|
|
formData.append('name', name);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-28 13:37:13 +09:00
|
|
|
|
const headers: Record<string, string> = {};
|
|
|
|
|
if (user?.bearer) {
|
|
|
|
|
headers.Authorization = `Bearer ${user.token}`;
|
|
|
|
|
} else if (user) {
|
|
|
|
|
formData.append('i', user.token);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
|
const res = await relativeFetch('api/drive/files/create', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
body: formData,
|
2023-06-28 13:37:13 +09:00
|
|
|
|
headers,
|
2023-03-03 11:13:12 +09:00
|
|
|
|
});
|
|
|
|
|
|
2023-06-28 13:37:13 +09:00
|
|
|
|
const body = res.status !== 204 ? await res.json() as misskey.Endpoints['drive/files/create']['res'] : null;
|
2023-03-03 11:13:12 +09:00
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
status: res.status,
|
2023-06-28 13:37:13 +09:00
|
|
|
|
headers: res.headers,
|
2023-03-03 11:13:12 +09:00
|
|
|
|
body,
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const uploadUrl = async (user: UserToken, url: string) => {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
let file: any;
|
|
|
|
|
const marker = Math.random().toString();
|
|
|
|
|
|
|
|
|
|
const ws = await connectStream(user, 'main', (msg) => {
|
|
|
|
|
if (msg.type === 'urlUploadFinished' && msg.body.marker === marker) {
|
|
|
|
|
file = msg.body.file;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await api('drive/files/upload-from-url', {
|
|
|
|
|
url,
|
|
|
|
|
marker,
|
|
|
|
|
force: true,
|
|
|
|
|
}, user);
|
|
|
|
|
|
|
|
|
|
await sleep(7000);
|
|
|
|
|
ws.close();
|
|
|
|
|
|
|
|
|
|
return file;
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export function connectStream(user: UserToken, channel: string, listener: (message: Record<string, any>) => any, params?: any): Promise<WebSocket> {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
return new Promise((res, rej) => {
|
2023-06-28 13:37:13 +09:00
|
|
|
|
const url = new URL(`ws://127.0.0.1:${port}/streaming`);
|
|
|
|
|
const options: ClientOptions = {};
|
|
|
|
|
if (user.bearer) {
|
|
|
|
|
options.headers = { Authorization: `Bearer ${user.token}` };
|
|
|
|
|
} else {
|
|
|
|
|
url.searchParams.set('i', user.token);
|
|
|
|
|
}
|
|
|
|
|
const ws = new WebSocket(url, options);
|
2023-03-03 11:13:12 +09:00
|
|
|
|
|
2023-06-28 13:37:13 +09:00
|
|
|
|
ws.on('unexpected-response', (req, res) => rej(res));
|
2023-03-03 11:13:12 +09:00
|
|
|
|
ws.on('open', () => {
|
|
|
|
|
ws.on('message', data => {
|
|
|
|
|
const msg = JSON.parse(data.toString());
|
|
|
|
|
if (msg.type === 'channel' && msg.body.id === 'a') {
|
|
|
|
|
listener(msg.body);
|
|
|
|
|
} else if (msg.type === 'connected' && msg.body.id === 'a') {
|
|
|
|
|
res(ws);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
ws.send(JSON.stringify({
|
|
|
|
|
type: 'connect',
|
|
|
|
|
body: {
|
|
|
|
|
channel: channel,
|
|
|
|
|
id: 'a',
|
|
|
|
|
pong: true,
|
|
|
|
|
params: params,
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-27 08:07:20 +09:00
|
|
|
|
export const waitFire = async (user: UserToken, channel: string, trgr: () => any, cond: (msg: Record<string, any>) => boolean, params?: any) => {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
return new Promise<boolean>(async (res, rej) => {
|
|
|
|
|
let timer: NodeJS.Timeout | null = null;
|
|
|
|
|
|
|
|
|
|
let ws: WebSocket;
|
|
|
|
|
try {
|
|
|
|
|
ws = await connectStream(user, channel, msg => {
|
|
|
|
|
if (cond(msg)) {
|
|
|
|
|
ws.close();
|
|
|
|
|
if (timer) clearTimeout(timer);
|
|
|
|
|
res(true);
|
|
|
|
|
}
|
|
|
|
|
}, params);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
rej(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!ws!) return;
|
|
|
|
|
|
|
|
|
|
timer = setTimeout(() => {
|
|
|
|
|
ws.close();
|
|
|
|
|
res(false);
|
2023-04-07 20:05:15 +09:00
|
|
|
|
}, 3000);
|
2023-03-03 11:13:12 +09:00
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
await trgr();
|
|
|
|
|
} catch (e) {
|
|
|
|
|
ws.close();
|
|
|
|
|
if (timer) clearTimeout(timer);
|
|
|
|
|
rej(e);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-25 08:34:18 +09:00
|
|
|
|
export type SimpleGetResponse = {
|
|
|
|
|
status: number,
|
|
|
|
|
body: any | JSDOM | null,
|
|
|
|
|
type: string | null,
|
|
|
|
|
location: string | null
|
2023-03-18 09:01:10 +09:00
|
|
|
|
};
|
|
|
|
|
export const simpleGet = async (path: string, accept = '*/*', cookie: any = undefined): Promise<SimpleGetResponse> => {
|
2023-03-03 11:13:12 +09:00
|
|
|
|
const res = await relativeFetch(path, {
|
|
|
|
|
headers: {
|
|
|
|
|
Accept: accept,
|
2023-03-18 09:01:10 +09:00
|
|
|
|
Cookie: cookie,
|
2023-03-03 11:13:12 +09:00
|
|
|
|
},
|
|
|
|
|
redirect: 'manual',
|
|
|
|
|
});
|
|
|
|
|
|
2023-03-10 09:37:22 +09:00
|
|
|
|
const jsonTypes = [
|
|
|
|
|
'application/json; charset=utf-8',
|
|
|
|
|
'application/activity+json; charset=utf-8',
|
|
|
|
|
];
|
2023-03-18 09:01:10 +09:00
|
|
|
|
const htmlTypes = [
|
|
|
|
|
'text/html; charset=utf-8',
|
|
|
|
|
];
|
2023-03-10 09:37:22 +09:00
|
|
|
|
|
2023-06-25 08:34:18 +09:00
|
|
|
|
const body =
|
|
|
|
|
jsonTypes.includes(res.headers.get('content-type') ?? '') ? await res.json() :
|
|
|
|
|
htmlTypes.includes(res.headers.get('content-type') ?? '') ? new JSDOM(await res.text()) :
|
2023-03-18 09:01:10 +09:00
|
|
|
|
null;
|
2023-03-03 11:13:12 +09:00
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
status: res.status,
|
|
|
|
|
body,
|
|
|
|
|
type: res.headers.get('content-type'),
|
|
|
|
|
location: res.headers.get('location'),
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-05-19 20:53:20 +09:00
|
|
|
|
/**
|
|
|
|
|
* あるAPIエンドポイントのPaginationが複数の条件で一貫した挙動であることをテストします。
|
|
|
|
|
* (sinceId, untilId, sinceDate, untilDate, offset, limit)
|
|
|
|
|
* @param expected 期待値となるEntityの並び(例:Note[])昇順降順が一致している必要がある
|
|
|
|
|
* @param fetchEntities Entity[]を返却するテスト対象のAPIを呼び出す関数
|
|
|
|
|
* @param offsetBy 何をキーとしてPaginationするか。
|
|
|
|
|
* @param ordering 昇順・降順
|
|
|
|
|
*/
|
|
|
|
|
export async function testPaginationConsistency<Entity extends { id: string, createdAt?: string }>(
|
|
|
|
|
expected: Entity[],
|
|
|
|
|
fetchEntities: (paginationParam: {
|
|
|
|
|
limit?: number,
|
|
|
|
|
offset?: number,
|
|
|
|
|
sinceId?: string,
|
|
|
|
|
untilId?: string,
|
|
|
|
|
sinceDate?: number,
|
|
|
|
|
untilDate?: number,
|
|
|
|
|
}) => Promise<Entity[]>,
|
|
|
|
|
offsetBy: 'offset' | 'id' | 'createdAt' = 'id',
|
|
|
|
|
ordering: 'desc' | 'asc' = 'desc'): Promise<void> {
|
|
|
|
|
const rangeToParam = (p: { limit?: number, until?: Entity, since?: Entity }): object => {
|
|
|
|
|
if (offsetBy === 'id') {
|
|
|
|
|
return { limit: p.limit, sinceId: p.since?.id, untilId: p.until?.id };
|
|
|
|
|
} else {
|
|
|
|
|
const sinceDate = p.since?.createdAt !== undefined ? new Date(p.since.createdAt).getTime() : undefined;
|
|
|
|
|
const untilDate = p.until?.createdAt !== undefined ? new Date(p.until.createdAt).getTime() : undefined;
|
|
|
|
|
return { limit: p.limit, sinceDate, untilDate };
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for (const limit of [1, 5, 10, 100, undefined]) {
|
|
|
|
|
// 1. sinceId/DateとuntilId/Dateで両端を指定して取得した結果が期待通りになっていること
|
|
|
|
|
if (ordering === 'desc') {
|
2023-07-14 10:45:01 +09:00
|
|
|
|
const end = expected.at(-1)!;
|
2023-05-19 20:53:20 +09:00
|
|
|
|
let last = await fetchEntities(rangeToParam({ limit, since: end }));
|
|
|
|
|
const actual: Entity[] = [];
|
|
|
|
|
while (last.length !== 0) {
|
|
|
|
|
actual.push(...last);
|
2023-07-14 10:45:01 +09:00
|
|
|
|
last = await fetchEntities(rangeToParam({ limit, until: last.at(-1), since: end }));
|
2023-05-19 20:53:20 +09:00
|
|
|
|
}
|
|
|
|
|
actual.push(end);
|
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
|
actual.map(({ id, createdAt }) => id + ':' + createdAt),
|
|
|
|
|
expected.map(({ id, createdAt }) => id + ':' + createdAt));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 2. sinceId/Date指定+limitで取得してつなぎ合わせた結果が期待通りになっていること
|
|
|
|
|
if (ordering === 'asc') {
|
|
|
|
|
// 昇順にしたときの先頭(一番古いもの)をもってくる(expected[1]を基準に降順にして0番目)
|
|
|
|
|
let last = await fetchEntities({ limit: 1, untilId: expected[1].id });
|
|
|
|
|
const actual: Entity[] = [];
|
|
|
|
|
while (last.length !== 0) {
|
|
|
|
|
actual.push(...last);
|
2023-07-14 10:45:01 +09:00
|
|
|
|
last = await fetchEntities(rangeToParam({ limit, since: last.at(-1) }));
|
2023-05-19 20:53:20 +09:00
|
|
|
|
}
|
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
|
actual.map(({ id, createdAt }) => id + ':' + createdAt),
|
|
|
|
|
expected.map(({ id, createdAt }) => id + ':' + createdAt));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 3. untilId指定+limitで取得してつなぎ合わせた結果が期待通りになっていること
|
|
|
|
|
if (ordering === 'desc') {
|
|
|
|
|
let last = await fetchEntities({ limit });
|
|
|
|
|
const actual: Entity[] = [];
|
|
|
|
|
while (last.length !== 0) {
|
|
|
|
|
actual.push(...last);
|
2023-07-14 10:45:01 +09:00
|
|
|
|
last = await fetchEntities(rangeToParam({ limit, until: last.at(-1) }));
|
2023-05-19 20:53:20 +09:00
|
|
|
|
}
|
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
|
actual.map(({ id, createdAt }) => id + ':' + createdAt),
|
|
|
|
|
expected.map(({ id, createdAt }) => id + ':' + createdAt));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 4. offset指定+limitで取得してつなぎ合わせた結果が期待通りになっていること
|
|
|
|
|
if (offsetBy === 'offset') {
|
|
|
|
|
let last = await fetchEntities({ limit, offset: 0 });
|
|
|
|
|
let offset = limit ?? 10;
|
|
|
|
|
const actual: Entity[] = [];
|
|
|
|
|
while (last.length !== 0) {
|
|
|
|
|
actual.push(...last);
|
|
|
|
|
last = await fetchEntities({ limit, offset });
|
|
|
|
|
offset += limit ?? 10;
|
|
|
|
|
}
|
|
|
|
|
assert.deepStrictEqual(
|
|
|
|
|
actual.map(({ id, createdAt }) => id + ':' + createdAt),
|
|
|
|
|
expected.map(({ id, createdAt }) => id + ':' + createdAt));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
|
export async function initTestDb(justBorrow = false, initEntities?: any[]) {
|
2023-05-29 11:54:49 +09:00
|
|
|
|
if (process.env.NODE_ENV !== 'test') throw new Error('NODE_ENV is not a test');
|
2023-03-03 11:13:12 +09:00
|
|
|
|
|
|
|
|
|
const db = new DataSource({
|
|
|
|
|
type: 'postgres',
|
|
|
|
|
host: config.db.host,
|
|
|
|
|
port: config.db.port,
|
|
|
|
|
username: config.db.user,
|
|
|
|
|
password: config.db.pass,
|
|
|
|
|
database: config.db.db,
|
|
|
|
|
synchronize: true && !justBorrow,
|
|
|
|
|
dropSchema: true && !justBorrow,
|
|
|
|
|
entities: initEntities ?? entities,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await db.initialize();
|
|
|
|
|
|
|
|
|
|
return db;
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-26 19:16:32 +09:00
|
|
|
|
export function sleep(msec: number) {
|
|
|
|
|
return new Promise<void>(res => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
res();
|
|
|
|
|
}, msec);
|
|
|
|
|
});
|
|
|
|
|
}
|