PHP Classes

File: public/js/lib/director/test/server/helpers/macros.js

Recommend this page to a friend!
  Classes of Sergey Beskorovayniy   Silex MVC Blog   public/js/lib/director/test/server/helpers/macros.js   Download  
File: public/js/lib/director/test/server/helpers/macros.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Silex MVC Blog
MVC based blog using on the Silex micro-framework
Author: By
Last change:
Date: 8 years ago
Size: 1,363 bytes
 

Contents

Class file image Download
/* * 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); } }; };