mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
f6a3f6f5f1
* enhance(backend): Improve behavior of correctFilename * ✌️ * 未知のファイル形式かつ拡張子がある場合は何もしない * ✌️ * .ext --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
20 lines
795 B
TypeScript
20 lines
795 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { describe, test, expect } from '@jest/globals';
|
|
import { contentDisposition } from '@/misc/content-disposition.js';
|
|
|
|
describe('misc:content-disposition', () => {
|
|
test('inline', () => {
|
|
expect(contentDisposition('inline', 'foo bar')).toBe('inline; filename=\"foo_bar\"; filename*=UTF-8\'\'foo%20bar');
|
|
});
|
|
test('attachment', () => {
|
|
expect(contentDisposition('attachment', 'foo bar')).toBe('attachment; filename=\"foo_bar\"; filename*=UTF-8\'\'foo%20bar');
|
|
});
|
|
test('non ascii', () => {
|
|
expect(contentDisposition('attachment', 'ファイル名')).toBe('attachment; filename=\"_____\"; filename*=UTF-8\'\'%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E5%90%8D');
|
|
});
|
|
});
|