mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
32 lines
885 B
TypeScript
32 lines
885 B
TypeScript
import { assertEquals, assertThrows } from '@std/assert';
|
|
|
|
import { DittoConf } from './DittoConf.ts';
|
|
|
|
Deno.test('DittoConfig', async (t) => {
|
|
const env = new Map<string, string>([
|
|
['DITTO_NSEC', 'nsec19shyxpuzd0cq2p5078fwnws7tyykypud6z205fzhlmlrs2vpz6hs83zwkw'],
|
|
]);
|
|
|
|
const config = new DittoConf(env);
|
|
|
|
await t.step('nsec', () => {
|
|
assertEquals(config.nsec, 'nsec19shyxpuzd0cq2p5078fwnws7tyykypud6z205fzhlmlrs2vpz6hs83zwkw');
|
|
});
|
|
|
|
await t.step('pubkey', () => {
|
|
assertEquals(config.pubkey, '1ba0c5ed1bbbf3b7eb0d7843ba16836a0201ea68a76bafcba507358c45911ff6');
|
|
});
|
|
});
|
|
|
|
Deno.test('DittoConfig defaults', async (t) => {
|
|
const env = new Map<string, string>();
|
|
const config = new DittoConf(env);
|
|
|
|
await t.step('nsec throws', () => {
|
|
assertThrows(() => config.nsec);
|
|
});
|
|
|
|
await t.step('port', () => {
|
|
assertEquals(config.port, 4036);
|
|
});
|
|
});
|