From e016228d2b76fa367889c9d98d6eb9e783f98cb4 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 15 Mar 2024 04:26:00 -0400 Subject: Lingo: Pre-compile datafile to improve loading time (#2829) --- test/TestDatafile.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/TestDatafile.py (limited to 'test/TestDatafile.py') diff --git a/test/TestDatafile.py b/test/TestDatafile.py new file mode 100644 index 0000000..9f4e9da --- /dev/null +++ b/test/TestDatafile.py @@ -0,0 +1,16 @@ +import os +import unittest + +from worlds.lingo.static_logic import HASHES +from worlds.lingo.utils.pickle_static_data import hash_file + + +class TestDatafile(unittest.TestCase): + def test_check_hashes(self) -> None: + ll1_file_hash = hash_file(os.path.join(os.path.dirname(__file__), "..", "data", "LL1.yaml")) + ids_file_hash = hash_file(os.path.join(os.path.dirname(__file__), "..", "data", "ids.yaml")) + + self.assertEqual(ll1_file_hash, HASHES["LL1.yaml"], + "LL1.yaml hash does not match generated.dat. Please regenerate using 'python worlds/lingo/utils/pickle_static_data.py'") + self.assertEqual(ids_file_hash, HASHES["ids.yaml"], + "ids.yaml hash does not match generated.dat. Please regenerate using 'python worlds/lingo/utils/pickle_static_data.py'") -- cgit 1.4.1