Move tests to /learn (#16)
Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>
This commit is contained in:
parent
1d7e913ee7
commit
dfc0cdba8c
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Complete the API routing below
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
module.exports = function (app) {
|
module.exports = function (app) {
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* FILL IN EACH FUNCTIONAL TEST BELOW COMPLETELY
|
|
||||||
* -----[Keep the tests in the same order!]-----
|
|
||||||
* (if additional are added, keep them at the very end!)
|
|
||||||
*/
|
|
||||||
|
|
||||||
const chaiHttp = require('chai-http');
|
const chaiHttp = require('chai-http');
|
||||||
const chai = require('chai');
|
const chai = require('chai');
|
||||||
const assert = chai.assert;
|
const assert = chai.assert;
|
||||||
@ -15,118 +7,4 @@ chai.use(chaiHttp);
|
|||||||
|
|
||||||
suite('Functional Tests', function() {
|
suite('Functional Tests', function() {
|
||||||
|
|
||||||
suite('POST /api/issues/{project}', function() {
|
|
||||||
|
|
||||||
test('Every field filled in', function(done) {
|
|
||||||
chai.request(server)
|
|
||||||
.post('/api/issues/test')
|
|
||||||
.send({
|
|
||||||
issue_title: 'Title',
|
|
||||||
issue_text: 'text',
|
|
||||||
created_by: 'Functional Test - Every field filled in',
|
|
||||||
assigned_to: 'Chai and Mocha',
|
|
||||||
status_text: 'In QA'
|
|
||||||
})
|
|
||||||
.end(function(err, res){
|
|
||||||
assert.equal(res.status, 200);
|
|
||||||
|
|
||||||
//fill me in too!
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
test('Required fields filled in, Optional Fields Blank', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('Missing required fields => { error: "required field(s) missing" }', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
suite('GET /api/issues/{project}', function() {
|
|
||||||
|
|
||||||
test('No filter', function(done) {
|
|
||||||
chai.request(server)
|
|
||||||
.get('/api/issues/test')
|
|
||||||
.query({})
|
|
||||||
.end(function(err, res){
|
|
||||||
assert.equal(res.status, 200);
|
|
||||||
assert.isArray(res.body);
|
|
||||||
assert.property(res.body[0], 'issue_title');
|
|
||||||
assert.property(res.body[0], 'issue_text');
|
|
||||||
assert.property(res.body[0], 'created_on');
|
|
||||||
assert.property(res.body[0], 'updated_on');
|
|
||||||
assert.property(res.body[0], 'created_by');
|
|
||||||
assert.property(res.body[0], 'assigned_to');
|
|
||||||
assert.property(res.body[0], 'open');
|
|
||||||
assert.property(res.body[0], 'status_text');
|
|
||||||
assert.property(res.body[0], '_id');
|
|
||||||
done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
test('One filter', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('Multiple filters (test for multiple fields you know will be in the db for a return)', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
suite('PUT /api/issues/{project}', function() {
|
|
||||||
|
|
||||||
test('One field to update => {result: "successfully updated", _id: _id}', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('Multiple fields to update => {result: "successfully updated", _id: _id}', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('No _id submitted => { error: "missing _id" }', function(done) {
|
|
||||||
|
|
||||||
//done()
|
|
||||||
});
|
|
||||||
|
|
||||||
test('No fields to update => { error: "no update field(s) sent", _id: _id }', function(done) {
|
|
||||||
|
|
||||||
//done()
|
|
||||||
});
|
|
||||||
|
|
||||||
test('Invalid _id => { error: "missing _id" }', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
suite('DELETE /api/issues/{project}', function() {
|
|
||||||
|
|
||||||
test('Valid _id', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
test('Invalid _id => { error: "could not delete", "_id": _id }', function(done) {
|
|
||||||
const badId = "5f665eb46e296f6b9b6a504d";
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
|
|
||||||
test('No _id => { error: "missing _id" }', function(done) {
|
|
||||||
|
|
||||||
//done();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user