* wip
* wip
* wip
* Update SystemAccountService.ts
* Update 1740121393164-system-accounts.js
* Update DeleteAccountService.ts
* wip
* wip
* wip
* wip
* Update 1740121393164-system-accounts.js
* Update RepositoryModule.ts
* wip
* wip
* wip
* Update ApRendererService.ts
* wip
* wip
* Update SystemAccountService.ts
* fix tests
* fix tests
* fix tests
* fix tests
* fix tests
* fix tests
* add print logs
* ログが長すぎて出てないかもしれない
* fix migration
* refactor
* fix fed-tests
* Update RelayService.ts
* merge
* Update user.test.ts
* chore: emit log
* fix: tweak sleep duration
* fix: exit 1
* fix: wait for misskey processes to become healthy
* fix: longer sleep for user deletion
* fix: make sleep longer again
* デッドロック解消の試み
https://github.com/misskey-dev/misskey/issues/15005
* Revert "デッドロック解消の試み"
This reverts commit 266141f66f.
* wip
* Update SystemAccountService.ts
---------
Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
Co-authored-by: zyoshoka <107108195+zyoshoka@users.noreply.github.com>
		
	
		
			
				
	
	
		
			103 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/*
 | 
						|
 * SPDX-FileCopyrightText: syuilo and misskey-project
 | 
						|
 * SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
 */
 | 
						|
 | 
						|
process.env.NODE_ENV = 'test';
 | 
						|
 | 
						|
import { jest } from '@jest/globals';
 | 
						|
import { Test } from '@nestjs/testing';
 | 
						|
import { ModuleMocker } from 'jest-mock';
 | 
						|
import type { TestingModule } from '@nestjs/testing';
 | 
						|
import type { MockFunctionMetadata } from 'jest-mock';
 | 
						|
import { ApRendererService } from '@/core/activitypub/ApRendererService.js';
 | 
						|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
 | 
						|
import { IdService } from '@/core/IdService.js';
 | 
						|
import { QueueService } from '@/core/QueueService.js';
 | 
						|
import { RelayService } from '@/core/RelayService.js';
 | 
						|
import { SystemAccountService } from '@/core/SystemAccountService.js';
 | 
						|
import { GlobalModule } from '@/GlobalModule.js';
 | 
						|
import { UtilityService } from '@/core/UtilityService.js';
 | 
						|
 | 
						|
const moduleMocker = new ModuleMocker(global);
 | 
						|
 | 
						|
describe('RelayService', () => {
 | 
						|
	let app: TestingModule;
 | 
						|
	let relayService: RelayService;
 | 
						|
	let queueService: jest.Mocked<QueueService>;
 | 
						|
 | 
						|
	beforeAll(async () => {
 | 
						|
		app = await Test.createTestingModule({
 | 
						|
			imports: [
 | 
						|
				GlobalModule,
 | 
						|
			],
 | 
						|
			providers: [
 | 
						|
				IdService,
 | 
						|
				ApRendererService,
 | 
						|
				RelayService,
 | 
						|
				UserEntityService,
 | 
						|
				SystemAccountService,
 | 
						|
				UtilityService,
 | 
						|
			],
 | 
						|
		})
 | 
						|
			.useMocker((token) => {
 | 
						|
				if (token === QueueService) {
 | 
						|
					return { deliver: jest.fn() };
 | 
						|
				}
 | 
						|
				if (typeof token === 'function') {
 | 
						|
					const mockMetadata = moduleMocker.getMetadata(token) as MockFunctionMetadata<any, any>;
 | 
						|
					const Mock = moduleMocker.generateFromMetadata(mockMetadata);
 | 
						|
					return new Mock();
 | 
						|
				}
 | 
						|
			})
 | 
						|
			.compile();
 | 
						|
 | 
						|
		app.enableShutdownHooks();
 | 
						|
 | 
						|
		relayService = app.get<RelayService>(RelayService);
 | 
						|
		queueService = app.get<QueueService>(QueueService) as jest.Mocked<QueueService>;
 | 
						|
	});
 | 
						|
 | 
						|
	afterAll(async () => {
 | 
						|
		await app.close();
 | 
						|
	});
 | 
						|
 | 
						|
	test('addRelay', async () => {
 | 
						|
		const result = await relayService.addRelay('https://example.com');
 | 
						|
 | 
						|
		expect(result.inbox).toBe('https://example.com');
 | 
						|
		expect(result.status).toBe('requesting');
 | 
						|
		expect(queueService.deliver).toHaveBeenCalled();
 | 
						|
		expect(queueService.deliver.mock.lastCall![1]?.type).toBe('Follow');
 | 
						|
		expect(queueService.deliver.mock.lastCall![2]).toBe('https://example.com');
 | 
						|
		//expect(queueService.deliver.mock.lastCall![0].username).toBe('relay.actor');
 | 
						|
	});
 | 
						|
 | 
						|
	test('listRelay', async () => {
 | 
						|
		const result = await relayService.listRelay();
 | 
						|
 | 
						|
		expect(result.length).toBe(1);
 | 
						|
		expect(result[0].inbox).toBe('https://example.com');
 | 
						|
		expect(result[0].status).toBe('requesting');
 | 
						|
	});
 | 
						|
 | 
						|
	test('removeRelay: succ', async () => {
 | 
						|
		await relayService.removeRelay('https://example.com');
 | 
						|
 | 
						|
		expect(queueService.deliver).toHaveBeenCalled();
 | 
						|
		expect(queueService.deliver.mock.lastCall![1]?.type).toBe('Undo');
 | 
						|
		expect(typeof queueService.deliver.mock.lastCall![1]?.object).toBe('object');
 | 
						|
		expect((queueService.deliver.mock.lastCall![1]?.object as any).type).toBe('Follow');
 | 
						|
		expect(queueService.deliver.mock.lastCall![2]).toBe('https://example.com');
 | 
						|
		//expect(queueService.deliver.mock.lastCall![0].username).toBe('relay.actor');
 | 
						|
 | 
						|
		const list = await relayService.listRelay();
 | 
						|
		expect(list.length).toBe(0);
 | 
						|
	});
 | 
						|
 | 
						|
	test('removeRelay: fail', async () => {
 | 
						|
		await expect(relayService.removeRelay('https://x.example.com'))
 | 
						|
			.rejects.toThrow('relay not found');
 | 
						|
	});
 | 
						|
});
 |