forked from FoundKeyGang/FoundKey
improve test
This commit is contained in:
parent
39d9c613ac
commit
079425c027
1 changed files with 12 additions and 5 deletions
|
@ -223,10 +223,17 @@ describe('API: Endpoints', () => {
|
||||||
const alice = await signup({ username: 'alice' });
|
const alice = await signup({ username: 'alice' });
|
||||||
const res = await request('/notes/reactions/create', {
|
const res = await request('/notes/reactions/create', {
|
||||||
noteId: bobPost.id,
|
noteId: bobPost.id,
|
||||||
reaction: '👍',
|
reaction: '🚀',
|
||||||
}, alice);
|
}, alice);
|
||||||
|
|
||||||
assert.strictEqual(res.status, 204);
|
assert.strictEqual(res.status, 204);
|
||||||
|
|
||||||
|
const resNote = await request('/notes/show', {
|
||||||
|
noteId: bobPost.id,
|
||||||
|
}, alice);
|
||||||
|
|
||||||
|
assert.strictEqual(resNote.status, 200);
|
||||||
|
assert.strictEqual(resNote.body.reactions['🚀'], [alice.id]);
|
||||||
}));
|
}));
|
||||||
|
|
||||||
it('自分の投稿にもリアクションできる', async(async () => {
|
it('自分の投稿にもリアクションできる', async(async () => {
|
||||||
|
@ -234,7 +241,7 @@ describe('API: Endpoints', () => {
|
||||||
|
|
||||||
const res = await request('/notes/reactions/create', {
|
const res = await request('/notes/reactions/create', {
|
||||||
noteId: myPost.id,
|
noteId: myPost.id,
|
||||||
reaction: '👍',
|
reaction: '🚀',
|
||||||
}, alice);
|
}, alice);
|
||||||
|
|
||||||
assert.strictEqual(res.status, 204);
|
assert.strictEqual(res.status, 204);
|
||||||
|
@ -247,7 +254,7 @@ describe('API: Endpoints', () => {
|
||||||
|
|
||||||
const res = await request('/notes/reactions/create', {
|
const res = await request('/notes/reactions/create', {
|
||||||
noteId: bobPost.id,
|
noteId: bobPost.id,
|
||||||
reaction: '👍',
|
reaction: '🚀',
|
||||||
}, alice);
|
}, alice);
|
||||||
|
|
||||||
assert.strictEqual(res.status, 400);
|
assert.strictEqual(res.status, 400);
|
||||||
|
@ -256,7 +263,7 @@ describe('API: Endpoints', () => {
|
||||||
it('存在しない投稿にはリアクションできない', async(async () => {
|
it('存在しない投稿にはリアクションできない', async(async () => {
|
||||||
const res = await request('/notes/reactions/create', {
|
const res = await request('/notes/reactions/create', {
|
||||||
noteId: '000000000000000000000000',
|
noteId: '000000000000000000000000',
|
||||||
reaction: '👍',
|
reaction: '🚀',
|
||||||
}, alice);
|
}, alice);
|
||||||
|
|
||||||
assert.strictEqual(res.status, 400);
|
assert.strictEqual(res.status, 400);
|
||||||
|
@ -271,7 +278,7 @@ describe('API: Endpoints', () => {
|
||||||
it('間違ったIDで怒られる', async(async () => {
|
it('間違ったIDで怒られる', async(async () => {
|
||||||
const res = await request('/notes/reactions/create', {
|
const res = await request('/notes/reactions/create', {
|
||||||
noteId: 'kyoppie',
|
noteId: 'kyoppie',
|
||||||
reaction: '👍',
|
reaction: '🚀',
|
||||||
}, alice);
|
}, alice);
|
||||||
|
|
||||||
assert.strictEqual(res.status, 400);
|
assert.strictEqual(res.status, 400);
|
||||||
|
|
Loading…
Reference in a new issue