File manager - Edit - /usr/local/lib/node_modules/forever/node_modules/director/test/server/helpers/macros.js
Back
/* * macros.js: Test macros for director tests. * * (C) 2011, Charlie Robbins, Paolo Fragomeni, & the Contributors. * MIT LICENSE * */ var assert = require('assert'), request = require('request'); exports.assertGet = function(port, uri, expected) { var context = { topic: function () { request({ uri: 'http://localhost:' + port + '/' + uri }, this.callback); } }; context['should respond with `' + expected + '`'] = function (err, res, body) { assert.isNull(err); assert.equal(res.statusCode, 200); assert.equal(body, expected); }; return context; }; exports.assert404 = function (port, uri) { return { topic: function () { request({ uri: 'http://localhost:' + port + '/' + uri }, this.callback); }, "should respond with 404": function (err, res, body) { assert.isNull(err); assert.equal(res.statusCode, 404); } }; }; exports.assertPost = function(port, uri, expected) { return { topic: function () { request({ method: 'POST', uri: 'http://localhost:' + port + '/' + uri, body: JSON.stringify(expected) }, this.callback); }, "should respond with the POST body": function (err, res, body) { assert.isNull(err); assert.equal(res.statusCode, 200); assert.deepEqual(JSON.parse(body), expected); } }; };
| ver. 1.4 |
Github
|
.
| PHP 8.3.31 | Generation time: 0 |
proxy
|
phpinfo
|
Settings