2017-01-22 16:01:36 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const URLSearchParams = require('url').URLSearchParams;
|
|
|
|
|
2017-02-02 07:13:16 +01:00
|
|
|
// Tests below are not from WPT.
|
2017-01-22 16:01:36 +01:00
|
|
|
const params = new URLSearchParams('a=b&c=d');
|
|
|
|
const entries = params.entries();
|
|
|
|
assert.strictEqual(typeof entries[Symbol.iterator], 'function');
|
|
|
|
assert.strictEqual(entries[Symbol.iterator](), entries);
|
|
|
|
assert.deepStrictEqual(entries.next(), {
|
|
|
|
value: ['a', 'b'],
|
|
|
|
done: false
|
|
|
|
});
|
|
|
|
assert.deepStrictEqual(entries.next(), {
|
|
|
|
value: ['c', 'd'],
|
|
|
|
done: false
|
|
|
|
});
|
|
|
|
assert.deepStrictEqual(entries.next(), {
|
|
|
|
value: undefined,
|
|
|
|
done: true
|
|
|
|
});
|
|
|
|
assert.deepStrictEqual(entries.next(), {
|
|
|
|
value: undefined,
|
|
|
|
done: true
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
entries.next.call(undefined);
|
|
|
|
}, /^TypeError: Value of `this` is not a URLSearchParamsIterator$/);
|
|
|
|
assert.throws(() => {
|
|
|
|
params.entries.call(undefined);
|
|
|
|
}, /^TypeError: Value of `this` is not a URLSearchParams$/);
|