mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 10:43:09 +02:00
71 lines
No EOL
1.3 KiB
JavaScript
71 lines
No EOL
1.3 KiB
JavaScript
/**
|
|
* API TESTS
|
|
*/
|
|
|
|
// During the test the env variable is set to test
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
const chai = require('chai');
|
|
const chaiHttp = require('chai-http');
|
|
const should = chai.should();
|
|
|
|
chai.use(chaiHttp);
|
|
|
|
const server = require('../built/api/server');
|
|
const db = require('../built/db/mongodb').default;
|
|
|
|
describe('API', () => {
|
|
// Reset database
|
|
db.get('users').drop();
|
|
|
|
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')
|
|
.set('content-type', 'application/x-www-form-urlencoded')
|
|
.send(account)
|
|
.end((err, res) => {
|
|
res.should.have.status(200);
|
|
res.body.should.be.a('object');
|
|
res.body.should.have.property('username').eql(account.username);
|
|
done();
|
|
});
|
|
});
|
|
|
|
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', () => {
|
|
|
|
});
|
|
});
|
|
}); |