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
use async_trait::async_trait;

use crate::entities::Epoch;
use crate::era::{EraMarker, EraReaderAdapter, SupportedEra};
use crate::StdResult;

/// The goal of the bootstrap adapter is to advertise for the first existing Era
/// while it does not exist yet on any backend. This adapter is intended to be
/// removed once Eras are effectively written in a backend.
pub struct BootstrapAdapter;

#[async_trait]
impl EraReaderAdapter for BootstrapAdapter {
    async fn read(&self) -> StdResult<Vec<EraMarker>> {
        Ok(vec![EraMarker::new(
            &SupportedEra::eras().first().unwrap().to_string(),
            Some(Epoch(0)),
        )])
    }
}

#[cfg(test)]
mod tests {
    use crate::era::SupportedEra;

    use super::*;

    #[tokio::test]
    async fn bootstrap_adapter() {
        let adapter = BootstrapAdapter;

        assert_eq!(
            vec![EraMarker::new(
                &SupportedEra::dummy().to_string(),
                Some(Epoch(0))
            )],
            adapter
                .read()
                .await
                .expect("bootstrap adapter shall never fail")
        );
    }
}