mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
83 lines
3.1 KiB
TypeScript
83 lines
3.1 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import {
|
|
getBrowserGatewayAccountOptions,
|
|
getBrowserPureP2PAccountOptions,
|
|
getP2PRuntimeMode,
|
|
isBrowserPureP2PEnabled,
|
|
shouldShowP2PSettingsSection,
|
|
} from '../p2p-runtime';
|
|
|
|
const browserWindow = {
|
|
electronApi: undefined,
|
|
isElectron: false,
|
|
location: { hostname: '5chan.app' },
|
|
localStorage: {
|
|
getItem: () => null,
|
|
setItem: () => undefined,
|
|
},
|
|
} as unknown as Window;
|
|
|
|
const electronWindow = {
|
|
electronApi: { isElectron: true },
|
|
isElectron: true,
|
|
location: { hostname: 'localhost' },
|
|
} as unknown as Window;
|
|
|
|
const p2pBrowserWindow = {
|
|
electronApi: undefined,
|
|
isElectron: false,
|
|
location: { hostname: 'p2p.5chan.app' },
|
|
localStorage: {
|
|
getItem: () => 'false',
|
|
setItem: () => undefined,
|
|
},
|
|
} as unknown as Window;
|
|
|
|
describe('p2p-runtime', () => {
|
|
it('detects browser libp2p accounts from options and live clients', () => {
|
|
expect(getP2PRuntimeMode({ pkcOptions: { libp2pJsClientsOptions: [{ key: 'libp2pjs' }] } }, browserWindow)).toBe('browser-libp2p');
|
|
expect(getP2PRuntimeMode({ pkc: { clients: { libp2pJsClients: { libp2pjs: {} } } } }, browserWindow)).toBe('browser-libp2p');
|
|
});
|
|
|
|
it('detects electron Kubo RPC accounts only in electron runtime', () => {
|
|
const account = { pkcOptions: { pkcRpcClientsOptions: ['ws://localhost:9138'] } };
|
|
|
|
expect(getP2PRuntimeMode(account, electronWindow)).toBe('electron-kubo-rpc');
|
|
expect(getP2PRuntimeMode(account, browserWindow)).toBeNull();
|
|
});
|
|
|
|
it('shows p2p settings in browsers only when pure p2p is enabled or active', () => {
|
|
expect(shouldShowP2PSettingsSection(undefined, browserWindow)).toBe(false);
|
|
expect(shouldShowP2PSettingsSection({ pkcOptions: { ipfsGatewayUrls: ['https://gateway.example'] } }, browserWindow)).toBe(false);
|
|
expect(isBrowserPureP2PEnabled({ pkcOptions: { ipfsGatewayUrls: ['https://gateway.example'] } }, browserWindow)).toBe(false);
|
|
});
|
|
|
|
it('forces browser p2p on p2p subdomains even with gateway account options', () => {
|
|
const gatewayAccount = { pkcOptions: { ipfsGatewayUrls: ['https://gateway.example'] } };
|
|
|
|
expect(isBrowserPureP2PEnabled(gatewayAccount, p2pBrowserWindow)).toBe(true);
|
|
expect(shouldShowP2PSettingsSection(gatewayAccount, p2pBrowserWindow)).toBe(true);
|
|
});
|
|
|
|
it('builds browser p2p and gateway account options without a direct pkc-js import', () => {
|
|
const account = {
|
|
pkcOptions: {
|
|
httpRoutersOptions: ['https://custom-router.example'],
|
|
ipfsGatewayUrls: ['https://gateway.example'],
|
|
pkcRpcClientsOptions: ['ws://remote.example'],
|
|
},
|
|
};
|
|
|
|
expect(getBrowserPureP2PAccountOptions(account)).toMatchObject({
|
|
libp2pJsClientsOptions: [{ key: 'libp2pjs' }],
|
|
ipfsGatewayUrls: undefined,
|
|
pkcRpcClientsOptions: undefined,
|
|
});
|
|
expect(getBrowserGatewayAccountOptions(account)).toMatchObject({
|
|
ipfsGatewayUrls: ['https://ipfsgateway.xyz', 'https://gateway.plebpubsub.xyz', 'https://gateway.forumindex.com'],
|
|
libp2pJsClientsOptions: undefined,
|
|
pkcRpcClientsOptions: undefined,
|
|
});
|
|
});
|
|
});
|