mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-13 18:11:54 +00:00
190 lines
4.7 KiB
JavaScript
190 lines
4.7 KiB
JavaScript
'use strict';
|
|
|
|
/* globals describe, expect, it, beforeEach, afterEach */
|
|
|
|
var app = require('../..');
|
|
import request from 'supertest';
|
|
|
|
var newProject;
|
|
|
|
describe('Project API:', function() {
|
|
describe('GET /api/projects', function() {
|
|
var projects;
|
|
|
|
beforeEach(function(done) {
|
|
request(app)
|
|
.get('/api/projects')
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
.end((err, res) => {
|
|
if(err) {
|
|
return done(err);
|
|
}
|
|
projects = res.body;
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should respond with JSON array', function() {
|
|
expect(projects).to.be.instanceOf(Array);
|
|
});
|
|
});
|
|
|
|
describe('POST /api/projects', function() {
|
|
beforeEach(function(done) {
|
|
request(app)
|
|
.post('/api/projects')
|
|
.send({
|
|
name: 'New Project',
|
|
info: 'This is the brand new project!!!'
|
|
})
|
|
.expect(201)
|
|
.expect('Content-Type', /json/)
|
|
.end((err, res) => {
|
|
if(err) {
|
|
return done(err);
|
|
}
|
|
newProject = res.body;
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should respond with the newly created project', function() {
|
|
expect(newProject.name).to.equal('New Project');
|
|
expect(newProject.info).to.equal('This is the brand new project!!!');
|
|
});
|
|
});
|
|
|
|
describe('GET /api/projects/:id', function() {
|
|
var project;
|
|
|
|
beforeEach(function(done) {
|
|
request(app)
|
|
.get(`/api/projects/${newProject._id}`)
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
.end((err, res) => {
|
|
if(err) {
|
|
return done(err);
|
|
}
|
|
project = res.body;
|
|
done();
|
|
});
|
|
});
|
|
|
|
afterEach(function() {
|
|
project = {};
|
|
});
|
|
|
|
it('should respond with the requested project', function() {
|
|
expect(project.name).to.equal('New Project');
|
|
expect(project.info).to.equal('This is the brand new project!!!');
|
|
});
|
|
});
|
|
|
|
describe('PUT /api/projects/:id', function() {
|
|
var updatedProject;
|
|
|
|
beforeEach(function(done) {
|
|
request(app)
|
|
.put(`/api/projects/${newProject._id}`)
|
|
.send({
|
|
name: 'Updated Project',
|
|
info: 'This is the updated project!!!'
|
|
})
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
.end(function(err, res) {
|
|
if(err) {
|
|
return done(err);
|
|
}
|
|
updatedProject = res.body;
|
|
done();
|
|
});
|
|
});
|
|
|
|
afterEach(function() {
|
|
updatedProject = {};
|
|
});
|
|
|
|
it('should respond with the updated project', function() {
|
|
expect(updatedProject.name).to.equal('Updated Project');
|
|
expect(updatedProject.info).to.equal('This is the updated project!!!');
|
|
});
|
|
|
|
it('should respond with the updated project on a subsequent GET', function(done) {
|
|
request(app)
|
|
.get(`/api/projects/${newProject._id}`)
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
.end((err, res) => {
|
|
if(err) {
|
|
return done(err);
|
|
}
|
|
let project = res.body;
|
|
|
|
expect(project.name).to.equal('Updated Project');
|
|
expect(project.info).to.equal('This is the updated project!!!');
|
|
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('PATCH /api/projects/:id', function() {
|
|
var patchedProject;
|
|
|
|
beforeEach(function(done) {
|
|
request(app)
|
|
.patch(`/api/projects/${newProject._id}`)
|
|
.send([
|
|
{ op: 'replace', path: '/name', value: 'Patched Project' },
|
|
{ op: 'replace', path: '/info', value: 'This is the patched project!!!' }
|
|
])
|
|
.expect(200)
|
|
.expect('Content-Type', /json/)
|
|
.end(function(err, res) {
|
|
if(err) {
|
|
return done(err);
|
|
}
|
|
patchedProject = res.body;
|
|
done();
|
|
});
|
|
});
|
|
|
|
afterEach(function() {
|
|
patchedProject = {};
|
|
});
|
|
|
|
it('should respond with the patched project', function() {
|
|
expect(patchedProject.name).to.equal('Patched Project');
|
|
expect(patchedProject.info).to.equal('This is the patched project!!!');
|
|
});
|
|
});
|
|
|
|
describe('DELETE /api/projects/:id', function() {
|
|
it('should respond with 204 on successful removal', function(done) {
|
|
request(app)
|
|
.delete(`/api/projects/${newProject._id}`)
|
|
.expect(204)
|
|
.end(err => {
|
|
if(err) {
|
|
return done(err);
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should respond with 404 when project does not exist', function(done) {
|
|
request(app)
|
|
.delete(`/api/projects/${newProject._id}`)
|
|
.expect(404)
|
|
.end(err => {
|
|
if(err) {
|
|
return done(err);
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|