45 lines
1014 B
JavaScript
45 lines
1014 B
JavaScript
'use strict';
|
|
|
|
// Tests below are not from WPT.
|
|
|
|
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
|
|
});
|
|
|
|
assert.throws(() => {
|
|
values.next.call(undefined);
|
|
}, {
|
|
code: 'ERR_INVALID_THIS',
|
|
name: 'TypeError',
|
|
message: 'Value of "this" must be of type URLSearchParamsIterator'
|
|
});
|
|
assert.throws(() => {
|
|
params.values.call(undefined);
|
|
}, {
|
|
code: 'ERR_INVALID_THIS',
|
|
name: 'TypeError',
|
|
message: 'Value of "this" must be of type URLSearchParams'
|
|
});
|