* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: syuilo and other misskey contributors
 | 
						|
 * SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
 */
 | 
						|
 | 
						|
process.env.NODE_ENV = 'test';
 | 
						|
 | 
						|
import * as assert from 'assert';
 | 
						|
import { signup, api, post, uploadUrl, startServer } from '../utils.js';
 | 
						|
import type { INestApplicationContext } from '@nestjs/common';
 | 
						|
import type * as misskey from 'misskey-js';
 | 
						|
 | 
						|
describe('users/notes', () => {
 | 
						|
	let app: INestApplicationContext;
 | 
						|
 | 
						|
	let alice: misskey.entities.MeSignup;
 | 
						|
	let jpgNote: any;
 | 
						|
	let pngNote: any;
 | 
						|
	let jpgPngNote: any;
 | 
						|
 | 
						|
	beforeAll(async () => {
 | 
						|
		app = await startServer();
 | 
						|
		alice = await signup({ username: 'alice' });
 | 
						|
		const jpg = await uploadUrl(alice, 'https://raw.githubusercontent.com/misskey-dev/misskey/develop/packages/backend/test/resources/Lenna.jpg');
 | 
						|
		const png = await uploadUrl(alice, 'https://raw.githubusercontent.com/misskey-dev/misskey/develop/packages/backend/test/resources/Lenna.png');
 | 
						|
		jpgNote = await post(alice, {
 | 
						|
			fileIds: [jpg.id],
 | 
						|
		});
 | 
						|
		pngNote = await post(alice, {
 | 
						|
			fileIds: [png.id],
 | 
						|
		});
 | 
						|
		jpgPngNote = await post(alice, {
 | 
						|
			fileIds: [jpg.id, png.id],
 | 
						|
		});
 | 
						|
	}, 1000 * 60 * 2);
 | 
						|
 | 
						|
	afterAll(async() => {
 | 
						|
		await app.close();
 | 
						|
	});
 | 
						|
 | 
						|
	test('ファイルタイプ指定 (jpg)', async () => {
 | 
						|
		const res = await api('/users/notes', {
 | 
						|
			userId: alice.id,
 | 
						|
			fileType: ['image/jpeg'],
 | 
						|
		}, alice);
 | 
						|
 | 
						|
		assert.strictEqual(res.status, 200);
 | 
						|
		assert.strictEqual(Array.isArray(res.body), true);
 | 
						|
		assert.strictEqual(res.body.length, 2);
 | 
						|
		assert.strictEqual(res.body.some((note: any) => note.id === jpgNote.id), true);
 | 
						|
		assert.strictEqual(res.body.some((note: any) => note.id === jpgPngNote.id), true);
 | 
						|
	});
 | 
						|
 | 
						|
	test('ファイルタイプ指定 (jpg or png)', async () => {
 | 
						|
		const res = await api('/users/notes', {
 | 
						|
			userId: alice.id,
 | 
						|
			fileType: ['image/jpeg', 'image/png'],
 | 
						|
		}, alice);
 | 
						|
 | 
						|
		assert.strictEqual(res.status, 200);
 | 
						|
		assert.strictEqual(Array.isArray(res.body), true);
 | 
						|
		assert.strictEqual(res.body.length, 3);
 | 
						|
		assert.strictEqual(res.body.some((note: any) => note.id === jpgNote.id), true);
 | 
						|
		assert.strictEqual(res.body.some((note: any) => note.id === pngNote.id), true);
 | 
						|
		assert.strictEqual(res.body.some((note: any) => note.id === jpgPngNote.id), true);
 | 
						|
	});
 | 
						|
});
 |