diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/app.test.js | 55 | ||||
-rw-r--r-- | test/services/posts.test.js | 10 | ||||
-rw-r--r-- | test/services/users.test.js | 10 |
3 files changed, 75 insertions, 0 deletions
diff --git a/test/app.test.js b/test/app.test.js new file mode 100644 index 0000000..adabdf9 --- /dev/null +++ b/test/app.test.js @@ -0,0 +1,55 @@ +const assert = require('assert'); +const rp = require('request-promise'); +const url = require('url'); +const app = require('../src/app'); + +const port = app.get('port') || 3030; +const getUrl = pathname => url.format({ + hostname: app.get('host') || 'localhost', + protocol: 'http', + port, + pathname +}); + +describe('Feathers application tests', () => { + before(function(done) { + this.server = app.listen(port); + this.server.once('listening', () => done()); + }); + + after(function(done) { + this.server.close(done); + }); + + it('starts and shows the index page', () => { + return rp(getUrl()).then(body => + assert.ok(body.indexOf('<html>') !== -1) + ); + }); + + describe('404', function() { + it('shows a 404 HTML page', () => { + return rp({ + url: getUrl('path/to/nowhere'), + headers: { + 'Accept': 'text/html' + } + }).catch(res => { + assert.equal(res.statusCode, 404); + assert.ok(res.error.indexOf('<html>') !== -1); + }); + }); + + it('shows a 404 JSON error without stack trace', () => { + return rp({ + url: getUrl('path/to/nowhere'), + json: true + }).catch(res => { + assert.equal(res.statusCode, 404); + assert.equal(res.error.code, 404); + assert.equal(res.error.message, 'Page not found'); + assert.equal(res.error.name, 'NotFound'); + }); + }); + }); +}); diff --git a/test/services/posts.test.js b/test/services/posts.test.js new file mode 100644 index 0000000..a4bdd63 --- /dev/null +++ b/test/services/posts.test.js @@ -0,0 +1,10 @@ +const assert = require('assert'); +const app = require('../../src/app'); + +describe('\'posts\' service', () => { + it('registered the service', () => { + const service = app.service('posts'); + + assert.ok(service, 'Registered the service'); + }); +}); diff --git a/test/services/users.test.js b/test/services/users.test.js new file mode 100644 index 0000000..cc555e5 --- /dev/null +++ b/test/services/users.test.js @@ -0,0 +1,10 @@ +const assert = require('assert'); +const app = require('../../src/app'); + +describe('\'users\' service', () => { + it('registered the service', () => { + const service = app.service('users'); + + assert.ok(service, 'Registered the service'); + }); +}); |