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.
35 lines
897 B
35 lines
897 B
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const URLSearchParams = require('url').URLSearchParams;
|
|
|
|
// Tests below are not from WPT.
|
|
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
|
|
});
|
|
|
|
assert.throws(() => {
|
|
values.next.call(undefined);
|
|
}, /^TypeError: Value of `this` is not a URLSearchParamsIterator$/);
|
|
assert.throws(() => {
|
|
params.values.call(undefined);
|
|
}, /^TypeError: Value of `this` is not a URLSearchParams$/);
|
|
|