mirror of https://github.com/lukechilds/node.git
Browse Source
This adds a simple inspect function the the TupleOrigin class. This adds tests for the newly added inspect function in the TupleOrigin class. PR-URL: https://github.com/nodejs/node/pull/10039 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>v7.x
committed by
Myles Borins
2 changed files with 46 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||
'use strict'; |
|||
|
|||
require('../common'); |
|||
const assert = require('assert'); |
|||
const inspect = require('util').inspect; |
|||
const URL = require('url').URL; |
|||
|
|||
assert.strictEqual( |
|||
inspect(URL.originFor('http://test.com:8000')), |
|||
`TupleOrigin {
|
|||
scheme: http, |
|||
host: test.com, |
|||
port: 8000, |
|||
domain: null |
|||
}` |
|||
); |
|||
|
|||
assert.strictEqual( |
|||
inspect(URL.originFor('http://test.com')), |
|||
`TupleOrigin {
|
|||
scheme: http, |
|||
host: test.com, |
|||
port: undefined, |
|||
domain: null |
|||
}` |
|||
); |
|||
|
|||
|
|||
assert.strictEqual( |
|||
inspect(URL.originFor('https://test.com')), |
|||
`TupleOrigin {
|
|||
scheme: https, |
|||
host: test.com, |
|||
port: undefined, |
|||
domain: null |
|||
}` |
|||
); |
Loading…
Reference in new issue