2018-10-16 06:37:21 +09:00
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
import * as assert from 'assert';
|
2023-03-03 11:13:12 +09:00
|
|
|
import { signup, api, startServer } from '../utils.js';
|
|
|
|
import type { INestApplicationContext } from '@nestjs/common';
|
2023-06-25 08:34:18 +09:00
|
|
|
import type * as misskey from 'misskey-js';
|
2018-10-16 06:37:21 +09:00
|
|
|
|
|
|
|
describe('API', () => {
|
2023-03-12 20:57:01 +09:00
|
|
|
let app: INestApplicationContext;
|
2023-06-25 08:34:18 +09:00
|
|
|
let alice: misskey.entities.MeSignup;
|
|
|
|
let bob: misskey.entities.MeSignup;
|
|
|
|
let carol: misskey.entities.MeSignup;
|
2019-04-07 21:50:36 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
beforeAll(async () => {
|
2023-03-12 20:57:01 +09:00
|
|
|
app = await startServer();
|
2022-02-19 14:05:32 +09:00
|
|
|
alice = await signup({ username: 'alice' });
|
|
|
|
bob = await signup({ username: 'bob' });
|
|
|
|
carol = await signup({ username: 'carol' });
|
2023-03-03 11:13:12 +09:00
|
|
|
}, 1000 * 60 * 2);
|
2018-10-16 06:37:21 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
afterAll(async () => {
|
2023-03-12 20:57:01 +09:00
|
|
|
await app.close();
|
2019-01-23 13:35:22 +09:00
|
|
|
});
|
|
|
|
|
2022-02-19 14:05:32 +09:00
|
|
|
describe('General validation', () => {
|
2023-03-03 11:13:12 +09:00
|
|
|
test('wrong type', async () => {
|
|
|
|
const res = await api('/test', {
|
2022-02-19 14:05:32 +09:00
|
|
|
required: true,
|
|
|
|
string: 42,
|
2018-10-16 06:37:21 +09:00
|
|
|
});
|
2019-04-07 21:50:36 +09:00
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-03 11:13:12 +09:00
|
|
|
});
|
2018-10-16 06:37:21 +09:00
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
test('missing require param', async () => {
|
|
|
|
const res = await api('/test', {
|
2022-02-19 14:05:32 +09:00
|
|
|
string: 'a',
|
2018-10-16 06:37:21 +09:00
|
|
|
});
|
2019-04-07 21:50:36 +09:00
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-03 11:13:12 +09:00
|
|
|
});
|
2018-10-16 06:37:21 +09:00
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
test('invalid misskey:id (empty string)', async () => {
|
|
|
|
const res = await api('/test', {
|
2022-02-19 14:05:32 +09:00
|
|
|
required: true,
|
|
|
|
id: '',
|
2018-10-16 06:37:21 +09:00
|
|
|
});
|
2019-04-07 21:50:36 +09:00
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-03 11:13:12 +09:00
|
|
|
});
|
2018-10-16 06:37:21 +09:00
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
test('valid misskey:id', async () => {
|
|
|
|
const res = await api('/test', {
|
2022-02-19 14:05:32 +09:00
|
|
|
required: true,
|
|
|
|
id: '8wvhjghbxu',
|
2018-10-16 06:37:21 +09:00
|
|
|
});
|
2019-04-07 21:50:36 +09:00
|
|
|
assert.strictEqual(res.status, 200);
|
2023-03-03 11:13:12 +09:00
|
|
|
});
|
2018-10-16 08:54:36 +09:00
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
test('default value', async () => {
|
|
|
|
const res = await api('/test', {
|
2022-02-19 14:05:32 +09:00
|
|
|
required: true,
|
|
|
|
string: 'a',
|
2018-10-16 09:45:36 +09:00
|
|
|
});
|
2019-04-07 21:50:36 +09:00
|
|
|
assert.strictEqual(res.status, 200);
|
2022-02-19 14:05:32 +09:00
|
|
|
assert.strictEqual(res.body.default, 'hello');
|
2023-03-03 11:13:12 +09:00
|
|
|
});
|
2018-10-16 09:45:36 +09:00
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
test('can set null even if it has default value', async () => {
|
|
|
|
const res = await api('/test', {
|
2022-02-19 14:05:32 +09:00
|
|
|
required: true,
|
|
|
|
nullableDefault: null,
|
2018-10-16 09:45:36 +09:00
|
|
|
});
|
2019-04-07 21:50:36 +09:00
|
|
|
assert.strictEqual(res.status, 200);
|
2022-02-19 14:05:32 +09:00
|
|
|
assert.strictEqual(res.body.nullableDefault, null);
|
2023-03-03 11:13:12 +09:00
|
|
|
});
|
2018-10-16 10:18:47 +09:00
|
|
|
|
2023-03-03 11:13:12 +09:00
|
|
|
test('cannot set undefined if it has default value', async () => {
|
|
|
|
const res = await api('/test', {
|
2022-02-19 14:05:32 +09:00
|
|
|
required: true,
|
|
|
|
nullableDefault: undefined,
|
2018-10-16 10:18:47 +09:00
|
|
|
});
|
2019-04-07 21:50:36 +09:00
|
|
|
assert.strictEqual(res.status, 200);
|
2022-02-19 14:05:32 +09:00
|
|
|
assert.strictEqual(res.body.nullableDefault, 'hello');
|
2023-03-03 11:13:12 +09:00
|
|
|
});
|
2019-01-25 10:58:39 +09:00
|
|
|
});
|
2018-10-16 06:37:21 +09:00
|
|
|
});
|