2021-07-10 07:14:57 -07:00
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
|
|
|
|
import * as assert from 'assert';
|
2023-02-18 22:27:14 -08:00
|
|
|
import { Test } from '@nestjs/testing';
|
|
|
|
import { jest } from '@jest/globals';
|
|
|
|
|
|
|
|
import { ApNoteService } from '@/core/activitypub/models/ApNoteService.js';
|
|
|
|
import { ApPersonService } from '@/core/activitypub/models/ApPersonService.js';
|
2023-03-11 19:11:37 -08:00
|
|
|
import { ApRendererService } from '@/core/activitypub/ApRendererService.js';
|
2023-02-18 22:27:14 -08:00
|
|
|
import { GlobalModule } from '@/GlobalModule.js';
|
|
|
|
import { CoreModule } from '@/core/CoreModule.js';
|
|
|
|
import { FederatedInstanceService } from '@/core/FederatedInstanceService.js';
|
|
|
|
import { LoggerService } from '@/core/LoggerService.js';
|
2023-02-19 00:49:18 -08:00
|
|
|
import type { IActor } from '@/core/activitypub/type.js';
|
2023-03-11 19:11:37 -08:00
|
|
|
import { Note } from '@/models/index.js';
|
2023-06-24 19:04:33 -07:00
|
|
|
import { secureRndstr } from '@/misc/secure-rndstr.js';
|
|
|
|
import { MockResolver } from '../misc/mock-resolver.js';
|
2021-07-10 07:14:57 -07:00
|
|
|
|
2023-02-19 00:49:18 -08:00
|
|
|
const host = 'https://host1.test';
|
|
|
|
|
|
|
|
function createRandomActor(): IActor & { id: string } {
|
2023-06-24 19:04:33 -07:00
|
|
|
const preferredUsername = secureRndstr(8);
|
2023-02-19 00:49:18 -08:00
|
|
|
const actorId = `${host}/users/${preferredUsername.toLowerCase()}`;
|
|
|
|
|
|
|
|
return {
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
id: actorId,
|
|
|
|
type: 'Person',
|
|
|
|
preferredUsername,
|
|
|
|
inbox: `${actorId}/inbox`,
|
|
|
|
outbox: `${actorId}/outbox`,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-07-10 07:14:57 -07:00
|
|
|
describe('ActivityPub', () => {
|
2023-02-18 22:27:14 -08:00
|
|
|
let noteService: ApNoteService;
|
|
|
|
let personService: ApPersonService;
|
2023-03-11 19:11:37 -08:00
|
|
|
let rendererService: ApRendererService;
|
2023-02-18 22:27:14 -08:00
|
|
|
let resolver: MockResolver;
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
const app = await Test.createTestingModule({
|
|
|
|
imports: [GlobalModule, CoreModule],
|
|
|
|
}).compile();
|
|
|
|
|
|
|
|
await app.init();
|
|
|
|
app.enableShutdownHooks();
|
|
|
|
|
|
|
|
noteService = app.get<ApNoteService>(ApNoteService);
|
|
|
|
personService = app.get<ApPersonService>(ApPersonService);
|
2023-03-11 19:11:37 -08:00
|
|
|
rendererService = app.get<ApRendererService>(ApRendererService);
|
2023-02-18 22:27:14 -08:00
|
|
|
resolver = new MockResolver(await app.resolve<LoggerService>(LoggerService));
|
|
|
|
|
|
|
|
// Prevent ApPersonService from fetching instance, as it causes Jest import-after-test error
|
|
|
|
const federatedInstanceService = app.get<FederatedInstanceService>(FederatedInstanceService);
|
|
|
|
jest.spyOn(federatedInstanceService, 'fetch').mockImplementation(() => new Promise(() => {}));
|
|
|
|
});
|
|
|
|
|
2021-07-10 07:14:57 -07:00
|
|
|
describe('Parse minimum object', () => {
|
2023-02-19 00:49:18 -08:00
|
|
|
const actor = createRandomActor();
|
2021-07-10 07:14:57 -07:00
|
|
|
|
|
|
|
const post = {
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
2023-06-24 19:04:33 -07:00
|
|
|
id: `${host}/users/${secureRndstr(8)}`,
|
2021-07-10 07:14:57 -07:00
|
|
|
type: 'Note',
|
|
|
|
attributedTo: actor.id,
|
|
|
|
to: 'https://www.w3.org/ns/activitystreams#Public',
|
|
|
|
content: 'あ',
|
|
|
|
};
|
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('Minimum Actor', async () => {
|
2021-07-10 07:14:57 -07:00
|
|
|
resolver._register(actor.id, actor);
|
|
|
|
|
2023-02-18 22:27:14 -08:00
|
|
|
const user = await personService.createPerson(actor.id, resolver);
|
2021-07-10 07:14:57 -07:00
|
|
|
|
|
|
|
assert.deepStrictEqual(user.uri, actor.id);
|
|
|
|
assert.deepStrictEqual(user.username, actor.preferredUsername);
|
|
|
|
assert.deepStrictEqual(user.inbox, actor.inbox);
|
|
|
|
});
|
|
|
|
|
2023-02-02 01:18:25 -08:00
|
|
|
test('Minimum Note', async () => {
|
2021-07-10 07:14:57 -07:00
|
|
|
resolver._register(actor.id, actor);
|
|
|
|
resolver._register(post.id, post);
|
|
|
|
|
2023-02-18 22:27:14 -08:00
|
|
|
const note = await noteService.createNote(post.id, resolver, true);
|
2021-07-10 07:14:57 -07:00
|
|
|
|
|
|
|
assert.deepStrictEqual(note?.uri, post.id);
|
2022-05-21 06:21:41 -07:00
|
|
|
assert.deepStrictEqual(note.visibility, 'public');
|
|
|
|
assert.deepStrictEqual(note.text, post.content);
|
2021-07-10 07:14:57 -07:00
|
|
|
});
|
|
|
|
});
|
2021-08-17 01:25:19 -07:00
|
|
|
|
2023-02-19 00:49:18 -08:00
|
|
|
describe('Name field', () => {
|
|
|
|
test('Truncate long name', async () => {
|
|
|
|
const actor = {
|
|
|
|
...createRandomActor(),
|
2023-06-24 19:04:33 -07:00
|
|
|
name: secureRndstr(129),
|
2023-02-19 00:49:18 -08:00
|
|
|
};
|
2021-08-17 01:25:19 -07:00
|
|
|
|
2023-02-19 00:49:18 -08:00
|
|
|
resolver._register(actor.id, actor);
|
2021-08-17 01:25:19 -07:00
|
|
|
|
2023-02-19 00:49:18 -08:00
|
|
|
const user = await personService.createPerson(actor.id, resolver);
|
|
|
|
|
|
|
|
assert.deepStrictEqual(user.name, actor.name.slice(0, 128));
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Normalize empty name', async () => {
|
|
|
|
const actor = {
|
|
|
|
...createRandomActor(),
|
|
|
|
name: '',
|
|
|
|
};
|
2021-08-17 01:25:19 -07:00
|
|
|
|
|
|
|
resolver._register(actor.id, actor);
|
|
|
|
|
2023-02-18 22:27:14 -08:00
|
|
|
const user = await personService.createPerson(actor.id, resolver);
|
2021-08-17 01:25:19 -07:00
|
|
|
|
2023-02-19 00:49:18 -08:00
|
|
|
assert.strictEqual(user.name, null);
|
2021-08-17 01:25:19 -07:00
|
|
|
});
|
|
|
|
});
|
2023-03-11 19:11:37 -08:00
|
|
|
|
|
|
|
describe('Renderer', () => {
|
|
|
|
test('Render an announce with visibility: followers', () => {
|
|
|
|
rendererService.renderAnnounce(null, {
|
|
|
|
createdAt: new Date(0),
|
|
|
|
visibility: 'followers',
|
|
|
|
} as Note);
|
|
|
|
});
|
|
|
|
});
|
2021-07-10 07:14:57 -07:00
|
|
|
});
|