mithril_common/messages/
aggregator_features.rsuse std::collections::BTreeSet;
use serde::{Deserialize, Serialize};
use crate::entities::SignedEntityTypeDiscriminants;
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct AggregatorFeaturesMessage {
pub open_api_version: String,
pub documentation_url: String,
pub capabilities: AggregatorCapabilities,
}
impl AggregatorFeaturesMessage {
pub fn dummy() -> Self {
AggregatorFeaturesMessage {
open_api_version: "0.0.1".to_string(),
documentation_url: "https://example.com".to_string(),
capabilities: AggregatorCapabilities {
signed_entity_types: BTreeSet::from([
SignedEntityTypeDiscriminants::MithrilStakeDistribution,
]),
cardano_transactions_prover: None,
},
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct AggregatorCapabilities {
pub signed_entity_types: BTreeSet<SignedEntityTypeDiscriminants>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cardano_transactions_prover: Option<CardanoTransactionsProverCapabilities>,
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct CardanoTransactionsProverCapabilities {
pub max_hashes_allowed_by_request: usize,
}
#[cfg(test)]
mod tests {
use crate::entities::CardanoTransactionsSigningConfig;
use super::*;
#[derive(Debug, Serialize, Deserialize, PartialEq)]
struct AggregatorFeaturesMessageUntilV0_1_45 {
pub open_api_version: String,
pub documentation_url: String,
pub capabilities: AggregatorCapabilitiesUntilV0_1_45,
}
#[derive(Debug, Serialize, Deserialize, PartialEq)]
struct AggregatorCapabilitiesUntilV0_1_45 {
pub signed_entity_types: BTreeSet<SignedEntityTypeDiscriminants>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cardano_transactions_prover: Option<CardanoTransactionsProverCapabilities>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cardano_transactions_signing_config: Option<CardanoTransactionsSigningConfig>,
}
fn golden_message_until_open_api_0_1_45() -> AggregatorFeaturesMessageUntilV0_1_45 {
AggregatorFeaturesMessageUntilV0_1_45 {
open_api_version: "0.0.1".to_string(),
documentation_url: "https://example.com".to_string(),
capabilities: AggregatorCapabilitiesUntilV0_1_45 {
signed_entity_types: BTreeSet::from([
SignedEntityTypeDiscriminants::CardanoTransactions,
]),
cardano_transactions_prover: Some(CardanoTransactionsProverCapabilities {
max_hashes_allowed_by_request: 100,
}),
cardano_transactions_signing_config: None,
},
}
}
fn golden_message_current() -> AggregatorFeaturesMessage {
AggregatorFeaturesMessage {
open_api_version: "0.0.1".to_string(),
documentation_url: "https://example.com".to_string(),
capabilities: AggregatorCapabilities {
signed_entity_types: BTreeSet::from([
SignedEntityTypeDiscriminants::CardanoTransactions,
]),
cardano_transactions_prover: Some(CardanoTransactionsProverCapabilities {
max_hashes_allowed_by_request: 100,
}),
},
}
}
const CURRENT_JSON: &str = r#"{
"open_api_version": "0.0.1",
"documentation_url": "https://example.com",
"capabilities": {
"signed_entity_types": ["CardanoTransactions"],
"cardano_transactions_prover": {
"max_hashes_allowed_by_request": 100
}
}
}"#;
#[test]
fn test_current_json_deserialized_into_message_supported_until_open_api_0_1_45() {
let json = CURRENT_JSON;
let message: AggregatorFeaturesMessageUntilV0_1_45 = serde_json::from_str(json).unwrap();
assert_eq!(golden_message_until_open_api_0_1_45(), message);
}
#[test]
fn test_current_json_deserialized_into_current_message() {
let json = CURRENT_JSON;
let message: AggregatorFeaturesMessage = serde_json::from_str(json).unwrap();
assert_eq!(golden_message_current(), message);
}
}