forked from expressjs/express
-
Notifications
You must be signed in to change notification settings - Fork 0
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
4 changed files
with
140 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
var http = require('http'); | ||
|
||
var times = 50; | ||
|
||
while (times--) { | ||
var req = http.request({ | ||
port: 3000 | ||
, method: 'POST' | ||
, headers: { 'Content-Type': 'application/x-www-form-urlencoded' } | ||
}); | ||
|
||
req.on('response', function(res){ | ||
console.log(res.statusCode); | ||
}); | ||
|
||
var n = 500000; | ||
while (n--) { | ||
req.write('foo=bar&bar=baz&'); | ||
} | ||
|
||
req.write('foo=bar&bar=baz'); | ||
|
||
req.end(); | ||
} |
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,13 @@ | ||
|
||
var express = require('./'); | ||
var app = express(); | ||
|
||
app.use(express.logger('dev')); | ||
app.use(express.bodyParser()); | ||
|
||
app.post('/', function(req, res){ | ||
res.send('done\n'); | ||
}); | ||
|
||
app.listen(3000); | ||
console.log('listening on port 3000'); |
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,101 @@ | ||
|
||
var express = require('../') | ||
, request = require('./support/http'); | ||
|
||
function req(ct) { | ||
var req = { | ||
headers: { 'content-type': ct } | ||
, app: express() | ||
, __proto__: express.request | ||
}; | ||
|
||
return req; | ||
} | ||
|
||
describe('req.is()', function(){ | ||
it('should ignore charset', function(){ | ||
req('application/json; charset=utf-8') | ||
.is('json') | ||
.should.be.true; | ||
}) | ||
|
||
describe('when content-type is not present', function(){ | ||
it('should return false', function(){ | ||
req('') | ||
.is('json') | ||
.should.be.false; | ||
}) | ||
}) | ||
|
||
describe('when given an extension', function(){ | ||
it('should lookup the mime type', function(){ | ||
req('application/json') | ||
.is('json') | ||
.should.be.true; | ||
|
||
req('text/html') | ||
.is('json') | ||
.should.be.false; | ||
}) | ||
}) | ||
|
||
describe('when given a mime type', function(){ | ||
it('should match', function(){ | ||
req('application/json') | ||
.is('application/json') | ||
.should.be.true; | ||
|
||
req('image/jpeg') | ||
.is('application/json') | ||
.should.be.false; | ||
}) | ||
}) | ||
|
||
describe('when given */subtype', function(){ | ||
it('should match', function(){ | ||
req('application/json') | ||
.is('*/json') | ||
.should.be.true; | ||
|
||
req('image/jpeg') | ||
.is('*/json') | ||
.should.be.false; | ||
}) | ||
|
||
describe('with a charset', function(){ | ||
it('should match', function(){ | ||
req('text/html; charset=utf-8') | ||
.is('*/html') | ||
.should.be.true; | ||
|
||
req('text/plain; charset=utf-8') | ||
.is('*/html') | ||
.should.be.false; | ||
}) | ||
}) | ||
}) | ||
|
||
describe('when given type/*', function(){ | ||
it('should match', function(){ | ||
req('image/png') | ||
.is('image/*') | ||
.should.be.true; | ||
|
||
req('text/html') | ||
.is('image/*') | ||
.should.be.false; | ||
}) | ||
|
||
describe('with a charset', function(){ | ||
it('should match', function(){ | ||
req('text/html; charset=utf-8') | ||
.is('text/*') | ||
.should.be.true; | ||
|
||
req('something/html; charset=utf-8') | ||
.is('text/*') | ||
.should.be.false; | ||
}) | ||
}) | ||
}) | ||
}) |