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
|
|
|
|
|
|
|
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 09:51:44 +09:00
|
|
|
it('create account', done => {
|
|
|
|
chai.request(server)
|
|
|
|
.post('/signup')
|
2017-01-17 10:23:15 +09:00
|
|
|
.set('content-type', 'application/x-www-form-urlencoded')
|
2017-01-17 09:51:44 +09:00
|
|
|
.send(account)
|
|
|
|
.end((err, res) => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
2017-01-17 10:06:54 +09:00
|
|
|
res.body.should.have.property('username').eql(account.username);
|
2017-01-17 09:51:44 +09:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-01-17 11:11:27 +09:00
|
|
|
it('signin', done => {
|
|
|
|
chai.request(server)
|
|
|
|
.post('/signin')
|
|
|
|
.set('content-type', 'application/x-www-form-urlencoded')
|
|
|
|
.send(account)
|
|
|
|
.end((err, res) => {
|
|
|
|
res.should.have.status(204);
|
|
|
|
me = res.header['set-cookie'][0].match(/i=(!\w+)/)[1];
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('i/update', () => {
|
|
|
|
it('update my name', done => {
|
|
|
|
const myName = '大室櫻子';
|
|
|
|
chai.request(server)
|
|
|
|
.post('/i/update')
|
|
|
|
.set('content-type', 'application/x-www-form-urlencoded')
|
|
|
|
.send(Object.assign({ i: me }, {
|
|
|
|
name: myName
|
|
|
|
}))
|
|
|
|
.end((err, res) => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
|
|
|
res.body.should.have.property('name').eql(myName);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-01-17 09:32:28 +09:00
|
|
|
describe('posts/create', () => {
|
|
|
|
it('simple', done => {
|
|
|
|
const post = {
|
|
|
|
text: 'Hi'
|
|
|
|
};
|
|
|
|
chai.request(server)
|
|
|
|
.post('/posts/create')
|
2017-01-17 11:11:27 +09:00
|
|
|
.set('content-type', 'application/x-www-form-urlencoded')
|
|
|
|
.send(Object.assign({ i: me }, post))
|
2017-01-17 09:32:28 +09:00
|
|
|
.end((err, res) => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('reply', () => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
it('repost', () => {
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|