2023-07-27 14:31:52 +09:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-10-01 02:25:57 +09:00
|
|
|
import * as assert from 'assert';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { query } from '../../src/misc/prelude/url.js';
|
2021-10-01 02:25:57 +09:00
|
|
|
|
|
|
|
describe('url', () => {
|
2023-02-02 18:18:25 +09:00
|
|
|
test('query', () => {
|
2021-10-01 02:25:57 +09:00
|
|
|
const s = query({
|
|
|
|
foo: 'ふぅ',
|
|
|
|
bar: 'b a r',
|
2022-05-21 22:21:41 +09:00
|
|
|
baz: undefined,
|
2021-10-01 02:25:57 +09:00
|
|
|
});
|
|
|
|
assert.deepStrictEqual(s, 'foo=%E3%81%B5%E3%81%85&bar=b%20a%20r');
|
|
|
|
});
|
|
|
|
});
|