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.
43 lines
1.0 KiB
43 lines
1.0 KiB
'use strict';
|
|
|
|
const common = 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);
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_THIS',
|
|
type: TypeError,
|
|
message: 'Value of "this" must be of type URLSearchParamsIterator'
|
|
}));
|
|
assert.throws(() => {
|
|
params.values.call(undefined);
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_THIS',
|
|
type: TypeError,
|
|
message: 'Value of "this" must be of type URLSearchParams'
|
|
}));
|
|
|