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 keys = params.keys();
|
|
|
|
assert.strictEqual(typeof keys[Symbol.iterator], 'function');
|
|
assert.strictEqual(keys[Symbol.iterator](), keys);
|
|
assert.deepStrictEqual(keys.next(), {
|
|
value: 'a',
|
|
done: false
|
|
});
|
|
assert.deepStrictEqual(keys.next(), {
|
|
value: 'c',
|
|
done: false
|
|
});
|
|
assert.deepStrictEqual(keys.next(), {
|
|
value: undefined,
|
|
done: true
|
|
});
|
|
assert.deepStrictEqual(keys.next(), {
|
|
value: undefined,
|
|
done: true
|
|
});
|
|
|
|
assert.throws(() => {
|
|
keys.next.call(undefined);
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_THIS',
|
|
type: TypeError,
|
|
message: 'Value of "this" must be of type URLSearchParamsIterator'
|
|
}));
|
|
assert.throws(() => {
|
|
params.keys.call(undefined);
|
|
}, common.expectsError({
|
|
code: 'ERR_INVALID_THIS',
|
|
type: TypeError,
|
|
message: 'Value of "this" must be of type URLSearchParams'
|
|
}));
|
|
|