forked from FoundKeyGang/FoundKey
fix import error in tests
This commit is contained in:
parent
8c759dde6c
commit
5f83383ab8
1 changed files with 22 additions and 5 deletions
|
@ -1,10 +1,27 @@
|
||||||
process.env.NODE_ENV = 'test';
|
process.env.NODE_ENV = 'test';
|
||||||
|
|
||||||
import * as assert from 'assert';
|
import * as assert from 'assert';
|
||||||
import rndstr from 'rndstr';
|
|
||||||
import { initDb } from '../src/db/postgre.js';
|
import { initDb } from '../src/db/postgre.js';
|
||||||
import { initTestDb } from './utils.js';
|
import { initTestDb } from './utils.js';
|
||||||
|
|
||||||
|
|
||||||
|
function rndstr(length): string {
|
||||||
|
const chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
||||||
|
const chars_len = 62;
|
||||||
|
|
||||||
|
let str = '';
|
||||||
|
|
||||||
|
for (let i = 0; i < length; i++) {
|
||||||
|
let rand = Math.floor(Math.random() * chars_len);
|
||||||
|
if (rand === chars_len) {
|
||||||
|
rand = chars_len - 1;
|
||||||
|
}
|
||||||
|
str += chars.charAt(rand);
|
||||||
|
}
|
||||||
|
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
describe('ActivityPub', () => {
|
describe('ActivityPub', () => {
|
||||||
before(async () => {
|
before(async () => {
|
||||||
//await initTestDb();
|
//await initTestDb();
|
||||||
|
@ -13,7 +30,7 @@ describe('ActivityPub', () => {
|
||||||
|
|
||||||
describe('Parse minimum object', () => {
|
describe('Parse minimum object', () => {
|
||||||
const host = 'https://host1.test';
|
const host = 'https://host1.test';
|
||||||
const preferredUsername = `${rndstr('A-Z', 4)}${rndstr('a-z', 4)}`;
|
const preferredUsername = `${rndstr(8)}`;
|
||||||
const actorId = `${host}/users/${preferredUsername.toLowerCase()}`;
|
const actorId = `${host}/users/${preferredUsername.toLowerCase()}`;
|
||||||
|
|
||||||
const actor = {
|
const actor = {
|
||||||
|
@ -27,7 +44,7 @@ describe('ActivityPub', () => {
|
||||||
|
|
||||||
const post = {
|
const post = {
|
||||||
'@context': 'https://www.w3.org/ns/activitystreams',
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
||||||
id: `${host}/users/${rndstr('0-9a-z', 8)}`,
|
id: `${host}/users/${rndstr(8)}`,
|
||||||
type: 'Note',
|
type: 'Note',
|
||||||
attributedTo: actor.id,
|
attributedTo: actor.id,
|
||||||
to: 'https://www.w3.org/ns/activitystreams#Public',
|
to: 'https://www.w3.org/ns/activitystreams#Public',
|
||||||
|
@ -66,10 +83,10 @@ describe('ActivityPub', () => {
|
||||||
|
|
||||||
describe('Truncate long name', () => {
|
describe('Truncate long name', () => {
|
||||||
const host = 'https://host1.test';
|
const host = 'https://host1.test';
|
||||||
const preferredUsername = `${rndstr('A-Z', 4)}${rndstr('a-z', 4)}`;
|
const preferredUsername = `${rndstr(8)}`;
|
||||||
const actorId = `${host}/users/${preferredUsername.toLowerCase()}`;
|
const actorId = `${host}/users/${preferredUsername.toLowerCase()}`;
|
||||||
|
|
||||||
const name = rndstr('0-9a-z', 129);
|
const name = rndstr(129);
|
||||||
|
|
||||||
const actor = {
|
const actor = {
|
||||||
'@context': 'https://www.w3.org/ns/activitystreams',
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
||||||
|
|
Loading…
Reference in a new issue