e004b98eab
The remote signer relies on the `types` and `crypto/bls` crates from Lighthouse. Moreover, a number of tests of the remote signer consumption of LH leverages this very signer, making any important update a potential dependency nightmare. Co-authored-by: Paul Hauner <paul@paulhauner.com>
82 lines
3.1 KiB
Rust
82 lines
3.1 KiB
Rust
mod sign_block {
|
|
use helpers::*;
|
|
|
|
#[test]
|
|
fn happy_path() {
|
|
let (test_signer, _tmp_dir) = set_up_api_test_signer_to_sign_message();
|
|
let url = format!("{}/sign/{}", test_signer.address, PUBLIC_KEY_1);
|
|
let test_block_body = get_test_block_body(0xc137);
|
|
|
|
let response = http_post_custom_body(&url, &test_block_body);
|
|
|
|
assert_sign_ok(response, HAPPY_PATH_BLOCK_SIGNATURE_C137);
|
|
|
|
test_signer.shutdown();
|
|
}
|
|
|
|
#[test]
|
|
fn domain_mismatch() {
|
|
let (test_signer, _tmp_dir) = set_up_api_test_signer_to_sign_message();
|
|
let url = format!("{}/sign/{}", test_signer.address, PUBLIC_KEY_1);
|
|
|
|
let testcase = |json_patch, expected_err| {
|
|
let test_block_body = get_test_block_body(0xc137).replace(
|
|
"\"bls_domain\":\"beacon_proposer\"",
|
|
&format!("\"bls_domain\":{}", json_patch),
|
|
);
|
|
let response = http_post_custom_body(&url, &test_block_body);
|
|
assert_sign_error(response, 400, expected_err);
|
|
};
|
|
|
|
testcase(
|
|
"\"beacon_attester\"",
|
|
"Unable to parse attestation from JSON: Error(\"missing field `index`\", line: 0, column: 0)",
|
|
);
|
|
testcase(
|
|
"\"randao\"",
|
|
"Unable to parse attestation from JSON: Error(\"invalid type: map, expected a quoted or unquoted integer\", line: 0, column: 0)"
|
|
);
|
|
testcase("\"blah\"", "Unsupported bls_domain parameter: blah");
|
|
|
|
test_signer.shutdown();
|
|
}
|
|
|
|
#[test]
|
|
fn missing_or_invalid_fields_within_block_data() {
|
|
let (test_signer, _tmp_dir) = set_up_api_test_signer_to_sign_message();
|
|
let url = format!("{}/sign/{}", test_signer.address, PUBLIC_KEY_1);
|
|
|
|
let testcase = |json_patch, expected_err| {
|
|
let test_block_body = get_test_block_body(0xc137).replace(
|
|
"\"data\":{\"slot\":\"49463\",\"proposer_index\":\"0\"",
|
|
json_patch,
|
|
);
|
|
let response = http_post_custom_body(&url, &test_block_body);
|
|
assert_sign_error(response, 400, expected_err);
|
|
};
|
|
|
|
testcase(
|
|
"\"data\":{\"slot\":\"\",\"proposer_index\":\"0\"",
|
|
"Unable to parse block from JSON: Error(\"cannot parse integer from empty string\", line: 0, column: 0)"
|
|
);
|
|
testcase(
|
|
"\"data\":{\"slot\":\"-1\",\"proposer_index\":\"0\"",
|
|
"Unable to parse block from JSON: Error(\"invalid digit found in string\", line: 0, column: 0)"
|
|
);
|
|
testcase(
|
|
"\"data\":{\"proposer_index\":\"0\"",
|
|
"Unable to parse block from JSON: Error(\"missing field `slot`\", line: 0, column: 0)",
|
|
);
|
|
testcase(
|
|
"\"data\":{\"slot\":\"49463\"",
|
|
"Unable to parse block from JSON: Error(\"missing field `proposer_index`\", line: 0, column: 0)"
|
|
);
|
|
testcase(
|
|
"\"data\":{\"slot\":\"49463\",\"proposer_index\":\"\"",
|
|
"Unable to parse block from JSON: Error(\"cannot parse integer from empty string\", line: 0, column: 0)",
|
|
);
|
|
|
|
test_signer.shutdown();
|
|
}
|
|
}
|