calckey/packages/backend/test/misc/mock-resolver.ts

40 lines
854 B
TypeScript
Raw Normal View History

2023-04-07 01:56:46 +00:00
import Resolver from "../../src/remote/activitypub/resolver.js";
import { IObject } from "../../src/remote/activitypub/type.js";
type MockResponse = {
type: string;
content: string;
};
export class MockResolver extends Resolver {
private _rs = new Map<string, MockResponse>();
2023-04-07 01:56:46 +00:00
public async _register(
uri: string,
content: string | Record<string, any>,
type = "application/activity+json",
) {
this._rs.set(uri, {
type,
2023-04-07 01:56:46 +00:00
content: typeof content === "string" ? content : JSON.stringify(content),
});
}
public async resolve(value: string | IObject): Promise<IObject> {
2023-04-07 01:56:46 +00:00
if (typeof value !== "string") return value;
const r = this._rs.get(value);
if (!r) {
throw {
2023-04-07 01:56:46 +00:00
name: "StatusError",
statusCode: 404,
2023-04-07 01:56:46 +00:00
message: "Not registed for mock",
};
}
const object = JSON.parse(r.content);
return object;
}
}