-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2032 from input-output-hk/jpraynaud/fix-certifica…
…te-chain-chaining Fix: computation of the chaining of the certificates in tests
- Loading branch information
Showing
7 changed files
with
191 additions
and
72 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
mithril-common/src/certificate_chain/fake_certificate_retriever.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
//! A module used for a fake implementation of a certificate chain retriever | ||
//! | ||
use anyhow::anyhow; | ||
use async_trait::async_trait; | ||
use std::collections::HashMap; | ||
use tokio::sync::RwLock; | ||
|
||
use crate::entities::Certificate; | ||
|
||
use super::{CertificateRetriever, CertificateRetrieverError}; | ||
|
||
/// A fake [CertificateRetriever] that returns a [Certificate] given its hash | ||
pub struct FakeCertificaterRetriever { | ||
certificates_map: RwLock<HashMap<String, Certificate>>, | ||
} | ||
|
||
impl FakeCertificaterRetriever { | ||
/// Create a new [FakeCertificaterRetriever] | ||
pub fn from_certificates(certificates: &[Certificate]) -> Self { | ||
let certificates_map = certificates | ||
.iter() | ||
.map(|certificate| (certificate.hash.clone(), certificate.clone())) | ||
.collect::<HashMap<_, _>>(); | ||
let certificates_map = RwLock::new(certificates_map); | ||
|
||
Self { certificates_map } | ||
} | ||
} | ||
|
||
#[async_trait] | ||
impl CertificateRetriever for FakeCertificaterRetriever { | ||
async fn get_certificate_details( | ||
&self, | ||
certificate_hash: &str, | ||
) -> Result<Certificate, CertificateRetrieverError> { | ||
let certificates_map = self.certificates_map.read().await; | ||
certificates_map | ||
.get(certificate_hash) | ||
.cloned() | ||
.ok_or_else(|| CertificateRetrieverError(anyhow!("Certificate not found"))) | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use crate::test_utils::fake_data; | ||
|
||
use super::*; | ||
|
||
#[tokio::test] | ||
async fn fake_certificate_retriever_retrieves_existing_certificate() { | ||
let certificate = fake_data::certificate("certificate-hash-123".to_string()); | ||
let certificate_hash = certificate.hash.clone(); | ||
let certificate_retriever = | ||
FakeCertificaterRetriever::from_certificates(&[certificate.clone()]); | ||
|
||
let retrieved_certificate = certificate_retriever | ||
.get_certificate_details(&certificate_hash) | ||
.await | ||
.expect("Should retrieve certificate"); | ||
|
||
assert_eq!(retrieved_certificate, certificate); | ||
} | ||
|
||
#[tokio::test] | ||
async fn test_fake_certificate_fails_retrieving_unknow_certificate() { | ||
let certificate = fake_data::certificate("certificate-hash-123".to_string()); | ||
let certificate_retriever = FakeCertificaterRetriever::from_certificates(&[certificate]); | ||
|
||
let retrieved_certificate = certificate_retriever | ||
.get_certificate_details("certificate-hash-not-found") | ||
.await; | ||
|
||
retrieved_certificate.expect_err("get_certificate_details shoudl fail"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters