Test SeraiKeyWasNone

This commit is contained in:
Luke Parker 2025-01-24 06:58:54 -05:00
parent 164fe9a14f
commit cefc542744
No known key found for this signature in database
3 changed files with 42 additions and 4 deletions
processor/ethereum/router
contracts
src/tests

View file

@ -45,6 +45,8 @@ interface IRouterWithoutCollisions {
/// @param amount The amount which escaped
event Escaped(address indexed coin, uint256 amount);
/// @notice The Serai key verifying the signature wasn't set
error SeraiKeyWasNone();
/// @notice The key for Serai was invalid
/// @dev This is incomplete and not always guaranteed to be thrown upon an invalid key
error InvalidSeraiKey();

View file

@ -137,7 +137,7 @@ contract Router is IRouterWithoutCollisions {
The Schnorr contract should already reject this public key yet it's best to be explicit.
*/
if (key == bytes32(0)) {
revert InvalidSignature();
revert SeraiKeyWasNone();
}
message = msg.data;
@ -266,7 +266,7 @@ contract Router is IRouterWithoutCollisions {
function inInstruction(address coin, uint256 amount, bytes memory instruction) external payable {
// Check there is an active key
if (_seraiKey == bytes32(0)) {
revert InvalidSeraiKey();
revert SeraiKeyWasNone();
}
// Don't allow further InInstructions once the escape hatch has been invoked

View file

@ -367,10 +367,46 @@ async fn test_constructor() {
#[tokio::test]
async fn test_confirm_next_serai_key() {
let mut test = Test::new().await;
// TODO: Check all calls fail at this time, including inInstruction
test.confirm_next_serai_key().await;
}
#[tokio::test]
async fn test_no_serai_key() {
// Before we confirm a key, any operations requiring a signature shouldn't work
{
let mut test = Test::new().await;
// Corrupt the test's state so we can obtain signed TXs
test.state.key = Some(test_key());
assert!(matches!(
test.call_and_decode_err(test.update_serai_key_tx().1).await,
IRouterErrors::SeraiKeyWasNone(IRouter::SeraiKeyWasNone {})
));
/* TODO
assert!(matches!(
test.call_and_decode_err(test.execute_tx()).await,
IRouterErrors::SeraiKeyWasNone(IRouter::SeraiKeyWasNone {})
));
*/
assert!(matches!(
test.call_and_decode_err(test.escape_hatch_tx(Address::ZERO)).await,
IRouterErrors::SeraiKeyWasNone(IRouter::SeraiKeyWasNone {})
));
}
// And if there's no key to confirm, any operations requiring a signature shouldn't work
{
let mut test = Test::new().await;
test.confirm_next_serai_key().await;
test.state.next_key = Some(test_key());
assert!(matches!(
test.call_and_decode_err(test.confirm_next_serai_key_tx()).await,
IRouterErrors::SeraiKeyWasNone(IRouter::SeraiKeyWasNone {})
));
}
}
#[tokio::test]
async fn test_update_serai_key() {
let mut test = Test::new().await;
@ -421,7 +457,7 @@ async fn test_no_in_instruction_before_key() {
let (_coin, _amount, _shorthand, tx) = test.eth_in_instruction_tx();
assert!(matches!(
test.call_and_decode_err(tx).await,
IRouterErrors::InvalidSeraiKey(IRouter::InvalidSeraiKey {})
IRouterErrors::SeraiKeyWasNone(IRouter::SeraiKeyWasNone {})
));
}