Produce a valid framed Raft snapshot chunk.
()
| 67 | |
| 68 | /// Produce a valid framed Raft snapshot chunk. |
| 69 | fn write_raft_chunk() -> Vec<u8> { |
| 70 | encode_snapshot_chunk(SnapshotEngineId::Columnar, b"snapshot-payload") |
| 71 | } |
| 72 | |
| 73 | /// Corrupt the last byte of a segment buffer (flips the footer CRC). |
| 74 | fn corrupt_last_byte(mut bytes: Vec<u8>) -> Vec<u8> { |
no test coverage detected