2017-01-17 08:26:59 +09:00
|
|
|
/**
|
|
|
|
* API TESTS
|
|
|
|
*/
|
|
|
|
|
2017-01-17 10:39:28 +09:00
|
|
|
// During the test the env variable is set to test
|
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
|
2017-01-17 08:26:59 +09:00
|
|
|
const chai = require('chai');
|
|
|
|
const chaiHttp = require('chai-http');
|
|
|
|
const should = chai.should();
|
|
|
|
|
|
|
|
chai.use(chaiHttp);
|
2017-01-17 09:32:28 +09:00
|
|
|
|
|
|
|
const server = require('../built/api/server');
|
2017-01-17 10:39:28 +09:00
|
|
|
const db = require('../built/db/mongodb').default;
|
2017-01-17 09:32:28 +09:00
|
|
|
|
2017-01-17 11:20:19 +09:00
|
|
|
const request = (endpoint, params, me) => new Promise((ok, ng) => {
|
|
|
|
chai.request(server)
|
|
|
|
.post(endpoint)
|
|
|
|
.set('content-type', 'application/x-www-form-urlencoded')
|
|
|
|
.send(Object.assign({ i: me }, params))
|
|
|
|
.end((err, res) => {
|
|
|
|
ok(res);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-01-17 09:32:28 +09:00
|
|
|
describe('API', () => {
|
2017-01-17 10:39:28 +09:00
|
|
|
// Reset database
|
|
|
|
db.get('users').drop();
|
2017-01-17 11:11:27 +09:00
|
|
|
db.get('posts').drop();
|
2017-01-17 10:39:28 +09:00
|
|
|
|
2017-01-17 09:51:44 +09:00
|
|
|
it('greet server', done => {
|
|
|
|
chai.request(server)
|
|
|
|
.get('/')
|
|
|
|
.end((err, res) => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.text.should.be.equal('YEE HAW');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-01-17 11:11:27 +09:00
|
|
|
const account = {
|
|
|
|
username: 'sakurako',
|
|
|
|
password: 'HimawariDaisuki06160907'
|
|
|
|
};
|
|
|
|
|
|
|
|
let me;
|
|
|
|
|
2017-01-17 11:37:14 +09:00
|
|
|
describe('signup', () => {
|
|
|
|
it('不正なユーザー名でアカウントが作成できない', done => {
|
|
|
|
request('/signup', {
|
|
|
|
username: 'sakurako.',
|
|
|
|
password: account.password
|
|
|
|
}).then(res => {
|
|
|
|
res.should.have.status(400);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('空のパスワードでアカウントが作成できない', done => {
|
|
|
|
request('/signup', {
|
|
|
|
username: account.username,
|
|
|
|
password: ''
|
|
|
|
}).then(res => {
|
|
|
|
res.should.have.status(400);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('正しくアカウントが作成できる', done => {
|
|
|
|
request('/signup', account).then(res => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
|
|
|
res.body.should.have.property('username').eql(account.username);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('同じユーザー名のアカウントは作成できない', done => {
|
|
|
|
request('/signup', account).then(res => {
|
|
|
|
res.should.have.status(400);
|
|
|
|
done();
|
|
|
|
});
|
2017-01-17 11:20:19 +09:00
|
|
|
});
|
2017-01-17 09:51:44 +09:00
|
|
|
});
|
|
|
|
|
2017-01-17 11:28:50 +09:00
|
|
|
describe('signin', () => {
|
|
|
|
it('間違ったパスワードでサインインできない', done => {
|
|
|
|
request('/signin', {
|
|
|
|
username: account.username,
|
|
|
|
password: account.password + '.'
|
|
|
|
}).then(res => {
|
|
|
|
res.should.have.status(400);
|
|
|
|
res.text.should.be.equal('incorrect password');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-01-17 13:54:09 +09:00
|
|
|
it('正しい情報でサインインできる', done => {
|
2017-01-17 11:28:50 +09:00
|
|
|
request('/signin', account).then(res => {
|
|
|
|
res.should.have.status(204);
|
|
|
|
me = res.header['set-cookie'][0].match(/i=(!\w+)/)[1];
|
|
|
|
done();
|
|
|
|
});
|
2017-01-17 11:20:19 +09:00
|
|
|
});
|
2017-01-17 11:11:27 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('i/update', () => {
|
|
|
|
it('update my name', done => {
|
|
|
|
const myName = '大室櫻子';
|
2017-01-17 11:20:19 +09:00
|
|
|
request('/i/update', {
|
|
|
|
name: myName
|
|
|
|
}, me).then(res => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
|
|
|
res.body.should.have.property('name').eql(myName);
|
|
|
|
done();
|
|
|
|
});
|
2017-01-17 11:11:27 +09:00
|
|
|
});
|
2017-01-17 11:28:50 +09:00
|
|
|
|
|
|
|
it('update my location', done => {
|
|
|
|
const myLocation = '七森中';
|
|
|
|
request('/i/update', {
|
|
|
|
location: myLocation
|
|
|
|
}, me).then(res => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
|
|
|
res.body.should.have.property('location').eql(myLocation);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2017-01-17 11:11:27 +09:00
|
|
|
});
|
|
|
|
|
2017-01-17 09:32:28 +09:00
|
|
|
describe('posts/create', () => {
|
|
|
|
it('simple', done => {
|
|
|
|
const post = {
|
2017-01-17 11:21:21 +09:00
|
|
|
text: 'ひまわりー'
|
2017-01-17 09:32:28 +09:00
|
|
|
};
|
2017-01-17 11:20:19 +09:00
|
|
|
request('/posts/create', post, me).then(res => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
|
|
|
done();
|
|
|
|
});
|
2017-01-17 09:32:28 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
it('reply', () => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
it('repost', () => {
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
2017-01-17 13:54:09 +09:00
|
|
|
});
|