mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-22 18:31:01 +00:00
153 lines
5.2 KiB
TypeScript
153 lines
5.2 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
/// <reference types="@pezkuwi/dev-test/globals.d.ts" />
|
|
|
|
import { strict as assert } from 'node:assert';
|
|
|
|
import { isNumber, isString } from '@pezkuwi/util';
|
|
|
|
import { createWsEndpoints } from './index.js';
|
|
|
|
interface Endpoint {
|
|
name: string;
|
|
provider: string;
|
|
value: string;
|
|
}
|
|
|
|
const allEndpoints = createWsEndpoints(undefined, false, false);
|
|
|
|
const INVALID_CHARS = ['%'];
|
|
|
|
describe('WS urls are all valid', (): void => {
|
|
const endpoints = allEndpoints
|
|
.filter(({ value }) =>
|
|
value &&
|
|
isString(value) &&
|
|
!value.includes('127.0.0.1')
|
|
)
|
|
.map(({ text, textBy, value }): Endpoint => ({
|
|
name: text as string,
|
|
provider: textBy,
|
|
value
|
|
}));
|
|
|
|
for (const { name, provider, value } of endpoints) {
|
|
it(`${name}:: ${provider}`, (): void => {
|
|
assert(value.startsWith('wss://') || value.startsWith('light://bizinikiwi-connect/'), `${name}:: ${provider} -> ${value} should start with wss:// or light://`);
|
|
assert(!INVALID_CHARS.some((c) => value.includes(c)), `${value} should not contain invalid characters such as ${INVALID_CHARS.join(', ')}`);
|
|
});
|
|
}
|
|
});
|
|
|
|
describe('urls are sorted', (): void => {
|
|
let hasDevelopment = false;
|
|
let lastHeader = '';
|
|
const filtered = allEndpoints.filter(({ isHeader, text }): boolean => {
|
|
hasDevelopment = hasDevelopment || (!!isHeader && text === 'Development');
|
|
|
|
return !hasDevelopment;
|
|
});
|
|
|
|
filtered.forEach(({ isHeader, paraId, text, textBy }, index): void => {
|
|
if (isHeader) {
|
|
lastHeader = text as string;
|
|
} else {
|
|
it(`${lastHeader}:: ${text as string}:: ${textBy}`, (): void => {
|
|
const item = filtered[index - 1];
|
|
|
|
assert((
|
|
item.isHeader ||
|
|
item.linked ||
|
|
(
|
|
isNumber(item.paraId) &&
|
|
(
|
|
item.paraId < 2000
|
|
? isNumber(paraId) && paraId >= 2000
|
|
: false
|
|
)
|
|
) ||
|
|
item.text === '' ||
|
|
text === item.text ||
|
|
(text as string).localeCompare(item.text as string) === 1
|
|
), `${lastHeader}:: ${text as string} needs to be before ${item.text as string}`);
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('urls are not duplicated', (): void => {
|
|
let hasDevelopment = false;
|
|
let lastHeader = '';
|
|
const map = allEndpoints
|
|
.filter(({ isDisabled, isHeader, isUnreachable, text }): boolean => {
|
|
hasDevelopment = hasDevelopment || (!!isHeader && text === 'Development');
|
|
|
|
return !hasDevelopment && !isDisabled && !isUnreachable;
|
|
})
|
|
.reduce((map, { isHeader, text, value }): Record<string, string[]> => {
|
|
if (isHeader) {
|
|
lastHeader = text as string;
|
|
} else {
|
|
const path = `${lastHeader} -> ${text as string}`;
|
|
const key = value.endsWith('/')
|
|
? value.substring(0, value.length - 1)
|
|
: value;
|
|
|
|
map[key] ||= [];
|
|
map[key].push(path);
|
|
}
|
|
|
|
return map;
|
|
}, {} as Record<string, string[]>);
|
|
|
|
for (const [url, paths] of Object.entries<string[]>(map)) {
|
|
it(`${url}`, (): void => {
|
|
assert(paths.length === 1, `${url} appears multiple times - ${paths.map((p) => `\n\t"${p}"`).join('')}`);
|
|
});
|
|
}
|
|
});
|
|
|
|
describe('endpopints naming', (): void => {
|
|
const emoji = /(\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])/;
|
|
const endpoints: Record<string, Endpoint> = allEndpoints
|
|
.filter(({ value }) =>
|
|
value &&
|
|
isString(value) &&
|
|
!value.includes('127.0.0.1')
|
|
)
|
|
.map(({ text, textBy, value }): Endpoint => ({
|
|
name: text as string,
|
|
provider: textBy,
|
|
value
|
|
}))
|
|
.reduce((all, e) => ({
|
|
...all,
|
|
[`${e.name}:: ${e.provider}`]: e
|
|
}), {});
|
|
|
|
for (const [key, { name, provider }] of Object.entries<Endpoint>(endpoints)) {
|
|
describe(`${key}`, (): void => {
|
|
it(`[${key}] has no emojis`, (): void => {
|
|
assert(!emoji.test(name), `${name} should not contain any emojis`);
|
|
assert(!emoji.test(provider), `${name}:: ${provider} should not contain any emojis`);
|
|
});
|
|
|
|
it(`[${key}] not all uppercase`, (): void => {
|
|
assert(!provider.includes(' ') || (provider.toLocaleUpperCase() !== provider), `${name}:: ${provider} should not be all uppercase`);
|
|
});
|
|
|
|
it(`[${key}] does not contain "Teyrchain`, (): void => {
|
|
assert(!name.includes('Teyrchain'), `${name} should not contain "Teyrchain" (redundant)`);
|
|
});
|
|
|
|
it(`[${key}] does not contain a relay name`, (): void => {
|
|
assert(name.includes('Dicle') ? true : !name.includes(' ') || !name.includes('Dicle'), `${name} should not contain "Dicle" (redundant)`);
|
|
assert(name.includes('Pezkuwi') ? true : !name.includes(' ') || !name.includes('Pezkuwi'), `${name} should not contain "Pezkuwi" (redundant)`);
|
|
assert(name.includes('PezkuwiChain') ? true : !name.includes(' ') || !name.includes('PezkuwiChain'), `${name} should not contain "PezkuwiChain" (redundant)`);
|
|
assert(name.includes('Zagros') ? true : !name.includes(' ') || !name.includes('Zagros'), `${name} should not contain "Zagros" (redundant)`);
|
|
});
|
|
});
|
|
}
|
|
});
|