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.
2020-02-26 08:19:15 +00:00
|
|
|
import path from "path";
|
|
|
|
import bls, {initBLS} from "../../src";
|
|
|
|
import {describeDirectorySpecTest, InputType} from "@chainsafe/lodestar-spec-test-util";
|
|
|
|
|
|
|
|
interface IAggregateSigsTestCase {
|
|
|
|
data: {
|
|
|
|
input: string[];
|
|
|
|
output: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
before(async function f() {
|
|
|
|
await initBLS();
|
|
|
|
});
|
|
|
|
|
|
|
|
describeDirectorySpecTest<IAggregateSigsTestCase, string>(
|
|
|
|
"BLS - aggregate sigs",
|
|
|
|
path.join(
|
|
|
|
__dirname,
|
|
|
|
"../../node_modules/@chainsafe/eth2-spec-tests/tests/general/phase0/bls/aggregate/small"
|
|
|
|
),
|
|
|
|
(testCase => {
|
2020-05-21 10:52:11 +00:00
|
|
|
try {
|
|
|
|
const result = bls.aggregateSignatures(testCase.data.input.map(pubKey => {
|
|
|
|
return Buffer.from(pubKey.replace("0x", ""), "hex");
|
|
|
|
}));
|
|
|
|
return `0x${result.toString("hex")}`;
|
|
|
|
} catch (e) {
|
|
|
|
if(e.message === "signatures is null or undefined or empty array") {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
}
|
2020-02-26 08:19:15 +00:00
|
|
|
}),
|
|
|
|
{
|
|
|
|
inputTypes: {
|
|
|
|
data: InputType.YAML,
|
|
|
|
},
|
|
|
|
getExpected: (testCase => testCase.data.output)
|
|
|
|
}
|
|
|
|
);
|