[API] Fix bug

This commit is contained in:
syuilo 2017-02-12 22:39:23 +09:00
parent 03732b66c8
commit 9fa0b06b78
2 changed files with 13 additions and 2 deletions

View file

@ -53,8 +53,6 @@ module.exports = (params, user, app) =>
let media = params.media_ids;
let files = [];
if (media !== undefined && media !== null) {
media = media.split(',');
if (media.length > maxMediaCount) {
return rej('too many media');
}

View file

@ -220,6 +220,19 @@ describe('API', () => {
});
}));
it('ファイルを添付できる', () => new Promise(async (done) => {
const me = await insertSakurako();
const file = await insertDriveFile();
request('/posts/create', {
media_ids: [file._id.toString()]
}, me).then(res => {
res.should.have.status(200);
res.body.should.be.a('object');
res.body.should.have.property('media_ids').eql([file._id.toString()]);
done();
});
}));
it('返信できる', () => new Promise(async (done) => {
const hima = await insertHimawari();
const himaPost = await db.get('posts').insert({