LCOV - code coverage report
Current view: top level - safekeeper/tests/walproposer_sim - simulation_logs.rs (source / functions) Coverage Total Hit
Test: c789ec21f6053d4c25d2419c4a34ed298d5f69f5.info Lines: 94.5 % 109 103
Test Date: 2024-06-20 08:12:09 Functions: 33.3 % 18 6

            Line data    Source code
       1              : use desim::proto::SimEvent;
       2              : use tracing::debug;
       3              : 
       4              : #[derive(Debug, Clone, PartialEq, Eq)]
       5              : enum NodeKind {
       6              :     Unknown,
       7              :     Safekeeper,
       8              :     WalProposer,
       9              : }
      10              : 
      11              : impl Default for NodeKind {
      12        83950 :     fn default() -> Self {
      13        83950 :         Self::Unknown
      14        83950 :     }
      15              : }
      16              : 
      17              : /// Simulation state of walproposer/safekeeper, derived from the simulation logs.
      18              : #[derive(Clone, Debug, Default)]
      19              : struct NodeInfo {
      20              :     kind: NodeKind,
      21              : 
      22              :     // walproposer
      23              :     is_sync: bool,
      24              :     term: u64,
      25              :     epoch_lsn: u64,
      26              : 
      27              :     // safekeeper
      28              :     commit_lsn: u64,
      29              :     flush_lsn: u64,
      30              : }
      31              : 
      32              : impl NodeInfo {
      33       148597 :     fn init_kind(&mut self, kind: NodeKind) {
      34       148597 :         if self.kind == NodeKind::Unknown {
      35        83953 :             self.kind = kind;
      36        83953 :         } else {
      37        64644 :             assert!(self.kind == kind);
      38              :         }
      39       148597 :     }
      40              : 
      41       148597 :     fn started(&mut self, data: &str) {
      42       148597 :         let mut parts = data.split(';');
      43       148597 :         assert!(parts.next().unwrap() == "started");
      44       148597 :         match parts.next().unwrap() {
      45       148597 :             "safekeeper" => {
      46        76650 :                 self.init_kind(NodeKind::Safekeeper);
      47        76650 :             }
      48        71947 :             "walproposer" => {
      49        71947 :                 self.init_kind(NodeKind::WalProposer);
      50        71947 :                 let is_sync: u8 = parts.next().unwrap().parse().unwrap();
      51        71947 :                 self.is_sync = is_sync != 0;
      52        71947 :             }
      53            0 :             _ => unreachable!(),
      54              :         }
      55       148597 :     }
      56              : }
      57              : 
      58              : /// Global state of the simulation, derived from the simulation logs.
      59              : #[derive(Debug, Default)]
      60              : struct GlobalState {
      61              :     nodes: Vec<NodeInfo>,
      62              :     commit_lsn: u64,
      63              :     write_lsn: u64,
      64              :     max_write_lsn: u64,
      65              : 
      66              :     written_wal: u64,
      67              :     written_records: u64,
      68              : }
      69              : 
      70              : impl GlobalState {
      71         4002 :     fn new() -> Self {
      72         4002 :         Default::default()
      73         4002 :     }
      74              : 
      75       284687 :     fn get(&mut self, id: u32) -> &mut NodeInfo {
      76       284687 :         let id = id as usize;
      77       284687 :         if id >= self.nodes.len() {
      78        83950 :             self.nodes.resize(id + 1, NodeInfo::default());
      79       200737 :         }
      80       284687 :         &mut self.nodes[id]
      81       284687 :     }
      82              : }
      83              : 
      84              : /// Try to find inconsistencies in the simulation log.
      85         4002 : pub fn validate_events(events: Vec<SimEvent>) {
      86         4002 :     const INITDB_LSN: u64 = 21623024;
      87         4002 : 
      88         4002 :     let hook = std::panic::take_hook();
      89              :     scopeguard::defer_on_success! {
      90              :         std::panic::set_hook(hook);
      91              :     };
      92              : 
      93         4002 :     let mut state = GlobalState::new();
      94         4002 :     state.max_write_lsn = INITDB_LSN;
      95              : 
      96       220644 :     for event in events {
      97       216642 :         debug!("{:?}", event);
      98              : 
      99       216642 :         let node = state.get(event.node);
     100       216642 :         if event.data.starts_with("started;") {
     101       148597 :             node.started(&event.data);
     102       148597 :             continue;
     103        68045 :         }
     104        68045 :         assert!(node.kind != NodeKind::Unknown);
     105              : 
     106              :         // drop reference to unlock state
     107        68045 :         let mut node = node.clone();
     108        68045 : 
     109        68045 :         let mut parts = event.data.split(';');
     110        68045 :         match node.kind {
     111        57548 :             NodeKind::Safekeeper => match parts.next().unwrap() {
     112        57548 :                 "tli_loaded" => {
     113        57548 :                     let flush_lsn: u64 = parts.next().unwrap().parse().unwrap();
     114        57548 :                     let commit_lsn: u64 = parts.next().unwrap().parse().unwrap();
     115        57548 :                     node.flush_lsn = flush_lsn;
     116        57548 :                     node.commit_lsn = commit_lsn;
     117        57548 :                 }
     118            0 :                 _ => unreachable!(),
     119              :             },
     120              :             NodeKind::WalProposer => {
     121        10497 :                 match parts.next().unwrap() {
     122        10497 :                     "prop_elected" => {
     123         5410 :                         let prop_lsn: u64 = parts.next().unwrap().parse().unwrap();
     124         5410 :                         let prop_term: u64 = parts.next().unwrap().parse().unwrap();
     125         5410 :                         let prev_lsn: u64 = parts.next().unwrap().parse().unwrap();
     126         5410 :                         let prev_term: u64 = parts.next().unwrap().parse().unwrap();
     127         5410 : 
     128         5410 :                         assert!(prop_lsn >= prev_lsn);
     129         5410 :                         assert!(prop_term >= prev_term);
     130              : 
     131         5410 :                         assert!(prop_lsn >= state.commit_lsn);
     132              : 
     133         5410 :                         if prop_lsn > state.write_lsn {
     134          371 :                             assert!(prop_lsn <= state.max_write_lsn);
     135          371 :                             debug!(
     136            0 :                                 "moving write_lsn up from {} to {}",
     137              :                                 state.write_lsn, prop_lsn
     138              :                             );
     139          371 :                             state.write_lsn = prop_lsn;
     140         5039 :                         }
     141         5410 :                         if prop_lsn < state.write_lsn {
     142          941 :                             debug!(
     143            0 :                                 "moving write_lsn down from {} to {}",
     144              :                                 state.write_lsn, prop_lsn
     145              :                             );
     146          941 :                             state.write_lsn = prop_lsn;
     147         4469 :                         }
     148              : 
     149         5410 :                         node.epoch_lsn = prop_lsn;
     150         5410 :                         node.term = prop_term;
     151              :                     }
     152         5087 :                     "write_wal" => {
     153         2620 :                         assert!(!node.is_sync);
     154         2620 :                         let start_lsn: u64 = parts.next().unwrap().parse().unwrap();
     155         2620 :                         let end_lsn: u64 = parts.next().unwrap().parse().unwrap();
     156         2620 :                         let cnt: u64 = parts.next().unwrap().parse().unwrap();
     157         2620 : 
     158         2620 :                         let size = end_lsn - start_lsn;
     159         2620 :                         state.written_wal += size;
     160         2620 :                         state.written_records += cnt;
     161         2620 : 
     162         2620 :                         // TODO: If we allow writing WAL before winning the election
     163         2620 : 
     164         2620 :                         assert!(start_lsn >= state.commit_lsn);
     165         2620 :                         assert!(end_lsn >= start_lsn);
     166              :                         // assert!(start_lsn == state.write_lsn);
     167         2620 :                         state.write_lsn = end_lsn;
     168         2620 : 
     169         2620 :                         if end_lsn > state.max_write_lsn {
     170         2161 :                             state.max_write_lsn = end_lsn;
     171         2161 :                         }
     172              :                     }
     173         2467 :                     "commit_lsn" => {
     174         2467 :                         let lsn: u64 = parts.next().unwrap().parse().unwrap();
     175         2467 :                         assert!(lsn >= state.commit_lsn);
     176         2467 :                         state.commit_lsn = lsn;
     177              :                     }
     178            0 :                     _ => unreachable!(),
     179              :                 }
     180              :             }
     181            0 :             _ => unreachable!(),
     182              :         }
     183              : 
     184              :         // update the node in the state struct
     185        68045 :         *state.get(event.node) = node;
     186              :     }
     187         4002 : }
        

Generated by: LCOV version 2.1-beta