Skip to content

Commit

Permalink
url: add inspect function to TupleOrigin
Browse files Browse the repository at this point in the history
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: #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>
  • Loading branch information
captainsafia authored and MylesBorins committed Dec 15, 2016
1 parent 6963e8a commit 24482d0
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/internal/url.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,15 @@ class TupleOrigin {
result += `:${this.port}`;
return result;
}

inspect() {
return `TupleOrigin {
scheme: ${this.scheme},
host: ${this.host},
port: ${this.port},
domain: ${this.domain}
}`;
}
}

class URL {
Expand Down
37 changes: 37 additions & 0 deletions test/parallel/test-util-inspect-tuple-origin.js
Original file line number Diff line number Diff line change
@@ -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
}`
);

0 comments on commit 24482d0

Please sign in to comment.