summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/TestDatafile.py16
1 files changed, 16 insertions, 0 deletions
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 @@
1import os
2import unittest
3
4from worlds.lingo.static_logic import HASHES
5from worlds.lingo.utils.pickle_static_data import hash_file
6
7
8class TestDatafile(unittest.TestCase):
9 def test_check_hashes(self) -> None:
10 ll1_file_hash = hash_file(os.path.join(os.path.dirname(__file__), "..", "data", "LL1.yaml"))
11 ids_file_hash = hash_file(os.path.join(os.path.dirname(__file__), "..", "data", "ids.yaml"))
12
13 self.assertEqual(ll1_file_hash, HASHES["LL1.yaml"],
14 "LL1.yaml hash does not match generated.dat. Please regenerate using 'python worlds/lingo/utils/pickle_static_data.py'")
15 self.assertEqual(ids_file_hash, HASHES["ids.yaml"],
16 "ids.yaml hash does not match generated.dat. Please regenerate using 'python worlds/lingo/utils/pickle_static_data.py'")