This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
chainsafe-bls/test/spec/sign.test.ts

38 lines
1.1 KiB
TypeScript

import path from "path";
import {describeDirectorySpecTest, InputType} from "@chainsafe/lodestar-spec-test-util";
import {bytesToHex, hexToBytes} from "../../src/helpers/index.js";
import {SPEC_TESTS_DIR} from "../params.js";
import {describeForAllImplementations} from "../switch.js";
import {ZeroSecretKeyError} from "../../src/errors.js";
interface ISignMessageTestCase {
data: {
input: {
privkey: string;
message: string;
};
output: string;
};
}
describeForAllImplementations((bls) => {
describeDirectorySpecTest<ISignMessageTestCase, string | null>(
"bls/sign/small",
path.join(SPEC_TESTS_DIR, "tests/general/phase0/bls/sign/small"),
(testCase) => {
try {
const {privkey, message} = testCase.data.input;
const signature = bls.sign(hexToBytes(privkey), hexToBytes(message));
return bytesToHex(signature);
} catch (e) {
if (e instanceof ZeroSecretKeyError) return null;
else throw e;
}
},
{
inputTypes: {data: InputType.YAML},
getExpected: (testCase) => testCase.data.output,
}
);
});