-
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.
Updated fuzzer and fixed validation bug.
- Loading branch information
Mickael van der Beek
committed
Jan 13, 2015
1 parent
f79bebe
commit ec3ba89
Showing
7 changed files
with
192 additions
and
141 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 |
---|---|---|
|
@@ -13,6 +13,7 @@ module.exports = [ | |
';', | ||
'&', | ||
'@', | ||
'/', | ||
'--', | ||
'\\', | ||
'//', | ||
|
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,24 @@ | ||
module.exports = { | ||
|
||
request: [{ | ||
host: 'www.example.com', | ||
// hostname: { | ||
// type: 'String' | ||
// }, | ||
// port: { | ||
// type: 'Number' | ||
// }, | ||
// localAddress: {}, | ||
// socketPath: {}, | ||
method: 'HEAD', | ||
path: '/', | ||
headers: { | ||
Authorization: 'bearer example' | ||
}, | ||
auth: 'user:password', | ||
// agent: {}, | ||
}/*, | ||
function () {} | ||
*/] | ||
|
||
}; |
This file was deleted.
Oops, something went wrong.
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,40 @@ | ||
module.exports = { | ||
|
||
request: [{ | ||
type: 'Object', | ||
keys: { | ||
host: { | ||
type: 'String' | ||
}, | ||
hostname: { | ||
type: 'String' | ||
}, | ||
port: { | ||
type: 'Number' | ||
}, | ||
localAddress: { | ||
type: 'String' | ||
}, | ||
socketPath: { | ||
type: 'String' | ||
}, | ||
method: { | ||
type: 'String' | ||
}, | ||
path: { | ||
type: 'String' | ||
}, | ||
headers: { | ||
optional: true, | ||
type: 'Object' | ||
}, | ||
auth: { | ||
type: 'String' | ||
} | ||
} | ||
}/*, { | ||
type: 'Function', | ||
formats: [] | ||
}*/] | ||
|
||
}; |
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
Oops, something went wrong.