X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=tests%2Futils.py;h=a42b3f3ba61b1e28031bf35dca1d263048495830;hb=b0758d1c63db38867ef12ee89317524a7436129d;hp=69037cc8b5d628a8da68e4d3f40921b3d80f2c7c;hpb=5afb47e3aaed921997d11abf88a81602700639f3;p=plomtask diff --git a/tests/utils.py b/tests/utils.py index 69037cc..a42b3f3 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -44,6 +44,8 @@ class TestCaseWithDB(TestCase): """Module tests not requiring DB setup.""" checked_class: Any default_ids: tuple[int | str, int | str, int | str] = (1, 2, 3) + default_init_kwargs: dict[str, Any] = {} + test_versioneds: dict[str, type] = {} def setUp(self) -> None: Condition.empty_cache() @@ -59,6 +61,17 @@ class TestCaseWithDB(TestCase): self.db_conn.close() remove_file(self.db_file.path) + def test_saving_and_caching(self) -> None: + """Test storage and initialization of instances and attributes.""" + if not hasattr(self, 'checked_class'): + return + self.check_saving_and_caching(id_=1, **self.default_init_kwargs) + obj = self.checked_class(None, **self.default_init_kwargs) + obj.save(self.db_conn) + self.assertEqual(obj.id_, 2) + for k, v in self.test_versioneds.items(): + self.check_saving_of_versioned(k, v) + def check_storage(self, content: list[Any]) -> None: """Test cache and DB equal content.""" expected_cache = {}