mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-30 12:21:57 +00:00
chore: Fix the tests
This commit is contained in:
@@ -3,49 +3,48 @@ describe("test", () => {
|
|||||||
expect(true).toEqual(true);
|
expect(true).toEqual(true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
// import { Config } from "./config";
|
import { Config } from "./config";
|
||||||
// import { Value } from "./value";
|
import { Value } from "./value";
|
||||||
// import { expect } from "https://deno.land/x/expect@v0.2.9/mod";
|
describe("builder tests", () => {
|
||||||
// const { test } = Deno;
|
test("String", () => {
|
||||||
|
const bitcoinPropertiesBuilt: {
|
||||||
// test("String", () => {
|
"peer-tor-address": {
|
||||||
// const bitcoinPropertiesBuilt: {
|
name: string;
|
||||||
// "peer-tor-address": {
|
description: string | null;
|
||||||
// name: string;
|
type: "string";
|
||||||
// description: string | null;
|
};
|
||||||
// type: "string";
|
} = Config.of({
|
||||||
// };
|
"peer-tor-address": Value.string({
|
||||||
// } = Config.of({
|
name: "Peer tor address",
|
||||||
// "peer-tor-address": Value.string({
|
default: "",
|
||||||
// name: "Peer tor address",
|
description: "The Tor address of the peer interface",
|
||||||
// default: "",
|
warning: null,
|
||||||
// description: "The Tor address of the peer interface",
|
nullable: false,
|
||||||
// warning: null,
|
masked: true,
|
||||||
// nullable: false,
|
placeholder: null,
|
||||||
// masked: true,
|
pattern: null,
|
||||||
// placeholder: null,
|
patternDescription: null,
|
||||||
// pattern: null,
|
textarea: null,
|
||||||
// "pattern-description": null,
|
}),
|
||||||
// textarea: null,
|
}).build();
|
||||||
// }),
|
expect(JSON.stringify(bitcoinPropertiesBuilt)).toEqual(
|
||||||
// }).build();
|
/*json*/ `{
|
||||||
// expect(JSON.stringify(bitcoinPropertiesBuilt)).toEqual(
|
"peer-tor-address": {
|
||||||
// /*json*/ `{
|
"type": "string",
|
||||||
// "peer-tor-address": {
|
"name": "Peer tor address",
|
||||||
// "type": "string",
|
"default": "",
|
||||||
// "name": "Peer tor address",
|
"description": "The Tor address of the peer interface",
|
||||||
// "default": "",
|
"warning": null,
|
||||||
// "description": "The Tor address of the peer interface",
|
"nullable": false,
|
||||||
// "warning": null,
|
"masked": true,
|
||||||
// "nullable": false,
|
"placeholder": null,
|
||||||
// "masked": true,
|
"pattern": null,
|
||||||
// "placeholder": null,
|
"patternDescription": null,
|
||||||
// "pattern": null,
|
"textarea": null
|
||||||
// "pattern-description": null,
|
}}`
|
||||||
// "textarea": null
|
.replaceAll("\n", " ")
|
||||||
// }}`
|
.replaceAll(/\s{2,}/g, "")
|
||||||
// .replaceAll("\n", " ")
|
.replaceAll(": ", ":")
|
||||||
// .replaceAll(/\s{2,}/g, "")
|
);
|
||||||
// .replaceAll(": ", ":")
|
});
|
||||||
// );
|
});
|
||||||
// });
|
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ function _mergeDeep<A extends unknown[]>(
|
|||||||
return _mergeDeep(target, ...sources);
|
return _mergeDeep(target, ...sources);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Testing the types of the input spec
|
||||||
// @ts-expect-error Because enable should be a boolean
|
// @ts-expect-error Because enable should be a boolean
|
||||||
testOutput<InputSpec["rpc"]["enable"], string>()(null);
|
testOutput<InputSpec["rpc"]["enable"], string>()(null);
|
||||||
testOutput<InputSpec["rpc"]["enable"], boolean>()(null);
|
testOutput<InputSpec["rpc"]["enable"], boolean>()(null);
|
||||||
@@ -45,6 +46,8 @@ testOutput<InputSpec["rpc"]["advanced"]["auth"], string[]>()(null);
|
|||||||
testOutput<InputSpec["rpc"]["advanced"]["serialversion"], "segwit" | "non-segwit">()(null);
|
testOutput<InputSpec["rpc"]["advanced"]["serialversion"], "segwit" | "non-segwit">()(null);
|
||||||
testOutput<InputSpec["rpc"]["advanced"]["servertimeout"], number>()(null);
|
testOutput<InputSpec["rpc"]["advanced"]["servertimeout"], number>()(null);
|
||||||
testOutput<InputSpec["advanced"]["peers"]["addnode"][0]["hostname"], string>()(null);
|
testOutput<InputSpec["advanced"]["peers"]["addnode"][0]["hostname"], string>()(null);
|
||||||
|
|
||||||
|
/// Here we test the output of the matchInputSpec function
|
||||||
describe("Inputs", () => {
|
describe("Inputs", () => {
|
||||||
const validInput: InputSpec = {
|
const validInput: InputSpec = {
|
||||||
rpc: {
|
rpc: {
|
||||||
@@ -104,5 +107,6 @@ describe("Inputs", () => {
|
|||||||
expect(() =>
|
expect(() =>
|
||||||
matchInputSpec.unsafeCast(mergeDeep(validInput, { rpc: { advanced: { serialversion: "testing" } } }))
|
matchInputSpec.unsafeCast(mergeDeep(validInput, { rpc: { advanced: { serialversion: "testing" } } }))
|
||||||
).toThrowError();
|
).toThrowError();
|
||||||
|
matchInputSpec.unsafeCast(validInput);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,553 +0,0 @@
|
|||||||
describe("Properties Matcher", () => {
|
|
||||||
test("matches", () => {});
|
|
||||||
});
|
|
||||||
// import * as PM from "./propertiesMatcher";
|
|
||||||
// import { expect } from "https://deno.land/x/expect@v0.2.9/mod";
|
|
||||||
// import * as matches from "ts-matches";
|
|
||||||
// import { InputSpec as bitcoinPropertiesConfig } from "./test/output";
|
|
||||||
|
|
||||||
// const randWithSeed = (seed = 1) => {
|
|
||||||
// return function random() {
|
|
||||||
// const x = Math.sin(seed++) * 10000;
|
|
||||||
// return x - Math.floor(x);
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// const bitcoinProperties = bitcoinPropertiesConfig.build();
|
|
||||||
// type BitcoinProperties = typeof bitcoinProperties;
|
|
||||||
// const anyValue: unknown = "";
|
|
||||||
// const _testBoolean: boolean = anyValue as PM.GuardAll<
|
|
||||||
// BitcoinProperties["rpc"]["spec"]["enable"]
|
|
||||||
// >;
|
|
||||||
// // @ts-expect-error Boolean can't be a string
|
|
||||||
// const _testBooleanBad: string = anyValue as PM.GuardAll<
|
|
||||||
// BitcoinProperties["rpc"]["spec"]["enable"]
|
|
||||||
// >;
|
|
||||||
// const _testString: string = anyValue as PM.GuardAll<
|
|
||||||
// BitcoinProperties["rpc"]["spec"]["username"]
|
|
||||||
// >;
|
|
||||||
// // @ts-expect-error string can't be a boolean
|
|
||||||
// const _testStringBad: boolean = anyValue as PM.GuardAll<
|
|
||||||
// BitcoinProperties["rpc"]["spec"]["username"]
|
|
||||||
// >;
|
|
||||||
// const _testNumber: number = anyValue as PM.GuardAll<
|
|
||||||
// BitcoinProperties["advanced"]["spec"]["dbcache"]
|
|
||||||
// >;
|
|
||||||
// // @ts-expect-error Number can't be string
|
|
||||||
// const _testNumberBad: string = anyValue as PM.GuardAll<
|
|
||||||
// BitcoinProperties["advanced"]["spec"]["dbcache"]
|
|
||||||
// >;
|
|
||||||
// const _testObject: {
|
|
||||||
// enable: boolean;
|
|
||||||
// avoidpartialspends: boolean;
|
|
||||||
// discardfee: number;
|
|
||||||
// } = anyValue as PM.GuardAll<BitcoinProperties["wallet"]>;
|
|
||||||
// // @ts-expect-error Boolean can't be object
|
|
||||||
// const _testObjectBad: boolean = anyValue as PM.GuardAll<
|
|
||||||
// BitcoinProperties["wallet"]
|
|
||||||
// >;
|
|
||||||
// const _testObjectNested: { test: { a: boolean } } = anyValue as PM.GuardAll<{
|
|
||||||
// readonly type: "object";
|
|
||||||
// readonly spec: {
|
|
||||||
// readonly test: {
|
|
||||||
// readonly type: "object";
|
|
||||||
// readonly spec: {
|
|
||||||
// readonly a: {
|
|
||||||
// readonly type: "boolean";
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// }>;
|
|
||||||
// const _testList: readonly string[] = anyValue as PM.GuardAll<{
|
|
||||||
// type: "list";
|
|
||||||
// subtype: "string";
|
|
||||||
// default: [];
|
|
||||||
// }>;
|
|
||||||
// // @ts-expect-error number[] can't be string[]
|
|
||||||
// const _testListBad: readonly number[] = anyValue as PM.GuardAll<{
|
|
||||||
// type: "list";
|
|
||||||
// subtype: "string";
|
|
||||||
// default: [];
|
|
||||||
// }>;
|
|
||||||
// const _testPointer: string | null = anyValue as PM.GuardAll<{
|
|
||||||
// type: "pointer";
|
|
||||||
// }>;
|
|
||||||
// const testUnionValue = anyValue as PM.GuardAll<{
|
|
||||||
// type: "union";
|
|
||||||
// tag: {
|
|
||||||
// id: "mode";
|
|
||||||
// name: "Pruning Mode";
|
|
||||||
// warning: null;
|
|
||||||
// description: '- Disabled: Disable pruning\n- Automatic: Limit blockchain size on disk to a certain number of megabytes\n- Manual: Prune blockchain with the "pruneblockchain" RPC\n';
|
|
||||||
// "variant-names": {
|
|
||||||
// disabled: "Disabled";
|
|
||||||
// automatic: "Automatic";
|
|
||||||
// manual: "Manual";
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// variants: {
|
|
||||||
// disabled: Record<string, never>;
|
|
||||||
// automatic: {
|
|
||||||
// size: {
|
|
||||||
// type: "number";
|
|
||||||
// nullable: false;
|
|
||||||
// name: "Max Chain Size";
|
|
||||||
// description: "Limit of blockchain size on disk.";
|
|
||||||
// warning: "Increasing this value will require re-syncing your node.";
|
|
||||||
// default: 550;
|
|
||||||
// range: "[550,1000000)";
|
|
||||||
// integral: true;
|
|
||||||
// units: "MiB";
|
|
||||||
// placeholder: null;
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// manual: {
|
|
||||||
// size: {
|
|
||||||
// type: "number";
|
|
||||||
// nullable: false;
|
|
||||||
// name: "Failsafe Chain Size";
|
|
||||||
// description: "Prune blockchain if size expands beyond this.";
|
|
||||||
// default: 65536;
|
|
||||||
// range: "[550,1000000)";
|
|
||||||
// integral: true;
|
|
||||||
// units: "MiB";
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// default: "disabled";
|
|
||||||
// }>;
|
|
||||||
// const _testUnion:
|
|
||||||
// | { mode: "disabled" }
|
|
||||||
// | { mode: "automatic"; size: number }
|
|
||||||
// | {
|
|
||||||
// mode: "manual";
|
|
||||||
// size: number;
|
|
||||||
// } = testUnionValue;
|
|
||||||
// //@ts-expect-error Bad mode name
|
|
||||||
// const _testUnionBadUnion:
|
|
||||||
// | { mode: "disabled" }
|
|
||||||
// | { mode: "bad"; size: number }
|
|
||||||
// | {
|
|
||||||
// mode: "manual";
|
|
||||||
// size: number;
|
|
||||||
// } = testUnionValue;
|
|
||||||
// const _testAll: PM.TypeFromProps<BitcoinProperties> = anyValue as {
|
|
||||||
// rpc: {
|
|
||||||
// enable: boolean;
|
|
||||||
// username: string;
|
|
||||||
// password: string;
|
|
||||||
// advanced: {
|
|
||||||
// auth: string[];
|
|
||||||
// serialversion: "non-segwit" | "segwit";
|
|
||||||
// servertimeout: number;
|
|
||||||
// threads: number;
|
|
||||||
// workqueue: number;
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
|
|
||||||
// "zmq-enabled": boolean;
|
|
||||||
// txindex: boolean;
|
|
||||||
// wallet: {
|
|
||||||
// enable: boolean;
|
|
||||||
// avoidpartialspends: boolean;
|
|
||||||
// discardfee: number;
|
|
||||||
// };
|
|
||||||
// advanced: {
|
|
||||||
// mempool: {
|
|
||||||
// mempoolfullrbf: boolean;
|
|
||||||
// persistmempool: boolean;
|
|
||||||
// maxmempool: number;
|
|
||||||
// mempoolexpiry: number;
|
|
||||||
// };
|
|
||||||
// peers: {
|
|
||||||
// listen: boolean;
|
|
||||||
// onlyconnect: boolean;
|
|
||||||
// onlyonion: boolean;
|
|
||||||
// addnode: readonly { hostname: string; port: number }[];
|
|
||||||
// };
|
|
||||||
// dbcache: number;
|
|
||||||
// pruning:
|
|
||||||
// | { mode: "disabled" }
|
|
||||||
// | { mode: "automatic"; size: number }
|
|
||||||
// | {
|
|
||||||
// mode: "manual";
|
|
||||||
// size: number;
|
|
||||||
// };
|
|
||||||
// blockfilters: {
|
|
||||||
// blockfilterindex: boolean;
|
|
||||||
// peerblockfilters: boolean;
|
|
||||||
// };
|
|
||||||
// bloomfilters: {
|
|
||||||
// peerbloomfilters: boolean;
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
|
|
||||||
// const { test } = Deno;
|
|
||||||
|
|
||||||
// {
|
|
||||||
// test("matchNumberWithRange (1,4)", () => {
|
|
||||||
// const checker = PM.matchNumberWithRange("(1,4)");
|
|
||||||
// expect(checker.test(0)).toBe(false);
|
|
||||||
// expect(checker.test(1)).toBe(false);
|
|
||||||
// expect(checker.test(2)).toBe(true);
|
|
||||||
// expect(checker.test(3)).toBe(true);
|
|
||||||
// expect(checker.test(4)).toBe(false);
|
|
||||||
// expect(checker.test(5)).toBe(false);
|
|
||||||
// });
|
|
||||||
// test("matchNumberWithRange [1,4]", () => {
|
|
||||||
// const checker = PM.matchNumberWithRange("[1,4]");
|
|
||||||
// expect(checker.test(0)).toBe(false);
|
|
||||||
// expect(checker.test(1)).toBe(true);
|
|
||||||
// expect(checker.test(2)).toBe(true);
|
|
||||||
// expect(checker.test(3)).toBe(true);
|
|
||||||
// expect(checker.test(4)).toBe(true);
|
|
||||||
// expect(checker.test(5)).toBe(false);
|
|
||||||
// });
|
|
||||||
// test("matchNumberWithRange [1,*)", () => {
|
|
||||||
// const checker = PM.matchNumberWithRange("[1,*)");
|
|
||||||
// expect(checker.test(0)).toBe(false);
|
|
||||||
// expect(checker.test(1)).toBe(true);
|
|
||||||
// expect(checker.test(2)).toBe(true);
|
|
||||||
// expect(checker.test(3)).toBe(true);
|
|
||||||
// expect(checker.test(4)).toBe(true);
|
|
||||||
// expect(checker.test(5)).toBe(true);
|
|
||||||
// });
|
|
||||||
// test("matchNumberWithRange (*,4]", () => {
|
|
||||||
// const checker = PM.matchNumberWithRange("(*,4]");
|
|
||||||
// expect(checker.test(0)).toBe(true);
|
|
||||||
// expect(checker.test(1)).toBe(true);
|
|
||||||
// expect(checker.test(2)).toBe(true);
|
|
||||||
// expect(checker.test(3)).toBe(true);
|
|
||||||
// expect(checker.test(4)).toBe(true);
|
|
||||||
// expect(checker.test(5)).toBe(false);
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
|
|
||||||
// {
|
|
||||||
// test("Generate 1", () => {
|
|
||||||
// const random = randWithSeed(1);
|
|
||||||
// const options = { random };
|
|
||||||
// const generated = PM.generateDefault(
|
|
||||||
// { charset: "a-z,B-X,2-5", len: 100 },
|
|
||||||
// options
|
|
||||||
// );
|
|
||||||
// expect(generated.length).toBe(100);
|
|
||||||
// expect(generated).toBe(
|
|
||||||
// "WwwgjGRkvDaGQSLeKTtlOmdDbXoCBkOn3dxUvkKkrlOFd4FbKuvIosvfPTQhbWCTQakqnwpoHmPnbgyK5CGtSQyGhxEGLjS3oKko"
|
|
||||||
// );
|
|
||||||
// });
|
|
||||||
// test("Generate Tests", () => {
|
|
||||||
// const random = randWithSeed(2);
|
|
||||||
// const options = { random };
|
|
||||||
// expect(PM.generateDefault({ charset: "0-1", len: 100 }, options)).toBe(
|
|
||||||
// "0000110010000000000011110000010010000011101111001000000000000000100001101000010000001000010000010110"
|
|
||||||
// );
|
|
||||||
// expect(PM.generateDefault({ charset: "a-z", len: 100 }, options)).toBe(
|
|
||||||
// "qipnycbqmqdtflrhnckgrhftrqnvxbhyyfehpvficljseasxwdyleacmjqemmpnuotkwzlsqdumuaaksxykchljgdoslrfubhepr"
|
|
||||||
// );
|
|
||||||
// expect(
|
|
||||||
// PM.generateDefault({ charset: "a,b,c,d,f,g", len: 100 }, options)
|
|
||||||
// ).toBe(
|
|
||||||
// "bagbafcgaaddcabdfadccaadfbddffdcfccfbafbddbbfcdggfcgaffdbcgcagcfbdbfaagbfgfccdbfdfbdagcfdcabbdffaffc"
|
|
||||||
// );
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
|
|
||||||
// {
|
|
||||||
// test("Specs Union", () => {
|
|
||||||
// const checker = PM.guardAll(bitcoinProperties.advanced.spec.pruning);
|
|
||||||
// console.log("Checker = ", matches.Parser.parserAsString(checker.parser));
|
|
||||||
// checker.unsafeCast({ mode: "automatic", size: 1234 });
|
|
||||||
// });
|
|
||||||
|
|
||||||
// test("A default that is invalid according to the tests", () => {
|
|
||||||
// const checker = PM.typeFromProps({
|
|
||||||
// pubkey_whitelist: {
|
|
||||||
// name: "Pubkey Whitelist (hex)",
|
|
||||||
// description:
|
|
||||||
// "A list of pubkeys that are permitted to publish through your relay. A minimum, you need to enter your own Nostr hex (not npub) pubkey. Go to https://damus.io/key/ to convert from npub to hex.",
|
|
||||||
// type: "list",
|
|
||||||
// range: "[1,*)",
|
|
||||||
// subtype: "string",
|
|
||||||
// spec: {
|
|
||||||
// masked: false,
|
|
||||||
// placeholder: "hex (not npub) pubkey",
|
|
||||||
// pattern: "[0-9a-fA-F]{3}",
|
|
||||||
// "pattern-description":
|
|
||||||
// "Must be a valid 64-digit hexadecimal value (ie a Nostr hex pubkey, not an npub). Go to https://damus.io/key/ to convert npub to hex.",
|
|
||||||
// },
|
|
||||||
// default: [] as string[], // [] as string []
|
|
||||||
// warning: null,
|
|
||||||
// },
|
|
||||||
// } as const);
|
|
||||||
|
|
||||||
// checker.unsafeCast({
|
|
||||||
// pubkey_whitelist: ["aaa"],
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
|
|
||||||
// test("Bad list", () => {
|
|
||||||
// const props = {
|
|
||||||
// addWatchtowers: {
|
|
||||||
// type: "list",
|
|
||||||
// name: "Add Watchtowers",
|
|
||||||
// description: "Add URIs of Watchtowers to connect to.",
|
|
||||||
// warning: null,
|
|
||||||
// range: "[0,*)",
|
|
||||||
// subtype: "string",
|
|
||||||
// spec: {
|
|
||||||
// pattern: null,
|
|
||||||
// "pattern-description": null,
|
|
||||||
// masked: false,
|
|
||||||
// placeholder: "pubkey@host",
|
|
||||||
// },
|
|
||||||
// nullable: true,
|
|
||||||
// default: Array<string>(), // [] as string []
|
|
||||||
// },
|
|
||||||
// } as const;
|
|
||||||
// type test = PM.GuardList<(typeof props)["addWatchtowers"]>;
|
|
||||||
// function isType<A>(_a: A) {}
|
|
||||||
// isType<test>([""]);
|
|
||||||
// isType<ArrayLike<string>>([""] as test);
|
|
||||||
// const checker = PM.typeFromProps(props);
|
|
||||||
// checker.unsafeCast({
|
|
||||||
// addWatchtowers: ["aaa"],
|
|
||||||
// });
|
|
||||||
// expect(() => checker.unsafeCast({ addWatchtowers: 123 })).toThrow();
|
|
||||||
// });
|
|
||||||
|
|
||||||
// test("Full spec", () => {
|
|
||||||
// const checker = PM.typeFromProps(bitcoinProperties);
|
|
||||||
|
|
||||||
// checker.unsafeCast({
|
|
||||||
// rpc: {
|
|
||||||
// enable: true,
|
|
||||||
// username: "asdf",
|
|
||||||
// password: "asdf",
|
|
||||||
// advanced: {
|
|
||||||
// auth: ["test:34$aa"],
|
|
||||||
// serialversion: "non-segwit",
|
|
||||||
// servertimeout: 12,
|
|
||||||
// threads: 12,
|
|
||||||
// workqueue: 12,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// "zmq-enabled": false,
|
|
||||||
// txindex: false,
|
|
||||||
// wallet: {
|
|
||||||
// enable: true,
|
|
||||||
// avoidpartialspends: false,
|
|
||||||
// discardfee: 0,
|
|
||||||
// },
|
|
||||||
// advanced: {
|
|
||||||
// mempool: {
|
|
||||||
// mempoolfullrbf: false,
|
|
||||||
// persistmempool: false,
|
|
||||||
// maxmempool: 3012,
|
|
||||||
// mempoolexpiry: 321,
|
|
||||||
// },
|
|
||||||
// peers: {
|
|
||||||
// listen: false,
|
|
||||||
// onlyconnect: false,
|
|
||||||
// onlyonion: false,
|
|
||||||
// addnode: [{ hostname: "google.com", port: 231 }],
|
|
||||||
// },
|
|
||||||
// dbcache: 123,
|
|
||||||
// pruning: { mode: "automatic", size: 1234 },
|
|
||||||
// blockfilters: {
|
|
||||||
// blockfilterindex: false,
|
|
||||||
// peerblockfilters: false,
|
|
||||||
// },
|
|
||||||
// bloomfilters: {
|
|
||||||
// peerbloomfilters: false,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
|
|
||||||
// expect(() =>
|
|
||||||
// checker.unsafeCast({
|
|
||||||
// rpc: {
|
|
||||||
// enable: true,
|
|
||||||
// username: "asdf",
|
|
||||||
// password: "asdf",
|
|
||||||
// advanced: {
|
|
||||||
// auth: ["test:34$aa"],
|
|
||||||
// serialversion: "non-segwit",
|
|
||||||
// servertimeout: 12,
|
|
||||||
// threads: 12,
|
|
||||||
// workqueue: 12,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// "zmq-enabled": false,
|
|
||||||
// txindex: false,
|
|
||||||
// wallet: {
|
|
||||||
// enable: true,
|
|
||||||
// avoidpartialspends: false,
|
|
||||||
// discardfee: 0,
|
|
||||||
// },
|
|
||||||
// advanced: {
|
|
||||||
// mempool: {
|
|
||||||
// mempoolfullrbf: false,
|
|
||||||
// persistmempool: false,
|
|
||||||
// maxmempool: 3012,
|
|
||||||
// mempoolexpiry: 321,
|
|
||||||
// },
|
|
||||||
// peers: {
|
|
||||||
// listen: false,
|
|
||||||
// onlyconnect: false,
|
|
||||||
// onlyonion: false,
|
|
||||||
// addnode: [{ hostname: "google", port: 231 }],
|
|
||||||
// },
|
|
||||||
// dbcache: 123,
|
|
||||||
// pruning: { mode: "automatic", size: 1234 },
|
|
||||||
// blockfilters: {
|
|
||||||
// blockfilterindex: false,
|
|
||||||
// peerblockfilters: false,
|
|
||||||
// },
|
|
||||||
// bloomfilters: {
|
|
||||||
// peerbloomfilters: false,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// })
|
|
||||||
// ).toThrow();
|
|
||||||
|
|
||||||
// expect(() =>
|
|
||||||
// checker.unsafeCast({
|
|
||||||
// rpc: {
|
|
||||||
// enable: true,
|
|
||||||
// username: "asdf",
|
|
||||||
// password: "asdf",
|
|
||||||
// advanced: {
|
|
||||||
// auth: ["test34$aa"],
|
|
||||||
// serialversion: "non-segwit",
|
|
||||||
// servertimeout: 12,
|
|
||||||
// threads: 12,
|
|
||||||
// workqueue: 12,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// "zmq-enabled": false,
|
|
||||||
// txindex: false,
|
|
||||||
// wallet: {
|
|
||||||
// enable: true,
|
|
||||||
// avoidpartialspends: false,
|
|
||||||
// discardfee: 0,
|
|
||||||
// },
|
|
||||||
// advanced: {
|
|
||||||
// mempool: {
|
|
||||||
// mempoolfullrbf: false,
|
|
||||||
// persistmempool: false,
|
|
||||||
// maxmempool: 3012,
|
|
||||||
// mempoolexpiry: 321,
|
|
||||||
// },
|
|
||||||
// peers: {
|
|
||||||
// listen: false,
|
|
||||||
// onlyconnect: false,
|
|
||||||
// onlyonion: false,
|
|
||||||
// addnode: [{ hostname: "google.com", port: 231 }],
|
|
||||||
// },
|
|
||||||
// dbcache: 123,
|
|
||||||
// pruning: { mode: "automatic", size: 1234 },
|
|
||||||
// blockfilters: {
|
|
||||||
// blockfilterindex: false,
|
|
||||||
// peerblockfilters: false,
|
|
||||||
// },
|
|
||||||
// bloomfilters: {
|
|
||||||
// peerbloomfilters: false,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// })
|
|
||||||
// ).toThrow();
|
|
||||||
|
|
||||||
// expect(() =>
|
|
||||||
// checker.unsafeCast({
|
|
||||||
// rpc: {
|
|
||||||
// enable: true,
|
|
||||||
// username: "asdf",
|
|
||||||
// password: "asdf",
|
|
||||||
// advanced: {
|
|
||||||
// auth: ["test:34$aa"],
|
|
||||||
// serialversion: "non-segwit",
|
|
||||||
// servertimeout: 12,
|
|
||||||
// threads: 12,
|
|
||||||
// workqueue: 12,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// "zmq-enabled": false,
|
|
||||||
// txindex: false,
|
|
||||||
// wallet: {
|
|
||||||
// enable: true,
|
|
||||||
// avoidpartialspends: false,
|
|
||||||
// discardfee: 0,
|
|
||||||
// },
|
|
||||||
// advanced: {
|
|
||||||
// mempool: {
|
|
||||||
// mempoolfullrbf: false,
|
|
||||||
// persistmempool: false,
|
|
||||||
// maxmempool: 3012,
|
|
||||||
// mempoolexpiry: 321,
|
|
||||||
// },
|
|
||||||
// peers: {
|
|
||||||
// listen: false,
|
|
||||||
// onlyconnect: false,
|
|
||||||
// onlyonion: false,
|
|
||||||
// addnode: [{ hostname: "google.com", port: 231 }],
|
|
||||||
// },
|
|
||||||
// dbcache: 123,
|
|
||||||
// pruning: { mode: "automatic", size: "1234" },
|
|
||||||
// blockfilters: {
|
|
||||||
// blockfilterindex: false,
|
|
||||||
// peerblockfilters: false,
|
|
||||||
// },
|
|
||||||
// bloomfilters: {
|
|
||||||
// peerbloomfilters: false,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// })
|
|
||||||
// ).toThrow();
|
|
||||||
// checker.unsafeCast({
|
|
||||||
// rpc: {
|
|
||||||
// enable: true,
|
|
||||||
// username: "asdf",
|
|
||||||
// password: "asdf",
|
|
||||||
// advanced: {
|
|
||||||
// auth: ["test:34$aa"],
|
|
||||||
// serialversion: "non-segwit",
|
|
||||||
// servertimeout: 12,
|
|
||||||
// threads: 12,
|
|
||||||
// workqueue: 12,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// "zmq-enabled": false,
|
|
||||||
// txindex: false,
|
|
||||||
// wallet: {
|
|
||||||
// enable: true,
|
|
||||||
// avoidpartialspends: false,
|
|
||||||
// discardfee: 0,
|
|
||||||
// },
|
|
||||||
// advanced: {
|
|
||||||
// mempool: {
|
|
||||||
// mempoolfullrbf: false,
|
|
||||||
// persistmempool: false,
|
|
||||||
// maxmempool: 3012,
|
|
||||||
// mempoolexpiry: 321,
|
|
||||||
// },
|
|
||||||
// peers: {
|
|
||||||
// listen: false,
|
|
||||||
// onlyconnect: false,
|
|
||||||
// onlyonion: false,
|
|
||||||
// addnode: [{ hostname: "google.com", port: 231 }],
|
|
||||||
// },
|
|
||||||
// dbcache: 123,
|
|
||||||
// pruning: { mode: "automatic", size: 1234 },
|
|
||||||
// blockfilters: {
|
|
||||||
// blockfilterindex: false,
|
|
||||||
// peerblockfilters: false,
|
|
||||||
// },
|
|
||||||
// bloomfilters: {
|
|
||||||
// peerbloomfilters: false,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
// }
|
|
||||||
Reference in New Issue
Block a user