ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/lib/node_modules/forever/node_modules/director/test/server/helpers/ |
/* * 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); } }; };