mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 03:31:35 +00:00

To enable automatic update of WPT, move all our custom WHATWG URL tests that are not present in the upstream into files starting with `test-whatwg-url-custom-`, so it's easier to identify test cases that can be upstreamed and test cases that should be rolled into our repo (possibly with automation). PR-URL: https://github.com/nodejs/node/pull/22442 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
45 lines
1.0 KiB
JavaScript
45 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const URLSearchParams = require('url').URLSearchParams;
|
|
|
|
const params = new URLSearchParams('a=b&c=d');
|
|
const values = params.values();
|
|
|
|
assert.strictEqual(typeof values[Symbol.iterator], 'function');
|
|
assert.strictEqual(values[Symbol.iterator](), values);
|
|
assert.deepStrictEqual(values.next(), {
|
|
value: 'b',
|
|
done: false
|
|
});
|
|
assert.deepStrictEqual(values.next(), {
|
|
value: 'd',
|
|
done: false
|
|
});
|
|
assert.deepStrictEqual(values.next(), {
|
|
value: undefined,
|
|
done: true
|
|
});
|
|
assert.deepStrictEqual(values.next(), {
|
|
value: undefined,
|
|
done: true
|
|
});
|
|
|
|
common.expectsError(() => {
|
|
values.next.call(undefined);
|
|
}, {
|
|
code: 'ERR_INVALID_THIS',
|
|
type: TypeError,
|
|
message: 'Value of "this" must be of type URLSearchParamsIterator'
|
|
});
|
|
common.expectsError(() => {
|
|
params.values.call(undefined);
|
|
}, {
|
|
code: 'ERR_INVALID_THIS',
|
|
type: TypeError,
|
|
message: 'Value of "this" must be of type URLSearchParams'
|
|
});
|