LCOV - code coverage report
Current view: top level - safekeeper/tests/walproposer_sim - simulation_logs.rs (source / functions) Coverage Total Hit
Test: 2aa98e37cd3250b9a68c97ef6050b16fe702ab33.info Lines: 94.5 % 109 103
Test Date: 2024-08-29 11:33:10 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       252322 :     fn default() -> Self {
      13       252322 :         Self::Unknown
      14       252322 :     }
      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       446460 :     fn init_kind(&mut self, kind: NodeKind) {
      34       446460 :         if self.kind == NodeKind::Unknown {
      35       252330 :             self.kind = kind;
      36       252330 :         } else {
      37       194130 :             assert!(self.kind == kind);
      38              :         }
      39       446460 :     }
      40              : 
      41       446460 :     fn started(&mut self, data: &str) {
      42       446460 :         let mut parts = data.split(';');
      43       446460 :         assert!(parts.next().unwrap() == "started");
      44       446460 :         match parts.next().unwrap() {
      45       446460 :             "safekeeper" => {
      46       230148 :                 self.init_kind(NodeKind::Safekeeper);
      47       230148 :             }
      48       216312 :             "walproposer" => {
      49       216312 :                 self.init_kind(NodeKind::WalProposer);
      50       216312 :                 let is_sync: u8 = parts.next().unwrap().parse().unwrap();
      51       216312 :                 self.is_sync = is_sync != 0;
      52       216312 :             }
      53            0 :             _ => unreachable!(),
      54              :         }
      55       446460 :     }
      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        12006 :     fn new() -> Self {
      72        12006 :         Default::default()
      73        12006 :     }
      74              : 
      75       857836 :     fn get(&mut self, id: u32) -> &mut NodeInfo {
      76       857836 :         let id = id as usize;
      77       857836 :         if id >= self.nodes.len() {
      78       252322 :             self.nodes.resize(id + 1, NodeInfo::default());
      79       605514 :         }
      80       857836 :         &mut self.nodes[id]
      81       857836 :     }
      82              : }
      83              : 
      84              : /// Try to find inconsistencies in the simulation log.
      85        12006 : pub fn validate_events(events: Vec<SimEvent>) {
      86        12006 :     const INITDB_LSN: u64 = 21623024;
      87        12006 : 
      88        12006 :     let hook = std::panic::take_hook();
      89              :     scopeguard::defer_on_success! {
      90              :         std::panic::set_hook(hook);
      91              :     };
      92              : 
      93        12006 :     let mut state = GlobalState::new();
      94        12006 :     state.max_write_lsn = INITDB_LSN;
      95              : 
      96       664154 :     for event in events {
      97       652148 :         debug!("{:?}", event);
      98              : 
      99       652148 :         let node = state.get(event.node);
     100       652148 :         if event.data.starts_with("started;") {
     101       446460 :             node.started(&event.data);
     102       446460 :             continue;
     103       205688 :         }
     104       205688 :         assert!(node.kind != NodeKind::Unknown);
     105              : 
     106              :         // drop reference to unlock state
     107       205688 :         let mut node = node.clone();
     108       205688 : 
     109       205688 :         let mut parts = event.data.split(';');
     110       205688 :         match node.kind {
     111       172902 :             NodeKind::Safekeeper => match parts.next().unwrap() {
     112       172902 :                 "tli_loaded" => {
     113       172902 :                     let flush_lsn: u64 = parts.next().unwrap().parse().unwrap();
     114       172902 :                     let commit_lsn: u64 = parts.next().unwrap().parse().unwrap();
     115       172902 :                     node.flush_lsn = flush_lsn;
     116       172902 :                     node.commit_lsn = commit_lsn;
     117       172902 :                 }
     118            0 :                 _ => unreachable!(),
     119              :             },
     120              :             NodeKind::WalProposer => {
     121        32786 :                 match parts.next().unwrap() {
     122        32786 :                     "prop_elected" => {
     123        17142 :                         let prop_lsn: u64 = parts.next().unwrap().parse().unwrap();
     124        17142 :                         let prop_term: u64 = parts.next().unwrap().parse().unwrap();
     125        17142 :                         let prev_lsn: u64 = parts.next().unwrap().parse().unwrap();
     126        17142 :                         let prev_term: u64 = parts.next().unwrap().parse().unwrap();
     127        17142 : 
     128        17142 :                         assert!(prop_lsn >= prev_lsn);
     129        17142 :                         assert!(prop_term >= prev_term);
     130              : 
     131        17142 :                         assert!(prop_lsn >= state.commit_lsn);
     132              : 
     133        17142 :                         if prop_lsn > state.write_lsn {
     134         1185 :                             assert!(prop_lsn <= state.max_write_lsn);
     135         1185 :                             debug!(
     136            0 :                                 "moving write_lsn up from {} to {}",
     137              :                                 state.write_lsn, prop_lsn
     138              :                             );
     139         1185 :                             state.write_lsn = prop_lsn;
     140        15957 :                         }
     141        17142 :                         if prop_lsn < state.write_lsn {
     142         2814 :                             debug!(
     143            0 :                                 "moving write_lsn down from {} to {}",
     144              :                                 state.write_lsn, prop_lsn
     145              :                             );
     146         2814 :                             state.write_lsn = prop_lsn;
     147        14328 :                         }
     148              : 
     149        17142 :                         node.epoch_lsn = prop_lsn;
     150        17142 :                         node.term = prop_term;
     151              :                     }
     152        15644 :                     "write_wal" => {
     153         8082 :                         assert!(!node.is_sync);
     154         8082 :                         let start_lsn: u64 = parts.next().unwrap().parse().unwrap();
     155         8082 :                         let end_lsn: u64 = parts.next().unwrap().parse().unwrap();
     156         8082 :                         let cnt: u64 = parts.next().unwrap().parse().unwrap();
     157         8082 : 
     158         8082 :                         let size = end_lsn - start_lsn;
     159         8082 :                         state.written_wal += size;
     160         8082 :                         state.written_records += cnt;
     161         8082 : 
     162         8082 :                         // TODO: If we allow writing WAL before winning the election
     163         8082 : 
     164         8082 :                         assert!(start_lsn >= state.commit_lsn);
     165         8082 :                         assert!(end_lsn >= start_lsn);
     166              :                         // assert!(start_lsn == state.write_lsn);
     167         8082 :                         state.write_lsn = end_lsn;
     168         8082 : 
     169         8082 :                         if end_lsn > state.max_write_lsn {
     170         6715 :                             state.max_write_lsn = end_lsn;
     171         6715 :                         }
     172              :                     }
     173         7562 :                     "commit_lsn" => {
     174         7562 :                         let lsn: u64 = parts.next().unwrap().parse().unwrap();
     175         7562 :                         assert!(lsn >= state.commit_lsn);
     176         7562 :                         state.commit_lsn = lsn;
     177              :                     }
     178            0 :                     _ => unreachable!(),
     179              :                 }
     180              :             }
     181            0 :             _ => unreachable!(),
     182              :         }
     183              : 
     184              :         // update the node in the state struct
     185       205688 :         *state.get(event.node) = node;
     186              :     }
     187        12006 : }
        

Generated by: LCOV version 2.1-beta