2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-19 06:27:14 +00:00
|
|
|
import type { Config } from '@/config.js';
|
|
|
|
import type { ApDbResolverService } from '@/core/activitypub/ApDbResolverService.js';
|
|
|
|
import type { ApRendererService } from '@/core/activitypub/ApRendererService.js';
|
|
|
|
import type { ApRequestService } from '@/core/activitypub/ApRequestService.js';
|
|
|
|
import { Resolver } from '@/core/activitypub/ApResolverService.js';
|
|
|
|
import type { IObject } from '@/core/activitypub/type.js';
|
|
|
|
import type { HttpRequestService } from '@/core/HttpRequestService.js';
|
|
|
|
import type { InstanceActorService } from '@/core/InstanceActorService.js';
|
|
|
|
import type { LoggerService } from '@/core/LoggerService.js';
|
|
|
|
import type { MetaService } from '@/core/MetaService.js';
|
|
|
|
import type { UtilityService } from '@/core/UtilityService.js';
|
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-09-22 07:43:01 +00:00
|
|
|
import type { NoteReactionsRepository, NotesRepository, PollsRepository, UsersRepository, FollowRequestsRepository } from '@/models/_.js';
|
2021-07-10 14:14:57 +00:00
|
|
|
|
|
|
|
type MockResponse = {
|
|
|
|
type: string;
|
|
|
|
content: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export class MockResolver extends Resolver {
|
2023-07-08 23:59:44 +00:00
|
|
|
#responseMap = new Map<string, MockResponse>();
|
|
|
|
#remoteGetTrials: string[] = [];
|
2023-02-19 06:27:14 +00:00
|
|
|
|
|
|
|
constructor(loggerService: LoggerService) {
|
|
|
|
super(
|
|
|
|
{} as Config,
|
|
|
|
{} as UsersRepository,
|
|
|
|
{} as NotesRepository,
|
|
|
|
{} as PollsRepository,
|
|
|
|
{} as NoteReactionsRepository,
|
2023-09-22 07:43:01 +00:00
|
|
|
{} as FollowRequestsRepository,
|
2023-02-19 06:27:14 +00:00
|
|
|
{} as UtilityService,
|
|
|
|
{} as InstanceActorService,
|
|
|
|
{} as MetaService,
|
|
|
|
{} as ApRequestService,
|
|
|
|
{} as HttpRequestService,
|
|
|
|
{} as ApRendererService,
|
|
|
|
{} as ApDbResolverService,
|
|
|
|
loggerService,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-07-08 23:59:44 +00:00
|
|
|
public register(uri: string, content: string | Record<string, any>, type = 'application/activity+json'): void {
|
|
|
|
this.#responseMap.set(uri, {
|
2021-07-10 14:14:57 +00:00
|
|
|
type,
|
2022-05-21 13:21:41 +00:00
|
|
|
content: typeof content === 'string' ? content : JSON.stringify(content),
|
2021-07-10 14:14:57 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-07-08 23:59:44 +00:00
|
|
|
public clear(): void {
|
|
|
|
this.#responseMap.clear();
|
|
|
|
this.#remoteGetTrials.length = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public remoteGetTrials(): string[] {
|
|
|
|
return this.#remoteGetTrials;
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2021-07-10 14:14:57 +00:00
|
|
|
public async resolve(value: string | IObject): Promise<IObject> {
|
|
|
|
if (typeof value !== 'string') return value;
|
|
|
|
|
2023-07-08 23:59:44 +00:00
|
|
|
this.#remoteGetTrials.push(value);
|
|
|
|
const r = this.#responseMap.get(value);
|
2021-07-10 14:14:57 +00:00
|
|
|
|
|
|
|
if (!r) {
|
2023-05-29 02:54:49 +00:00
|
|
|
throw new Error('Not registed for mock');
|
2021-07-10 14:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const object = JSON.parse(r.content);
|
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
}
|