mithril_aggregator/http_server/routes/
proof_routes.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
use serde::{Deserialize, Serialize};
use warp::Filter;

use crate::http_server::routes::middlewares;
use crate::http_server::routes::router::RouterState;

#[derive(Deserialize, Serialize, Debug)]
struct CardanoTransactionProofQueryParams {
    transaction_hashes: String,
}

impl CardanoTransactionProofQueryParams {
    pub fn split_transactions_hashes(&self) -> Vec<String> {
        self.transaction_hashes
            .split(',')
            .map(|s| s.to_string())
            .collect()
    }

    pub fn sanitize(&self) -> Vec<String> {
        let mut transaction_hashes = self.split_transactions_hashes();
        transaction_hashes.sort();
        transaction_hashes.dedup();
        transaction_hashes
    }
}

pub fn routes(
    router_state: &RouterState,
) -> impl Filter<Extract = (impl warp::Reply,), Error = warp::Rejection> + Clone {
    proof_cardano_transaction(router_state)
}

/// GET /proof/cardano-transaction
fn proof_cardano_transaction(
    router_state: &RouterState,
) -> impl Filter<Extract = (impl warp::Reply,), Error = warp::Rejection> + Clone {
    warp::path!("proof" / "cardano-transaction")
        .and(warp::get())
        .and(warp::query::<CardanoTransactionProofQueryParams>())
        .and(middlewares::with_logger(router_state))
        .and(middlewares::with_signed_entity_service(router_state))
        .and(middlewares::validators::with_prover_transactions_hash_validator(router_state))
        .and(middlewares::with_prover_service(router_state))
        .and(middlewares::with_metrics_service(router_state))
        .and_then(handlers::proof_cardano_transaction)
}

mod handlers {
    use mithril_common::{
        entities::{CardanoTransactionsSnapshot, SignedEntity},
        messages::CardanoTransactionsProofsMessage,
        StdResult,
    };
    use slog::{debug, warn, Logger};
    use std::{convert::Infallible, sync::Arc};
    use warp::http::StatusCode;

    use crate::{
        http_server::{routes::reply, validators::ProverTransactionsHashValidator},
        message_adapters::ToCardanoTransactionsProofsMessageAdapter,
        services::{ProverService, SignedEntityService},
        unwrap_to_internal_server_error, MetricsService,
    };

    use super::CardanoTransactionProofQueryParams;

    pub async fn proof_cardano_transaction(
        transaction_parameters: CardanoTransactionProofQueryParams,
        logger: Logger,
        signed_entity_service: Arc<dyn SignedEntityService>,
        validator: ProverTransactionsHashValidator,
        prover_service: Arc<dyn ProverService>,
        metrics_service: Arc<MetricsService>,
    ) -> Result<impl warp::Reply, Infallible> {
        metrics_service
            .get_proof_cardano_transaction_total_proofs_served_since_startup()
            .increment();

        let transaction_hashes = transaction_parameters.split_transactions_hashes();
        debug!(
            logger, ">> proof_cardano_transaction";
            "transaction_hashes" => &transaction_parameters.transaction_hashes
        );

        if let Err(error) = validator.validate(&transaction_hashes) {
            warn!(logger, "proof_cardano_transaction::bad_request");
            return Ok(reply::bad_request(error.label, error.message));
        }

        let sanitized_hashes = transaction_parameters.sanitize();

        // Fallback to 0, it should be impossible to have more than u32::MAX transactions.
        metrics_service
            .get_proof_cardano_transaction_total_transactions_served_since_startup()
            .increment_by(sanitized_hashes.len().try_into().unwrap_or(0));

        match unwrap_to_internal_server_error!(
            signed_entity_service
                .get_last_cardano_transaction_snapshot()
                .await,
            logger => "proof_cardano_transaction::error"
        ) {
            Some(signed_entity) => {
                let message = unwrap_to_internal_server_error!(
                    build_response_message(prover_service, signed_entity, sanitized_hashes).await,
                    logger => "proof_cardano_transaction"
                );
                Ok(reply::json(&message, StatusCode::OK))
            }
            None => {
                warn!(logger, "proof_cardano_transaction::not_found");
                Ok(reply::empty(StatusCode::NOT_FOUND))
            }
        }
    }

    pub async fn build_response_message(
        prover_service: Arc<dyn ProverService>,
        signed_entity: SignedEntity<CardanoTransactionsSnapshot>,
        transaction_hashes: Vec<String>,
    ) -> StdResult<CardanoTransactionsProofsMessage> {
        let transactions_set_proofs = prover_service
            .compute_transactions_proofs(
                signed_entity.artifact.block_number,
                transaction_hashes.as_slice(),
            )
            .await?;
        let message = ToCardanoTransactionsProofsMessageAdapter::try_adapt(
            signed_entity,
            transactions_set_proofs,
            transaction_hashes,
        )?;

        Ok(message)
    }
}

#[cfg(test)]
mod tests {
    use anyhow::anyhow;
    use serde_json::Value::Null;
    use std::sync::Arc;
    use std::vec;
    use warp::{
        http::{Method, StatusCode},
        test::request,
    };

    use mithril_common::{
        entities::{
            BlockNumber, CardanoTransactionsSetProof, CardanoTransactionsSnapshot, SignedEntity,
        },
        test_utils::{apispec::APISpec, assert_equivalent, fake_data},
    };

    use crate::{http_server::SERVER_BASE_PATH, services::MockProverService};
    use crate::{initialize_dependencies, services::MockSignedEntityService};

    use super::*;

    fn setup_router(
        state: RouterState,
    ) -> impl Filter<Extract = (impl warp::Reply,), Error = warp::Rejection> + Clone {
        let cors = warp::cors()
            .allow_any_origin()
            .allow_headers(vec!["content-type"])
            .allow_methods(vec![Method::GET, Method::POST, Method::OPTIONS]);

        warp::any()
            .and(warp::path(SERVER_BASE_PATH))
            .and(routes(&state).with(cors))
    }

    #[tokio::test]
    async fn build_response_message_return_latest_block_number_from_artifact_beacon() {
        // Arrange
        let mut mock_prover_service = MockProverService::new();
        mock_prover_service
            .expect_compute_transactions_proofs()
            .returning(|_, _| Ok(vec![CardanoTransactionsSetProof::dummy()]));

        let cardano_transactions_snapshot =
            CardanoTransactionsSnapshot::new(String::new(), BlockNumber(2309));

        let signed_entity = SignedEntity::<CardanoTransactionsSnapshot> {
            artifact: cardano_transactions_snapshot,
            ..SignedEntity::<CardanoTransactionsSnapshot>::dummy()
        };

        // Action
        let transaction_hashes = vec![];
        let message = handlers::build_response_message(
            Arc::new(mock_prover_service),
            signed_entity,
            transaction_hashes,
        )
        .await
        .unwrap();

        // Assert
        assert_eq!(message.latest_block_number, 2309)
    }

    #[tokio::test]
    async fn test_proof_cardano_transaction_increments_proofs_metrics() {
        let method = Method::GET.as_str();
        let path = "/proof/cardano-transaction";
        let dependency_manager = Arc::new(initialize_dependencies().await);
        let initial_proofs_counter_value = dependency_manager
            .metrics_service
            .get_proof_cardano_transaction_total_proofs_served_since_startup()
            .get();
        let initial_transactions_counter_value = dependency_manager
            .metrics_service
            .get_proof_cardano_transaction_total_transactions_served_since_startup()
            .get();

        request()
            .method(method)
            .path(&format!(
                "/{SERVER_BASE_PATH}{path}?transaction_hashes={},{},{}",
                fake_data::transaction_hashes()[0],
                fake_data::transaction_hashes()[1],
                fake_data::transaction_hashes()[2]
            ))
            .reply(&setup_router(RouterState::new_with_dummy_config(
                dependency_manager.clone(),
            )))
            .await;

        assert_eq!(
            initial_proofs_counter_value + 1,
            dependency_manager
                .metrics_service
                .get_proof_cardano_transaction_total_proofs_served_since_startup()
                .get()
        );
        assert_eq!(
            initial_transactions_counter_value + 3,
            dependency_manager
                .metrics_service
                .get_proof_cardano_transaction_total_transactions_served_since_startup()
                .get()
        );
    }

    #[tokio::test]
    async fn proof_cardano_transaction_ok() {
        let mut dependency_manager = initialize_dependencies().await;
        let mut mock_signed_entity_service = MockSignedEntityService::new();
        mock_signed_entity_service
            .expect_get_last_cardano_transaction_snapshot()
            .returning(|| Ok(Some(SignedEntity::<CardanoTransactionsSnapshot>::dummy())));
        dependency_manager.signed_entity_service = Arc::new(mock_signed_entity_service);

        let mut mock_prover_service = MockProverService::new();
        mock_prover_service
            .expect_compute_transactions_proofs()
            .returning(|_, _| Ok(vec![CardanoTransactionsSetProof::dummy()]));
        dependency_manager.prover_service = Arc::new(mock_prover_service);

        let method = Method::GET.as_str();
        let path = "/proof/cardano-transaction";

        let response = request()
            .method(method)
            .path(&format!(
                "/{SERVER_BASE_PATH}{path}?transaction_hashes={},{}",
                fake_data::transaction_hashes()[0],
                fake_data::transaction_hashes()[1]
            ))
            .reply(&setup_router(RouterState::new_with_dummy_config(Arc::new(
                dependency_manager,
            ))))
            .await;

        APISpec::verify_conformity(
            APISpec::get_all_spec_files(),
            method,
            path,
            "application/json",
            &Null,
            &response,
            &StatusCode::OK,
        )
        .unwrap();
    }

    #[tokio::test]
    async fn proof_cardano_transaction_not_found() {
        let dependency_manager = initialize_dependencies().await;

        let method = Method::GET.as_str();
        let path = "/proof/cardano-transaction";

        let response = request()
            .method(method)
            .path(&format!(
                "/{SERVER_BASE_PATH}{path}?transaction_hashes={},{}",
                fake_data::transaction_hashes()[0],
                fake_data::transaction_hashes()[1]
            ))
            .reply(&setup_router(RouterState::new_with_dummy_config(Arc::new(
                dependency_manager,
            ))))
            .await;

        APISpec::verify_conformity(
            APISpec::get_all_spec_files(),
            method,
            path,
            "application/json",
            &Null,
            &response,
            &StatusCode::NOT_FOUND,
        )
        .unwrap();
    }

    #[tokio::test]
    async fn proof_cardano_transaction_ko() {
        let mut dependency_manager = initialize_dependencies().await;
        let mut mock_signed_entity_service = MockSignedEntityService::new();
        mock_signed_entity_service
            .expect_get_last_cardano_transaction_snapshot()
            .returning(|| Err(anyhow!("Error")));
        dependency_manager.signed_entity_service = Arc::new(mock_signed_entity_service);

        let method = Method::GET.as_str();
        let path = "/proof/cardano-transaction";

        let response = request()
            .method(method)
            .path(&format!(
                "/{SERVER_BASE_PATH}{path}?transaction_hashes={},{}",
                fake_data::transaction_hashes()[0],
                fake_data::transaction_hashes()[1]
            ))
            .reply(&setup_router(RouterState::new_with_dummy_config(Arc::new(
                dependency_manager,
            ))))
            .await;

        APISpec::verify_conformity(
            APISpec::get_all_spec_files(),
            method,
            path,
            "application/json",
            &Null,
            &response,
            &StatusCode::INTERNAL_SERVER_ERROR,
        )
        .unwrap();
    }

    #[tokio::test]
    async fn proof_cardano_transaction_return_bad_request_with_invalid_hashes() {
        let dependency_manager = initialize_dependencies().await;

        let method = Method::GET.as_str();
        let path = "/proof/cardano-transaction";

        let response = request()
            .method(method)
            .path(&format!(
                "/{SERVER_BASE_PATH}{path}?transaction_hashes=invalid%3A%2F%2Fid,,tx-456"
            ))
            .reply(&setup_router(RouterState::new_with_dummy_config(Arc::new(
                dependency_manager,
            ))))
            .await;

        APISpec::verify_conformity(
            APISpec::get_all_spec_files(),
            method,
            path,
            "application/json",
            &Null,
            &response,
            &StatusCode::BAD_REQUEST,
        )
        .unwrap();
    }

    #[tokio::test]
    async fn proof_cardano_transaction_route_deduplicate_hashes() {
        let tx = fake_data::transaction_hashes()[0].to_string();
        let mut dependency_manager = initialize_dependencies().await;
        let mut mock_signed_entity_service = MockSignedEntityService::new();
        mock_signed_entity_service
            .expect_get_last_cardano_transaction_snapshot()
            .returning(|| Ok(Some(SignedEntity::<CardanoTransactionsSnapshot>::dummy())));
        dependency_manager.signed_entity_service = Arc::new(mock_signed_entity_service);

        let mut mock_prover_service = MockProverService::new();
        let txs_expected = vec![tx.clone()];
        mock_prover_service
            .expect_compute_transactions_proofs()
            .withf(move |_, transaction_hashes| transaction_hashes == txs_expected)
            .returning(|_, _| Ok(vec![CardanoTransactionsSetProof::dummy()]));
        dependency_manager.prover_service = Arc::new(mock_prover_service);

        let method = Method::GET.as_str();
        let path = "/proof/cardano-transaction";

        let response = request()
            .method(method)
            .path(&format!(
                "/{SERVER_BASE_PATH}{path}?transaction_hashes={tx},{tx}",
            ))
            .reply(&setup_router(RouterState::new_with_dummy_config(Arc::new(
                dependency_manager,
            ))))
            .await;

        assert_eq!(StatusCode::OK, response.status());
    }

    #[test]
    fn sanitize_cardano_transaction_proof_query_params_remove_duplicate() {
        let tx1 = fake_data::transaction_hashes()[0].to_string();
        let tx2 = fake_data::transaction_hashes()[1].to_string();

        // We are testing on an unordered list of transaction hashes
        // as some rust dedup methods only remove consecutive duplicates
        let params = CardanoTransactionProofQueryParams {
            transaction_hashes: format!("{tx1},{tx2},{tx2},{tx1},{tx2}",),
        };

        assert_equivalent(params.sanitize(), vec![tx1, tx2]);
    }
}