aboutsummaryrefslogtreecommitdiff
path: root/node_modules/express-validator/test/asyncTest.js
diff options
context:
space:
mode:
authorKumar Damani <kumar.damani@mail.utoronto.ca>2019-04-16 13:17:06 +0000
committerKumar Damani <kumar.damani@mail.utoronto.ca>2019-04-16 13:17:06 +0000
commitdc46b87abee1e441c07524ddde67fd902a919336 (patch)
tree13eba08b8655dfd78e9600ec5f612011a0bf3b35 /node_modules/express-validator/test/asyncTest.js
parent26f4b38e9e5a202756a7c33abc775aea2617aeaf (diff)
added some dependencies to package.json
Diffstat (limited to 'node_modules/express-validator/test/asyncTest.js')
-rw-r--r--node_modules/express-validator/test/asyncTest.js111
1 files changed, 0 insertions, 111 deletions
diff --git a/node_modules/express-validator/test/asyncTest.js b/node_modules/express-validator/test/asyncTest.js
deleted file mode 100644
index 75ff520..0000000
--- a/node_modules/express-validator/test/asyncTest.js
+++ /dev/null
@@ -1,111 +0,0 @@
-var chai = require('chai');
-var expect = chai.expect;
-var request = require('supertest');
-
-var app;
-var errorMessage = 'Parameter is not 42';
-
-// There are three ways to pass parameters to express:
-// - as part of the URL
-// - as GET parameter in the querystring
-// - as POST parameter in the body
-// These test show that req.checkQuery are only interested in req.query values, all other
-// parameters will be ignored.
-
-function validation(req, res) {
- req.checkQuery('testparam', errorMessage).notEmpty().isAsyncTest();
-
- req.asyncValidationErrors().then(function() {
- res.send({ testparam: req.query.testparam });
- }, function(errors) {
- return res.send(errors);
- });
-}
-
-function fail(body, length) {
- expect(body).to.have.length(length);
- expect(body[0]).to.have.property('msg', errorMessage);
-}
-
-function pass(body) {
- expect(body).to.have.property('testparam', '42');
-}
-
-function getRoute(path, test, length, done) {
- request(app)
- .get(path)
- .end(function(err, res) {
- test(res.body, length);
- done();
- });
-}
-
-function postRoute(path, data, test, length, done) {
- request(app)
- .post(path)
- .send(data)
- .end(function(err, res) {
- test(res.body, length);
- done();
- });
-}
-
-// This before() is required in each set of tests in
-// order to use a new validation function in each file
-before(function() {
- delete require.cache[require.resolve('./helpers/app')];
- app = require('./helpers/app')(validation);
-});
-
-describe('#asyncTest()', function() {
- describe('GET tests', function() {
- it('should return two errors when query is missing, and unrelated param is present', function(done) {
- getRoute('/test', fail, 2, done);
- });
-
- it('should return two errors when query is missing', function(done) {
- getRoute('/', fail, 2, done);
- });
-
- it('should return a success when query validates and unrelated query is present', function(done) {
- getRoute('/42?testparam=42', pass, null, done);
- });
-
- it('should return one error when query does not validate as int and unrelated query is present', function(done) {
- getRoute('/test?testparam=blah', fail, 1, done);
- });
- });
-
- describe('POST tests', function() {
- it('should return two errors when query is missing, and unrelated param is present', function(done) {
- postRoute('/test', null, fail, 2, done);
- });
-
- it('should return two errors when query is missing', function(done) {
- postRoute('/', null, fail, 2, done);
- });
-
- it('should return a success when query validates and unrelated query is present', function(done) {
- postRoute('/42?testparam=42', null, pass, null, done);
- });
-
- it('should return one error when query does not validate as int and unrelated query is present', function(done) {
- postRoute('/test?testparam=blah', null, fail, 1, done);
- });
-
- // POST only
-
- it('should return a success when query validates and unrelated param/body is present', function(done) {
- postRoute('/test?testparam=42', { testparam: 'posttest' }, pass, null, done);
- });
-
- it('should return one error when query does not validate as int and unrelated param/body is present', function(done) {
- postRoute('/test?testparam=blah', { testparam: '42' }, fail, 1, done);
- });
-
- it('should return two errors when query is missing and unrelated body is present', function(done) {
- postRoute('/', { testparam: '42' }, fail, 2, done);
- });
- });
-
-});