2017-01-16 23:26:59 +00:00
|
|
|
/**
|
|
|
|
* API TESTS
|
|
|
|
*/
|
|
|
|
|
|
|
|
const chai = require('chai');
|
|
|
|
const chaiHttp = require('chai-http');
|
|
|
|
const should = chai.should();
|
|
|
|
|
|
|
|
chai.use(chaiHttp);
|
2017-01-17 00:32:28 +00:00
|
|
|
|
|
|
|
const server = require('../built/api/server');
|
|
|
|
|
|
|
|
describe('API', () => {
|
2017-01-17 00:51:44 +00: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();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('create account', done => {
|
|
|
|
const account = {
|
|
|
|
username: 'sakurako',
|
|
|
|
password: 'HimawariDaisuki06160907'
|
|
|
|
};
|
|
|
|
chai.request(server)
|
|
|
|
.post('/signup')
|
|
|
|
.send(account)
|
|
|
|
.end((err, res) => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
2017-01-17 01:06:54 +00:00
|
|
|
res.body.should.have.property('username').eql(account.username);
|
2017-01-17 00:51:44 +00:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-01-17 00:32:28 +00:00
|
|
|
describe('posts/create', () => {
|
|
|
|
it('simple', done => {
|
|
|
|
const post = {
|
|
|
|
text: 'Hi'
|
|
|
|
};
|
|
|
|
chai.request(server)
|
|
|
|
.post('/posts/create')
|
|
|
|
.send(post)
|
|
|
|
.end((err, res) => {
|
|
|
|
res.should.have.status(200);
|
|
|
|
res.body.should.be.a('object');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('reply', () => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
it('repost', () => {
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|