2019-04-07 05:50:36 -07:00
|
|
|
/*
|
|
|
|
* Tests of Note
|
|
|
|
*
|
|
|
|
* How to run the tests:
|
2019-08-31 12:31:59 -07:00
|
|
|
* > npx mocha test/user-notes.ts --require ts-node/register
|
2019-04-07 05:50:36 -07:00
|
|
|
*
|
|
|
|
* To specify test:
|
2019-08-31 12:31:59 -07:00
|
|
|
* > npx mocha test/user-notes.ts --require ts-node/register -g 'test name'
|
2019-04-07 05:50:36 -07:00
|
|
|
*
|
|
|
|
* If the tests not start, try set following enviroment variables:
|
|
|
|
* TS_NODE_FILES=true and TS_NODE_TRANSPILE_ONLY=true
|
|
|
|
* for more details, please see: https://github.com/TypeStrong/ts-node/issues/754
|
|
|
|
*/
|
|
|
|
|
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
|
|
|
|
import * as assert from 'assert';
|
|
|
|
import * as childProcess from 'child_process';
|
2020-01-08 21:35:04 -08:00
|
|
|
import { async, signup, request, post, uploadFile, launchServer } from './utils';
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
describe('users/notes', () => {
|
|
|
|
let p: childProcess.ChildProcess;
|
|
|
|
|
|
|
|
let alice: any;
|
|
|
|
let jpgNote: any;
|
|
|
|
let pngNote: any;
|
|
|
|
let jpgPngNote: any;
|
|
|
|
|
2020-01-08 21:35:04 -08:00
|
|
|
before(launchServer(g => p = g, async () => {
|
|
|
|
alice = await signup({ username: 'alice' });
|
|
|
|
const jpg = await uploadFile(alice, __dirname + '/resources/Lenna.jpg');
|
|
|
|
const png = await uploadFile(alice, __dirname + '/resources/Lenna.png');
|
|
|
|
jpgNote = await post(alice, {
|
|
|
|
fileIds: [jpg.id]
|
2019-04-07 05:50:36 -07:00
|
|
|
});
|
2020-01-08 21:35:04 -08:00
|
|
|
pngNote = await post(alice, {
|
|
|
|
fileIds: [png.id]
|
2019-04-07 05:50:36 -07:00
|
|
|
});
|
2020-01-08 21:35:04 -08:00
|
|
|
jpgPngNote = await post(alice, {
|
|
|
|
fileIds: [jpg.id, png.id]
|
|
|
|
});
|
|
|
|
}));
|
2019-04-07 05:50:36 -07:00
|
|
|
|
|
|
|
after(() => {
|
|
|
|
p.kill();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('ファイルタイプ指定 (jpg)', async(async () => {
|
|
|
|
const res = await request('/users/notes', {
|
|
|
|
userId: alice.id,
|
|
|
|
fileType: ['image/jpeg']
|
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.length, 2);
|
2020-01-08 21:35:04 -08:00
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === jpgNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === jpgPngNote.id), true);
|
2019-04-07 05:50:36 -07:00
|
|
|
}));
|
|
|
|
|
|
|
|
it('ファイルタイプ指定 (jpg or png)', async(async () => {
|
|
|
|
const res = await request('/users/notes', {
|
|
|
|
userId: alice.id,
|
|
|
|
fileType: ['image/jpeg', 'image/png']
|
|
|
|
}, alice);
|
|
|
|
|
|
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
assert.strictEqual(Array.isArray(res.body), true);
|
|
|
|
assert.strictEqual(res.body.length, 3);
|
2020-01-08 21:35:04 -08:00
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === jpgNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === pngNote.id), true);
|
|
|
|
assert.strictEqual(res.body.some((note: any) => note.id === jpgPngNote.id), true);
|
2019-04-07 05:50:36 -07:00
|
|
|
}));
|
|
|
|
});
|