1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 10:14:06 +02:00

first prop flattening version

This commit is contained in:
Robin Appelman 2019-08-10 19:38:42 +02:00
commit 0c72934db4
9 changed files with 42570 additions and 83 deletions

65
tests/sendprops.rs Normal file
View file

@ -0,0 +1,65 @@
#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(unused_variables)]
use std::fs;
use pretty_assertions::assert_eq;
use tf_demo_parser::{Demo, DemoParser, MatchState, MessageTypeAnalyser, MessageType, ParserState};
use tf_demo_parser::demo::packet::datatable::{SendTable, SendTableName};
use tf_demo_parser::demo::packet::stringtable::StringTableEntry;
use tf_demo_parser::demo::message::Message;
use tf_demo_parser::demo::sendprop::SendPropDefinition;
use std::collections::{HashMap, HashSet};
use tf_demo_parser::demo::parser::MessageHandler;
pub struct SendPropAnalyser;
impl MessageHandler for SendPropAnalyser {
type Output = Vec<SendTable>;
fn does_handle(message_type: MessageType) -> bool {
false
}
fn handle_message(&mut self, message: Message, tick: u32) {}
fn handle_string_entry(&mut self, table: &String, _index: usize, entry: &StringTableEntry) {}
fn get_output(self, state: ParserState) -> Self::Output {
state.send_tables.into_iter().map(|(_k, v)| v).collect()
}
}
fn flatten_test(input_file: &str, snapshot_file: &str) {
let file = fs::read(input_file).expect("Unable to read file");
let demo = Demo::new(file);
let (_, send_tables) = DemoParser::parse_with_analyser(demo.get_stream(), SendPropAnalyser).unwrap();
let flat_props: HashMap<SendTableName, Vec<String>> = send_tables.iter()
.map(|table| {
(
table.name.clone(),
table.flatten_props(&send_tables)
.into_iter()
.map(|prop| format!("{}.{}", prop.owner_table, prop.name))
.collect()
)
})
.collect();
let expected: HashMap<SendTableName, Vec<String>> = serde_json::from_slice(fs::read(snapshot_file).expect("Unable to read file").as_slice()).unwrap();
let expected_tables: HashSet<_> = expected.keys().collect();
let actual_tables: HashSet<_> = flat_props.keys().collect();
assert_eq!(expected_tables, actual_tables);
for table in expected_tables {
dbg!(table);
assert_eq!(expected[table], flat_props[table]);
}
}
#[test]
fn sendprop_test_gully() {
flatten_test("data/gully.dem", "data/gully_props.json");
}