mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
469 B
21 lines
469 B
8 years ago
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
const debug = require('_debugger');
|
||
|
|
||
|
const protocol = new debug.Protocol();
|
||
|
|
||
|
assert.strictEqual(protocol.state, 'headers');
|
||
|
|
||
|
protocol.execute('Content-Length: 10\r\n\r\nfhqwhgads');
|
||
|
|
||
|
assert.strictEqual(protocol.state, 'body');
|
||
|
assert.strictEqual(protocol.res.body, undefined);
|
||
|
|
||
|
protocol.state = 'sterrance';
|
||
|
assert.throws(
|
||
|
() => { protocol.execute('grumblecakes'); },
|
||
|
/^Error: Unknown state$/
|
||
|
);
|