2022-02-18 21:05:32 -08:00
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
|
|
|
|
import * as assert from 'assert';
|
2023-03-02 18:13:12 -08:00
|
|
|
// node-fetch only supports it's own Blob yet
|
|
|
|
// https://github.com/node-fetch/node-fetch/pull/1664
|
|
|
|
import { Blob } from 'node-fetch';
|
2023-03-09 16:37:22 -08:00
|
|
|
import { startServer, signup, post, api, uploadFile, simpleGet } from '../utils.js';
|
2023-03-02 18:13:12 -08:00
|
|
|
import type { INestApplicationContext } from '@nestjs/common';
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
describe('Endpoints', () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
let app: INestApplicationContext;
|
2022-09-17 11:27:08 -07:00
|
|
|
|
2022-02-18 21:05:32 -08:00
|
|
|
let alice: any;
|
|
|
|
let bob: any;
|
2023-03-02 18:13:12 -08:00
|
|
|
let carol: any;
|
|
|
|
let dave: any;
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
beforeAll(async () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
app = await startServer();
|
2022-02-18 21:05:32 -08:00
|
|
|
alice = await signup({ username: 'alice' });
|
|
|
|
bob = await signup({ username: 'bob' });
|
2023-03-02 18:13:12 -08:00
|
|
|
carol = await signup({ username: 'carol' });
|
|
|
|
dave = await signup({ username: 'dave' });
|
|
|
|
}, 1000 * 60 * 2);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
afterAll(async () => {
|
2023-03-12 04:57:01 -07:00
|
|
|
await app.close();
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('signup', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('不正なユーザー名でアカウントが作成できない', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('signup', {
|
2022-02-18 21:05:32 -08:00
|
|
|
username: 'test.',
|
2022-09-17 11:27:08 -07:00
|
|
|
password: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('空のパスワードでアカウントが作成できない', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('signup', {
|
2022-02-18 21:05:32 -08:00
|
|
|
username: 'test',
|
2022-09-17 11:27:08 -07:00
|
|
|
password: '',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('正しくアカウントが作成できる', async () => {
|
2022-02-18 21:05:32 -08:00
|
|
|
const me = {
|
|
|
|
username: 'test1',
|
2022-09-17 11:27:08 -07:00
|
|
|
password: 'test1',
|
2022-02-18 21:05:32 -08:00
|
|
|
};
|
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('signup', me);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.username, me.username);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('同じユーザー名のアカウントは作成できない', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('signup', {
|
2022-09-17 11:27:08 -07:00
|
|
|
username: 'test1',
|
|
|
|
password: 'test1',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('signin', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('間違ったパスワードでサインインできない', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('signin', {
|
2022-09-17 11:27:08 -07:00
|
|
|
username: 'test1',
|
|
|
|
password: 'bar',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 403);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('クエリをインジェクションできない', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('signin', {
|
2022-09-17 11:27:08 -07:00
|
|
|
username: 'test1',
|
2022-02-18 21:05:32 -08:00
|
|
|
password: {
|
2022-09-17 11:27:08 -07:00
|
|
|
$gt: '',
|
|
|
|
},
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('正しい情報でサインインできる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('signin', {
|
2022-09-17 11:27:08 -07:00
|
|
|
username: 'test1',
|
|
|
|
password: 'test1',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('i/update', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('アカウント設定を更新できる', async () => {
|
2022-02-18 21:05:32 -08:00
|
|
|
const myName = '大室櫻子';
|
|
|
|
const myLocation = '七森中';
|
|
|
|
const myBirthday = '2000-09-07';
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/i/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
name: myName,
|
|
|
|
location: myLocation,
|
2022-09-17 11:27:08 -07:00
|
|
|
birthday: myBirthday,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.name, myName);
|
|
|
|
assert.strictEqual(res.body.location, myLocation);
|
|
|
|
assert.strictEqual(res.body.birthday, myBirthday);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
test('名前を空白にできる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/i/update', {
|
|
|
|
name: ' ',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
2023-03-02 18:13:12 -08:00
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(res.body.name, ' ');
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('誕生日の設定を削除できる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/i/update', {
|
|
|
|
birthday: '2000-09-07',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/i/update', {
|
|
|
|
birthday: null,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.birthday, null);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('不正な誕生日の形式で怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/i/update', {
|
|
|
|
birthday: '2000/09/07',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('users/show', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ユーザーが取得できる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/users/show', {
|
|
|
|
userId: alice.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.id, alice.id);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ユーザーが存在しなかったら怒る', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/users/show', {
|
|
|
|
userId: '000000000000000000000000',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('間違ったIDで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/users/show', {
|
|
|
|
userId: 'kyoppie',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('notes/show', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('投稿が取得できる', async () => {
|
2022-02-18 21:05:32 -08:00
|
|
|
const myPost = await post(alice, {
|
2022-09-17 11:27:08 -07:00
|
|
|
text: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/show', {
|
|
|
|
noteId: myPost.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.id, myPost.id);
|
|
|
|
assert.strictEqual(res.body.text, myPost.text);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('投稿が存在しなかったら怒る', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/show', {
|
|
|
|
noteId: '000000000000000000000000',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('間違ったIDで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/show', {
|
|
|
|
noteId: 'kyoppie',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('notes/reactions/create', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('リアクションできる', async () => {
|
2023-03-07 15:56:09 -08:00
|
|
|
const bobPost = await post(bob, { text: 'hi' });
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/reactions/create', {
|
2022-02-18 21:05:32 -08:00
|
|
|
noteId: bobPost.id,
|
2022-02-26 21:14:27 -08:00
|
|
|
reaction: '🚀',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 204);
|
2022-02-26 21:14:27 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const resNote = await api('/notes/show', {
|
2022-02-26 21:14:27 -08:00
|
|
|
noteId: bobPost.id,
|
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(resNote.status, 200);
|
2023-03-02 18:13:12 -08:00
|
|
|
assert.strictEqual(resNote.body.reactions['🚀'], 1);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('自分の投稿にもリアクションできる', async () => {
|
2023-03-07 15:56:09 -08:00
|
|
|
const myPost = await post(alice, { text: 'hi' });
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/reactions/create', {
|
2022-02-18 21:05:32 -08:00
|
|
|
noteId: myPost.id,
|
2022-02-26 21:14:27 -08:00
|
|
|
reaction: '🚀',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 204);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
test('二重にリアクションすると上書きされる', async () => {
|
2023-03-07 15:56:09 -08:00
|
|
|
const bobPost = await post(bob, { text: 'hi' });
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/notes/reactions/create', {
|
|
|
|
noteId: bobPost.id,
|
|
|
|
reaction: '🥰',
|
|
|
|
}, alice);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/reactions/create', {
|
2022-02-18 21:05:32 -08:00
|
|
|
noteId: bobPost.id,
|
2022-02-26 21:14:27 -08:00
|
|
|
reaction: '🚀',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
assert.strictEqual(res.status, 204);
|
|
|
|
|
|
|
|
const resNote = await api('/notes/show', {
|
|
|
|
noteId: bobPost.id,
|
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(resNote.status, 200);
|
|
|
|
assert.deepStrictEqual(resNote.body.reactions, { '🚀': 1 });
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('存在しない投稿にはリアクションできない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/reactions/create', {
|
2022-02-18 21:05:32 -08:00
|
|
|
noteId: '000000000000000000000000',
|
2022-02-26 21:14:27 -08:00
|
|
|
reaction: '🚀',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('空のパラメータで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/reactions/create', {}, alice);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('間違ったIDで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/reactions/create', {
|
2022-02-18 21:05:32 -08:00
|
|
|
noteId: 'kyoppie',
|
2022-02-26 21:14:27 -08:00
|
|
|
reaction: '🚀',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('following/create', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('フォローできる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/create', {
|
|
|
|
userId: alice.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, bob);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('既にフォローしている場合は怒る', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/create', {
|
|
|
|
userId: alice.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, bob);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('存在しないユーザーはフォローできない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/create', {
|
|
|
|
userId: '000000000000000000000000',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('自分自身はフォローできない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/create', {
|
|
|
|
userId: alice.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('空のパラメータで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/create', {}, alice);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('間違ったIDで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/create', {
|
|
|
|
userId: 'foo',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('following/delete', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('フォロー解除できる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/following/create', {
|
|
|
|
userId: alice.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, bob);
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/delete', {
|
|
|
|
userId: alice.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, bob);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('フォローしていない場合は怒る', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/delete', {
|
|
|
|
userId: alice.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, bob);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('存在しないユーザーはフォロー解除できない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/delete', {
|
|
|
|
userId: '000000000000000000000000',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('自分自身はフォロー解除できない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/delete', {
|
|
|
|
userId: alice.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('空のパラメータで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/delete', {}, alice);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('間違ったIDで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/following/delete', {
|
|
|
|
userId: 'kyoppie',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2022-09-17 11:27:08 -07:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-02-18 21:05:32 -08:00
|
|
|
describe('drive', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ドライブ情報を取得できる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
await uploadFile(alice, {
|
|
|
|
blob: new Blob([new Uint8Array(256)]),
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
2023-03-02 18:13:12 -08:00
|
|
|
await uploadFile(alice, {
|
|
|
|
blob: new Blob([new Uint8Array(512)]),
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
2023-03-02 18:13:12 -08:00
|
|
|
await uploadFile(alice, {
|
|
|
|
blob: new Blob([new Uint8Array(1024)]),
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive', {}, alice);
|
2022-02-18 21:05:32 -08:00
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
2023-03-02 18:13:12 -08:00
|
|
|
expect(res.body).toHaveProperty('usage', 1792);
|
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('drive/files/create', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ファイルを作成できる', async () => {
|
2022-02-18 21:05:32 -08:00
|
|
|
const res = await uploadFile(alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
2023-03-02 18:13:12 -08:00
|
|
|
assert.strictEqual(res.body.name, 'Lenna.jpg');
|
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ファイルに名前を付けられる', async () => {
|
2023-03-03 23:51:07 -08:00
|
|
|
const res = await uploadFile(alice, { name: 'Belmond.jpg' });
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.name, 'Belmond.jpg');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('ファイルに名前を付けられるが、拡張子は正しいものになる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await uploadFile(alice, { name: 'Belmond.png' });
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
2023-03-03 23:51:07 -08:00
|
|
|
assert.strictEqual(res.body.name, 'Belmond.png.jpg');
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ファイル無しで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/create', {}, alice);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('SVGファイルを作成できる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await uploadFile(alice, { path: 'image.svg' });
|
2022-02-18 21:05:32 -08:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.name, 'image.svg');
|
|
|
|
assert.strictEqual(res.body.type, 'image/svg+xml');
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2023-03-09 16:37:22 -08:00
|
|
|
|
|
|
|
for (const type of ['webp', 'avif']) {
|
|
|
|
const mediaType = `image/${type}`;
|
|
|
|
|
|
|
|
const getWebpublicType = async (user: any, fileId: string): Promise<string> => {
|
|
|
|
// drive/files/create does not expose webpublicType directly, so get it by posting it
|
|
|
|
const res = await post(user, {
|
|
|
|
text: mediaType,
|
|
|
|
fileIds: [fileId],
|
|
|
|
});
|
|
|
|
const apRes = await simpleGet(`notes/${res.id}`, 'application/activity+json');
|
|
|
|
assert.strictEqual(apRes.status, 200);
|
|
|
|
assert.ok(Array.isArray(apRes.body.attachment));
|
|
|
|
return apRes.body.attachment[0].mediaType;
|
|
|
|
};
|
|
|
|
|
|
|
|
test(`透明な${type}ファイルを作成できる`, async () => {
|
|
|
|
const path = `with-alpha.${type}`;
|
|
|
|
const res = await uploadFile(alice, { path });
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(res.body.name, path);
|
|
|
|
assert.strictEqual(res.body.type, mediaType);
|
|
|
|
|
|
|
|
const webpublicType = await getWebpublicType(alice, res.body.id);
|
|
|
|
assert.strictEqual(webpublicType, 'image/webp');
|
|
|
|
});
|
|
|
|
|
|
|
|
test(`透明じゃない${type}ファイルを作成できる`, async () => {
|
|
|
|
const path = `without-alpha.${type}`;
|
|
|
|
const res = await uploadFile(alice, { path });
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(res.body.name, path);
|
|
|
|
assert.strictEqual(res.body.type, mediaType);
|
|
|
|
|
|
|
|
const webpublicType = await getWebpublicType(alice, res.body.id);
|
|
|
|
assert.strictEqual(webpublicType, 'image/webp');
|
|
|
|
});
|
|
|
|
}
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('drive/files/update', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('名前を更新できる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const file = (await uploadFile(alice)).body;
|
2022-02-18 21:05:32 -08:00
|
|
|
const newName = 'いちごパスタ.png';
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: file.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
name: newName,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.name, newName);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('他人のファイルは更新できない', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const file = (await uploadFile(alice)).body;
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: file.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'いちごパスタ.png',
|
|
|
|
}, bob);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('親フォルダを更新できる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const file = (await uploadFile(alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: file.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
folderId: folder.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.folderId, folder.id);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('親フォルダを無しにできる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const file = (await uploadFile(alice)).body;
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: file.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
folderId: folder.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: file.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
folderId: null,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.folderId, null);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('他人のフォルダには入れられない', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const file = (await uploadFile(alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, bob)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: file.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
folderId: folder.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('存在しないフォルダで怒られる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const file = (await uploadFile(alice)).body;
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: file.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
folderId: '000000000000000000000000',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('不正なフォルダIDで怒られる', async () => {
|
2023-03-02 18:13:12 -08:00
|
|
|
const file = (await uploadFile(alice)).body;
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: file.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
folderId: 'foo',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('ファイルが存在しなかったら怒る', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: '000000000000000000000000',
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'いちごパスタ.png',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('間違ったIDで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/files/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
fileId: 'kyoppie',
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'いちごパスタ.png',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('drive/folders/create', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('フォルダを作成できる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.name, 'test');
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('drive/folders/update', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('名前を更新できる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'new name',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.name, 'new name');
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('他人のフォルダを更新できない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, bob)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'new name',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('親フォルダを更新できる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
const parentFolder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'parent',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: parentFolder.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.parentId, parentFolder.id);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('親フォルダを無しに更新できる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
const parentFolder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'parent',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: parentFolder.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: null,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.parentId, null);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('他人のフォルダを親フォルダに設定できない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
const parentFolder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'parent',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, bob)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: parentFolder.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('フォルダが循環するような構造にできない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
const parentFolder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'parent',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: parentFolder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: folder.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: parentFolder.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('フォルダが循環するような構造にできない(再帰的)', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folderA = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
const folderB = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
const folderC = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folderB.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: folderA.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folderC.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: folderB.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folderA.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: folderC.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('フォルダが循環するような構造にできない(自身)', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folderA = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folderA.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: folderA.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('存在しない親フォルダを設定できない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: '000000000000000000000000',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('不正な親フォルダIDで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const folder = (await api('/drive/folders/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
name: 'test',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice)).body;
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2022-02-18 21:05:32 -08:00
|
|
|
folderId: folder.id,
|
2023-03-02 18:13:12 -08:00
|
|
|
parentId: 'foo',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('存在しないフォルダを更新できない', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2023-03-02 18:13:12 -08:00
|
|
|
folderId: '000000000000000000000000',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('不正なフォルダIDで怒られる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/drive/folders/update', {
|
2023-03-02 18:13:12 -08:00
|
|
|
folderId: 'foo',
|
2022-02-18 21:05:32 -08:00
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 400);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('notes/replies', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('自分に閲覧権限のない投稿は含まれない', async () => {
|
2022-02-18 21:05:32 -08:00
|
|
|
const alicePost = await post(alice, {
|
2023-03-02 18:13:12 -08:00
|
|
|
text: 'foo',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
await post(bob, {
|
|
|
|
replyId: alicePost.id,
|
|
|
|
text: 'bar',
|
|
|
|
visibility: 'specified',
|
2023-03-02 18:13:12 -08:00
|
|
|
visibleUserIds: [alice.id],
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
2022-09-17 11:27:08 -07:00
|
|
|
const res = await api('/notes/replies', {
|
2023-03-02 18:13:12 -08:00
|
|
|
noteId: alicePost.id,
|
2022-02-18 21:05:32 -08:00
|
|
|
}, carol);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.length, 0);
|
2023-03-02 18:13:12 -08:00
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('notes/timeline', () => {
|
2023-02-02 01:18:25 -08:00
|
|
|
test('フォロワー限定投稿が含まれる', async () => {
|
2022-09-17 11:27:08 -07:00
|
|
|
await api('/following/create', {
|
2023-03-02 18:13:12 -08:00
|
|
|
userId: carol.id,
|
|
|
|
}, dave);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
const carolPost = await post(carol, {
|
2022-02-18 21:05:32 -08:00
|
|
|
text: 'foo',
|
2023-03-02 18:13:12 -08:00
|
|
|
visibility: 'followers',
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
|
2023-03-02 18:13:12 -08:00
|
|
|
const res = await api('/notes/timeline', {}, dave);
|
2022-02-18 21:05:32 -08:00
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.length, 1);
|
2023-03-02 18:13:12 -08:00
|
|
|
assert.strictEqual(res.body[0].id, carolPost.id);
|
|
|
|
});
|
2022-02-18 21:05:32 -08:00
|
|
|
});
|
|
|
|
});
|