74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
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';
|
|
import type { NoteReactionsRepository, NotesRepository, PollsRepository, UsersRepository } from '@/models/index.js';
|
|
|
|
type MockResponse = {
|
|
type: string;
|
|
content: string;
|
|
};
|
|
|
|
export class MockResolver extends Resolver {
|
|
#responseMap = new Map<string, MockResponse>();
|
|
#remoteGetTrials: string[] = [];
|
|
|
|
constructor(loggerService: LoggerService) {
|
|
super(
|
|
{} as Config,
|
|
{} as UsersRepository,
|
|
{} as NotesRepository,
|
|
{} as PollsRepository,
|
|
{} as NoteReactionsRepository,
|
|
{} as UtilityService,
|
|
{} as InstanceActorService,
|
|
{} as MetaService,
|
|
{} as ApRequestService,
|
|
{} as HttpRequestService,
|
|
{} as ApRendererService,
|
|
{} as ApDbResolverService,
|
|
loggerService,
|
|
);
|
|
}
|
|
|
|
public register(uri: string, content: string | Record<string, any>, type = 'application/activity+json'): void {
|
|
this.#responseMap.set(uri, {
|
|
type,
|
|
content: typeof content === 'string' ? content : JSON.stringify(content),
|
|
});
|
|
}
|
|
|
|
public clear(): void {
|
|
this.#responseMap.clear();
|
|
this.#remoteGetTrials.length = 0;
|
|
}
|
|
|
|
public remoteGetTrials(): string[] {
|
|
return this.#remoteGetTrials;
|
|
}
|
|
|
|
@bindThis
|
|
public async resolve(value: string | IObject): Promise<IObject> {
|
|
if (typeof value !== 'string') return value;
|
|
|
|
this.#remoteGetTrials.push(value);
|
|
const r = this.#responseMap.get(value);
|
|
|
|
if (!r) {
|
|
throw new Error('Not registed for mock');
|
|
}
|
|
|
|
const object = JSON.parse(r.content);
|
|
|
|
return object;
|
|
}
|
|
}
|