Mercurial > games > semicongine
annotate tests/test_storage.nim @ 1470:63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
author | sam <sam@basx.dev> |
---|---|
date | Wed, 02 Apr 2025 00:49:02 +0700 |
parents | cbca94a95736 |
children |
rev | line source |
---|---|
1286
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
1 import std/strformat |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
2 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
3 import ../semicongine |
1427 | 4 import ../semicongine/storage |
1286
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
5 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
6 proc testSimple(storage: StorageType) = |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
7 const TEST_VALUE = 42 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
8 const KEY = "test" |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
9 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
10 # get default |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
11 assert storage.load(KEY, 0) == default(type(TEST_VALUE)) |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
12 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
13 # save and load custom |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
14 store(storage, KEY, TEST_VALUE) |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
15 assert storage.load(KEY, 0) == TEST_VALUE |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
16 |
1470
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
17 type ID = distinct int |
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
18 proc `==`(a, b: ID): bool = |
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
19 `==`(int(a), int(b)) |
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
20 |
1464 | 21 proc testWorldAPI() = |
1465 | 22 type Obj1 = object |
23 value: int | |
1470
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
24 id: ID |
1465 | 25 |
26 type Obj2 = object | |
1468 | 27 a: string |
28 b: Obj1 | |
29 c: seq[int] | |
30 d: array[3, Obj1] | |
31 e: bool | |
1465 | 32 |
1464 | 33 assert listWorlds().len == 0 |
34 | |
1470
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
35 const obj1 = Obj1(value: 42, id: ID(1)) |
1465 | 36 "testWorld".storeWorld(obj1) |
1464 | 37 assert listWorlds() == @["testWorld"] |
1465 | 38 assert loadWorld[Obj1]("testWorld") == obj1 |
1464 | 39 |
1468 | 40 const obj2 = Obj2( |
41 a: "Hello world", | |
1470
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
42 b: Obj1(value: 20, id: ID(20)), |
1468 | 43 c: @[1, 2, 3, 4], |
1470
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
44 d: [ |
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
45 Obj1(value: 1, id: ID(11)), Obj1(value: 2, id: ID(22)), Obj1(value: 3, id: ID(33)) |
63364723d460
fix: make de-/serialization work with all kinds of weird object configurtions
sam <sam@basx.dev>
parents:
1468
diff
changeset
|
46 ], |
1468 | 47 e: true, |
48 ) | |
1465 | 49 "testWorld".storeWorld(obj2) |
1464 | 50 assert listWorlds() == @["testWorld"] |
1465 | 51 assert loadWorld[Obj2]("testWorld") == obj2 |
1464 | 52 |
1465 | 53 "earth".storeWorld(obj2) |
1464 | 54 assert "earth" in listWorlds() |
55 assert "testWorld" in listWorlds() | |
1465 | 56 assert loadWorld[Obj2]("earth") == obj2 |
1464 | 57 |
58 "earth".purgeWorld() | |
59 assert listWorlds() == @["testWorld"] | |
60 | |
61 "testWorld".purgeWorld() | |
62 assert listWorlds().len == 0 | |
63 | |
1286
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
64 proc stressTest(storage: StorageType) = |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
65 for i in 1 .. 10000: |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
66 let key = &"key-{i}" |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
67 store(storage, key, i) |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
68 assert storage.load(key, 0) == i |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
69 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
70 proc main() = |
1423
3b8a736c45a7
did: put almost all global state into a single struct
sam <sam@basx.dev>
parents:
1332
diff
changeset
|
71 initEngine("Test storage") |
1286
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
72 SystemStorage.purge() |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
73 echo "SystemStorage: Testing simple store/load" |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
74 SystemStorage.testSimple() |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
75 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
76 UserStorage.purge() |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
77 echo "UserStorage: Testing simple store/load" |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
78 UserStorage.testSimple() |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
79 |
1464 | 80 echo "Testing world-storage API" |
81 testWorldAPI() | |
82 | |
1286
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
83 echo "Stress test with 10'000 saves/loads" |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
84 SystemStorage.stressTest() |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
85 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
86 SystemStorage.purge() |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
87 UserStorage.purge() |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
88 |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
89 when isMainModule: |
ad9091fde244
add: storage tests, fix something not worth mentioning
sam <sam@basx.dev>
parents:
diff
changeset
|
90 main() |