use of tech.pegasys.teku.data.slashinginterchange.SlashingProtectionInterchangeFormat in project teku by ConsenSys.
the class SlashingProtectionExporterTest method shouldReadSlashingProtectionFile_withGenesisValidatorsRoot.
@Test
public void shouldReadSlashingProtectionFile_withGenesisValidatorsRoot(@TempDir Path tempDir) throws IOException, URISyntaxException {
final SlashingProtectionExporter exporter = new SlashingProtectionExporter(tempDir);
Optional<String> error = exporter.readSlashProtectionFile(usingResourceFile("slashProtectionWithGenesisRoot.yml", tempDir), log::add);
assertThat(log).containsExactly("Exporting " + pubkey);
assertThat(error).isEmpty();
final SlashingProtectionInterchangeFormat parsedData = jsonProvider.jsonToObject(exporter.getPrettyJson(), SlashingProtectionInterchangeFormat.class);
final SlashingProtectionInterchangeFormat expectedData = getExportData(validatorsRoot, 327, 51, 1741);
assertThat(parsedData).isEqualTo(expectedData);
}
use of tech.pegasys.teku.data.slashinginterchange.SlashingProtectionInterchangeFormat in project teku by ConsenSys.
the class SlashingProtectionExporterTest method shouldHaveNoSignedAttestationsWhenNoAttestationsSigned.
@Test
void shouldHaveNoSignedAttestationsWhenNoAttestationsSigned(@TempDir Path tempDir) throws Exception {
final Path exportedFile = tempDir.resolve("exportedFile.json").toAbsolutePath();
final SlashingProtectionExporter exporter = new SlashingProtectionExporter(tempDir);
final UInt64 blockSlot = UInt64.ONE;
final ValidatorSigningRecord signingRecord = new ValidatorSigningRecord(validatorsRoot).maySignBlock(validatorsRoot, blockSlot).orElseThrow();
final Path recordFile = tempDir.resolve(pubkey + ".yml");
Files.write(recordFile, signingRecord.toBytes().toArrayUnsafe());
final Optional<String> error = exporter.readSlashProtectionFile(recordFile.toFile(), LOG::debug);
assertThat(error).isEmpty();
assertThat(exportedFile).doesNotExist();
exporter.saveToFile(exportedFile.toString(), LOG::debug);
assertThat(exportedFile).exists();
final SlashingProtectionInterchangeFormat exportedRecords = jsonProvider.jsonToObject(Files.readString(exportedFile), SlashingProtectionInterchangeFormat.class);
assertThat(exportedRecords.data).hasSize(1);
final SigningHistory signingHistory = exportedRecords.data.get(0);
assertThat(signingHistory.signedBlocks).containsExactly(new SignedBlock(blockSlot, null));
assertThat(signingHistory.signedAttestations).isEmpty();
}
use of tech.pegasys.teku.data.slashinginterchange.SlashingProtectionInterchangeFormat in project teku by ConsenSys.
the class SlashingProtectionExporterTest method shouldReadSlashingProtectionFile_withEmptyGenesisValidatorsRoot.
@Test
public void shouldReadSlashingProtectionFile_withEmptyGenesisValidatorsRoot(@TempDir Path tempDir) throws IOException, URISyntaxException {
final SlashingProtectionExporter exporter = new SlashingProtectionExporter(tempDir);
Optional<String> error = exporter.readSlashProtectionFile(usingResourceFile("slashProtection.yml", tempDir), log::add);
assertThat(log).containsExactly("Exporting " + pubkey);
assertThat(error).isEmpty();
final SlashingProtectionInterchangeFormat parsedData = jsonProvider.jsonToObject(exporter.getPrettyJson(), SlashingProtectionInterchangeFormat.class);
final SlashingProtectionInterchangeFormat expectedData = getExportData(null, 327, 51, 1741);
assertThat(parsedData).isEqualTo(expectedData);
}
Aggregations