let RankModel = require('../models/rank'); let urls = require('../config/api-url'); let codes = require('../routes/http-codes'); // Require the dev-dependencies let chai = require('chai'); let chaiHttp = require('chai-http'); let server = require('../server'); // chai methods require('chai').should(); chai.use(chaiHttp); // Our parent block describe('Ranks', () => { beforeEach((done) => { // Before each test we empty the database RankModel.deleteMany({}, (err) => { done(); }); }); /* * Test the /GET ranks */ describe('/GET ranks', () => { it('it should GET all the ranks', (done) => { chai.request(server) .get(urls.ranks) .end((err, res) => { res.should.have.status(codes.success); res.body.should.be.a('array'); res.body.length.should.be.eql(0); done(); }); }); }); /* * Test the /POST ranks */ describe('/POST ranks', () => { it('it should not POST a rank without auth-token provided', (done) => { chai.request(server) .post(urls.ranks) .send({}) .end((err, res) => { res.should.have.status(codes.forbidden); res.body.should.be.a('object'); res.body.should.have.property('success').eql(false); res.body.should.have.property('message').eql('No token provided.'); done(); }); }); }); /* * Test the /PATCH rank */ describe('/PATCH ranks', () => { it('it should not PATCH a rank without auth-token provided', (done) => { chai.request(server) .patch(urls.ranks + '/someId') .send({}) .end((err, res) => { res.should.have.status(codes.forbidden); res.body.should.be.a('object'); res.body.should.have.property('success').eql(false); res.body.should.have.property('message').eql('No token provided.'); done(); }); }); }); /* * Test the /DELETE rank */ describe('/DELETE ranks', () => { it('it should not accept DELETE method without id in url', (done) => { chai.request(server) .delete(urls.ranks) .send({}) .end((err, res) => { res.should.have.status(codes.wrongmethod); res.body.should.be.a('object'); res.body.should.have.property('error').property('message') .eql('this method is not allowed at ' + urls.ranks); done(); }); }); it('it should not DELETE a rank without auth-token provided', (done) => { chai.request(server) .delete(urls.ranks + '/someId') .send({}) .end((err, res) => { res.should.have.status(codes.forbidden); res.body.should.be.a('object'); res.body.should.have.property('success').eql(false); res.body.should.have.property('message').eql('No token provided.'); done(); }); }); }); });