summary refs log tree commit diff stats
path: root/test/TestDatafile.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-03-15 04:26:00 -0400
committerGitHub <noreply@github.com>2024-03-15 09:26:00 +0100
commite016228d2b76fa367889c9d98d6eb9e783f98cb4 (patch)
tree5c4fd5427ee1c89a832b3327eef6d39d4ce82d82 /test/TestDatafile.py
parentfcb3b36f44a7d475aa49c5c44971a2b7cabc4ca8 (diff)
downloadlingo-apworld-e016228d2b76fa367889c9d98d6eb9e783f98cb4.tar.gz
lingo-apworld-e016228d2b76fa367889c9d98d6eb9e783f98cb4.tar.bz2
lingo-apworld-e016228d2b76fa367889c9d98d6eb9e783f98cb4.zip
Lingo: Pre-compile datafile to improve loading time (#2829)
Diffstat (limited to 'test/TestDatafile.py')
-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'")