-
-
Notifications
You must be signed in to change notification settings - Fork 17.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
|
||
var express = require('../') | ||
, assert = require('assert'); | ||
|
||
var dc = require('diagnostics_channel'); | ||
var onHandleRequest = dc.channel('express.layer.handle_request'); | ||
var onHandleError = dc.channel('express.layer.handle_error'); | ||
|
||
function mapProp(prop) { | ||
return function mapped(obj) { | ||
return obj[prop]; | ||
}; | ||
} | ||
|
||
function mapAndJoin(prop) { | ||
return function(list) { | ||
return list.map(mapProp(prop)).join(''); | ||
} | ||
} | ||
|
||
function noop() {} | ||
|
||
describe('diagnostics_channel', function () { | ||
var joinLayerStack = mapAndJoin('routingKey'); | ||
var handleRequest; | ||
var handleError; | ||
|
||
onHandleRequest.subscribe(function (message) { | ||
handleRequest = message; | ||
}); | ||
|
||
onHandleError.subscribe(function (message) { | ||
handleError = message; | ||
}); | ||
|
||
it('use has no layers with a path', function (done) { | ||
var router = new express.Router(); | ||
|
||
router.use(function (req, res) { | ||
res.end(); | ||
}); | ||
|
||
function end() { | ||
assert.strictEqual(joinLayerStack(handleRequest.request.layerStack), '/'); | ||
done(); | ||
} | ||
|
||
router.handle({ url: '/', method: 'GET' }, { end }, noop); | ||
}); | ||
|
||
it('regular routes have a layer with a path', function (done) { | ||
var router = new express.Router(); | ||
|
||
router.get('/hello/:name', function (req, res) { | ||
res.end(); | ||
}); | ||
|
||
function end() { | ||
assert.strictEqual(joinLayerStack(handleRequest.request.layerStack), '/hello/:name/'); | ||
done(); | ||
} | ||
|
||
router.handle({ url: '/hello/world', method: 'GET' }, { end }, noop); | ||
}); | ||
|
||
it('nested routes have multiple layers with paths', function (done) { | ||
var outer = new express.Router(); | ||
var inner = new express.Router(); | ||
|
||
inner.get('/:name', function (req, res) { | ||
res.end(); | ||
}); | ||
|
||
outer.use('/hello', inner); | ||
|
||
function end() { | ||
assert.strictEqual(joinLayerStack(handleRequest.request.layerStack), '/hello/:name/'); | ||
done(); | ||
} | ||
|
||
outer.handle({ url: '/hello/world', method: 'GET' }, { end }, noop); | ||
}); | ||
|
||
it('errors send through a different channel', function (done) { | ||
var router = new express.Router(); | ||
var error = new Error('fail'); | ||
|
||
router.get('/hello/:name', function (req, res) { | ||
throw error; | ||
}); | ||
|
||
router.use(function (err, req, res, next) { | ||
res.end(); | ||
}); | ||
|
||
function end() { | ||
assert.strictEqual(joinLayerStack(handleRequest.request.layerStack), '/hello/:name/'); | ||
assert.strictEqual(handleError.error, error); | ||
done(); | ||
} | ||
|
||
router.handle({ url: '/hello/world', method: 'GET' }, { end }, noop); | ||
}); | ||
}); |