Mercurial > games > semicongine
diff 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 |
line wrap: on
line diff
--- a/tests/test_storage.nim Tue Apr 01 00:26:49 2025 +0700 +++ b/tests/test_storage.nim Wed Apr 02 00:49:02 2025 +0700 @@ -14,9 +14,14 @@ store(storage, KEY, TEST_VALUE) assert storage.load(KEY, 0) == TEST_VALUE +type ID = distinct int +proc `==`(a, b: ID): bool = + `==`(int(a), int(b)) + proc testWorldAPI() = type Obj1 = object value: int + id: ID type Obj2 = object a: string @@ -27,16 +32,18 @@ assert listWorlds().len == 0 - const obj1 = Obj1(value: 42) + const obj1 = Obj1(value: 42, id: ID(1)) "testWorld".storeWorld(obj1) assert listWorlds() == @["testWorld"] assert loadWorld[Obj1]("testWorld") == obj1 const obj2 = Obj2( a: "Hello world", - b: Obj1(value: 20), + b: Obj1(value: 20, id: ID(20)), c: @[1, 2, 3, 4], - d: [Obj1(value: 1), Obj1(value: 2), Obj1(value: 3)], + d: [ + Obj1(value: 1, id: ID(11)), Obj1(value: 2, id: ID(22)), Obj1(value: 3, id: ID(33)) + ], e: true, ) "testWorld".storeWorld(obj2)