1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
|
# (C) Copyright 2005-2025 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
"""Unit tests for the state pickler and unpickler.
"""
import base64
import pickle
import unittest
import math
import os
import tempfile
try:
import numpy
except ImportError:
raise unittest.SkipTest("Can't import NumPy: skipping")
from traits.api import (
Bool,
Int,
Array,
Float,
Complex,
Any,
Str,
Instance,
Tuple,
List,
Dict,
HasTraits,
)
try:
from tvtk.api import tvtk
except ImportError:
TVTK_AVAILABLE = False
else:
TVTK_AVAILABLE = True
from apptools.persistence import state_pickler
# A simple class to test instances.
class A(object):
def __init__(self):
self.a = "a"
# NOTE: I think that TVTK specific testing should be moved to the
# TVTK package.
# A classic class for testing the pickler.
class TestClassic:
def __init__(self):
self.b = False
self.i = 7
self.longi = 1234567890123456789
self.f = math.pi
self.c = complex(1.01234, 2.3)
self.n = None
self.s = "String"
self.u = "Unicode"
self.inst = A()
self.tuple = (1, 2, "a", A())
self.list = [1, 1.1, "a", 1j, self.inst]
self.pure_list = list(range(5))
self.dict = {"a": 1, "b": 2, "ref": self.inst}
self.numeric = numpy.ones((2, 2, 2), "f")
self.ref = self.numeric
if TVTK_AVAILABLE:
self._tvtk = tvtk.Property()
# A class with traits for testing the pickler.
class TestTraits(HasTraits):
b = Bool(False)
i = Int(7)
longi = Int(12345678901234567890)
f = Float(math.pi)
c = Complex(complex(1.01234, 2.3))
n = Any
s = Str("String")
u = Str("Unicode")
inst = Instance(A)
tuple = Tuple
list = List
pure_list = List(list(range(5)))
dict = Dict
numeric = Array(value=numpy.ones((2, 2, 2), "f"))
ref = Array
if TVTK_AVAILABLE:
_tvtk = Instance(tvtk.Property, ())
def __init__(self):
self.inst = A()
self.tuple = (1, 2, "a", A())
self.list = [1, 1.1, "a", 1j, self.inst]
self.dict = {"a": 1, "b": 2, "ref": self.inst}
self.ref = self.numeric
class TestDictPickler(unittest.TestCase):
def set_object(self, obj):
"""Changes the objects properties to test things."""
obj.b = True
obj.i = 8
obj.s = "string"
obj.u = "unicode"
obj.inst.a = "b"
obj.list[0] = 2
obj.tuple[-1].a = "t"
obj.dict["a"] = 10
if TVTK_AVAILABLE:
obj._tvtk.trait_set(
point_size=3, specular_color=(1, 0, 0), representation="w"
)
def _check_instance_and_references(self, obj, data):
"""Asserts that there is one instance and two references in the state.
We need this as there isn't a guarantee as to which will be the
reference and which will be the instance.
"""
inst = data["inst"]
list_end = data["list"]["data"][-1]
dict_ref = data["dict"]["data"]["ref"]
all_inst = [inst, list_end, dict_ref]
types = [x["type"] for x in all_inst]
self.assertEqual(types.count("instance"), 1)
self.assertEqual(types.count("reference"), 2)
inst_state = all_inst[types.index("instance")]
self.assertEqual(inst_state["data"]["data"]["a"], "b")
def verify(self, obj, state):
data = state["data"]
self.assertEqual(state["class_name"], obj.__class__.__name__)
data = data["data"]
self.assertEqual(data["b"], obj.b)
self.assertEqual(data["i"], obj.i)
self.assertEqual(data["longi"], obj.longi)
self.assertEqual(data["f"], obj.f)
self.assertEqual(data["c"], obj.c)
self.assertEqual(data["n"], obj.n)
self.assertEqual(data["s"], obj.s)
self.assertEqual(data["u"], obj.u)
tup = data["tuple"]["data"]
self.assertEqual(tup[:-1], obj.tuple[:-1])
self.assertEqual(tup[-1]["data"]["data"]["a"], "t")
lst = data["list"]["data"]
self.assertEqual(lst[:-1], obj.list[:-1])
pure_lst = data["pure_list"]["data"]
self.assertEqual(pure_lst, obj.pure_list)
dct = data["dict"]["data"]
self.assertEqual(dct["a"], obj.dict["a"])
self.assertEqual(dct["b"], obj.dict["b"])
self._check_instance_and_references(obj, data)
num_attr = "numeric" if data["numeric"]["type"] == "numeric" else "ref"
junk = state_pickler.gunzip_string(
base64.decodebytes(data[num_attr]["data"])
)
num = pickle.loads(junk)
numpy.testing.assert_array_equal(num, obj.numeric)
self.assertIn(data["ref"]["type"], ["reference", "numeric"])
if data["ref"]["type"] == "numeric":
self.assertEqual(data["numeric"]["type"], "reference")
else:
self.assertEqual(data["numeric"]["type"], "numeric")
self.assertEqual(data["ref"]["id"], data["numeric"]["id"])
def verify_unpickled(self, obj, state):
self.assertEqual(
state.__metadata__["class_name"], obj.__class__.__name__
)
self.assertEqual(state.b, obj.b)
self.assertEqual(state.i, obj.i)
self.assertEqual(state.longi, obj.longi)
self.assertEqual(state.f, obj.f)
self.assertEqual(state.c, obj.c)
self.assertEqual(state.n, obj.n)
self.assertEqual(state.s, obj.s)
self.assertEqual(state.u, obj.u)
self.assertEqual(state.inst.__metadata__["type"], "instance")
tup = state.tuple
self.assertTrue(state.tuple.has_instance)
self.assertEqual(tup[:-1], obj.tuple[:-1])
self.assertEqual(tup[-1].a, "t")
lst = state.list
self.assertTrue(state.list.has_instance)
self.assertEqual(lst[:-1], obj.list[:-1])
# Make sure the reference is the same
self.assertEqual(id(state.inst), id(lst[-1]))
self.assertEqual(lst[-1].a, "b")
pure_lst = state.pure_list
self.assertEqual(pure_lst, obj.pure_list)
self.assertFalse(state.pure_list.has_instance)
dct = state.dict
self.assertTrue(dct.has_instance)
self.assertEqual(dct["a"], obj.dict["a"])
self.assertEqual(dct["b"], obj.dict["b"])
self.assertEqual(dct["ref"].__metadata__["type"], "instance")
num = state.numeric
numpy.testing.assert_array_equal(num, obj.numeric)
self.assertEqual(id(state.ref), id(num))
if TVTK_AVAILABLE:
_tvtk = state._tvtk
self.assertEqual(_tvtk.representation, obj._tvtk.representation)
self.assertEqual(_tvtk.specular_color, obj._tvtk.specular_color)
self.assertEqual(_tvtk.point_size, obj._tvtk.point_size)
def verify_state(self, state1, state):
self.assertEqual(state.__metadata__, state1.__metadata__)
self.assertEqual(state.b, state1.b)
self.assertEqual(state.i, state1.i)
self.assertEqual(state.longi, state1.longi)
self.assertEqual(state.f, state1.f)
self.assertEqual(state.c, state1.c)
self.assertEqual(state.n, state1.n)
self.assertEqual(state.s, state1.s)
self.assertEqual(state.u, state1.u)
# The ID's need not be identical so we equate them here so the
# tests pass. Note that the ID's only need be consistent not
# identical!
if TVTK_AVAILABLE:
instances = ("inst", "_tvtk")
else:
instances = ("inst",)
for attr in instances:
getattr(state1, attr).__metadata__["id"] = getattr(
state, attr
).__metadata__["id"]
if TVTK_AVAILABLE:
# Some of the values are NumPy arrays, so use NumPy's
# assert_equal instead of the unittest assertEqual.
numpy.testing.assert_equal(state1._tvtk, state._tvtk)
state1.tuple[-1].__metadata__["id"] = state.tuple[-1].__metadata__[
"id"
]
self.assertEqual(state.inst.__metadata__, state1.inst.__metadata__)
self.assertEqual(state.tuple, state1.tuple)
self.assertEqual(state.list, state1.list)
self.assertEqual(state.pure_list, state1.pure_list)
self.assertEqual(state.dict, state1.dict)
self.assertTrue((state1.numeric == state.numeric).all())
self.assertEqual(id(state.ref), id(state.numeric))
self.assertEqual(id(state1.ref), id(state1.numeric))
def test_has_instance(self):
"""Test to check has_instance correctness."""
a = A()
r = state_pickler.get_state(a)
self.assertTrue(r.__metadata__["has_instance"])
lst = [1, a]
r = state_pickler.get_state(lst)
self.assertTrue(r.has_instance)
self.assertTrue(r[1].__metadata__["has_instance"])
d = {"a": lst, "b": 1}
r = state_pickler.get_state(d)
self.assertTrue(r.has_instance)
self.assertTrue(r["a"].has_instance)
self.assertTrue(r["a"][1].__metadata__["has_instance"])
class B:
def __init__(self):
self.a = [1, A()]
b = B()
r = state_pickler.get_state(b)
self.assertTrue(r.__metadata__["has_instance"])
self.assertTrue(r.a.has_instance)
self.assertTrue(r.a[1].__metadata__["has_instance"])
def test_pickle_classic(self):
"""Test if classic classes can be pickled."""
t = TestClassic()
self.set_object(t)
# Generate the dict that is actually pickled.
state = state_pickler.StatePickler().dump_state(t)
# First check if all the attributes are handled.
keys = sorted(state["data"]["data"].keys())
expect = [x for x in t.__dict__.keys() if "__" not in x]
expect.sort()
self.assertEqual(keys, expect)
# Check each attribute.
self.verify(t, state)
def test_unpickle_classic(self):
"""Test if classic classes can be unpickled."""
t = TestClassic()
self.set_object(t)
# Get the pickled state.
res = state_pickler.get_state(t)
# Check each attribute.
self.verify_unpickled(t, res)
def test_state_setter_classic(self):
"""Test if classic classes' state can be set."""
t = TestClassic()
self.set_object(t)
# Get the pickled state.
res = state_pickler.get_state(t)
# Now create a new instance and set its state.
t1 = state_pickler.create_instance(res)
state_pickler.set_state(t1, res)
# Check each attribute.
self.verify_unpickled(t1, res)
def test_state_setter(self):
"""Test some of the features of the set_state method."""
t = TestClassic()
self.set_object(t)
# Get the saved state.
res = state_pickler.get_state(t)
# Now create a new instance and test the setter.
t1 = state_pickler.create_instance(res)
keys = [
"c",
"b",
"f",
"i",
"tuple",
"list",
"longi",
"numeric",
"n",
"s",
"u",
"pure_list",
"inst",
"ref",
"dict",
]
ignore = list(keys)
ignore.remove("b")
first = ["b"]
last = []
state_pickler.set_state(t1, res, ignore=ignore, first=first, last=last)
# Only 'b' should have been set.
self.assertTrue(t1.b)
# Rest are unchanged.
self.assertEqual(t1.i, 7)
self.assertEqual(t1.s, "String")
self.assertEqual(t1.u, "Unicode")
self.assertEqual(t1.inst.a, "a")
self.assertEqual(t1.list[0], 1)
self.assertEqual(t1.tuple[-1].a, "a")
self.assertEqual(t1.dict["a"], 1)
# Check if last works.
last = ignore
ignore = []
first = []
state_pickler.set_state(t1, res, ignore=ignore, first=first, last=last)
# Check everything.
self.verify_unpickled(t1, res)
def test_pickle_traits(self):
"""Test if traited classes can be pickled."""
t = TestTraits()
self.set_object(t)
# Generate the dict that is actually pickled.
state = state_pickler.StatePickler().dump_state(t)
# First check if all the attributes are handled.
keys = sorted(state["data"]["data"].keys())
expect = [x for x in t.__dict__.keys() if "__" not in x]
expect.sort()
self.assertEqual(keys, expect)
# Check each attribute.
self.verify(t, state)
def test_unpickle_traits(self):
"""Test if traited classes can be unpickled."""
t = TestTraits()
self.set_object(t)
# Get the pickled state.
res = state_pickler.get_state(t)
# Check each attribute.
self.verify_unpickled(t, res)
def test_state_setter_traits(self):
"""Test if traited classes' state can be set."""
t = TestTraits()
self.set_object(t)
# Get the saved state.
res = state_pickler.get_state(t)
# Now create a new instance and set its state.
t1 = state_pickler.create_instance(res)
state_pickler.set_state(t1, res)
# Check each attribute.
self.verify_unpickled(t1, res)
def test_reference_cycle(self):
"""Test if reference cycles are handled when setting the state."""
class A:
pass
class B:
pass
a = A()
b = B()
a.a = b
b.b = a
state = state_pickler.get_state(a)
z = A()
z.a = B()
z.a.b = z
state_pickler.set_state(z, state)
def test_get_state_on_tuple_with_numeric_references(self):
num = numpy.zeros(10, float)
data = (num, num)
# If this just completes without error, we are good.
state = state_pickler.get_state(data)
# The two should be the same object.
self.assertIs(state[0], state[1])
numpy.testing.assert_allclose(state[0], num)
def test_state_is_saveable(self):
"""Test if the state can be saved like the object itself."""
t = TestClassic()
self.set_object(t)
state = state_pickler.get_state(t)
# Now get the state of the state itself.
state1 = state_pickler.get_state(state)
self.verify_state(state1, state)
# Same thing for the traited class.
t = TestTraits()
self.set_object(t)
state = state_pickler.get_state(t)
# Now get the state of the state itself.
state1 = state_pickler.get_state(state)
self.verify_state(state1, state)
def test_get_pure_state(self):
"""Test if get_pure_state is called first."""
class B:
def __init__(self):
self.a = "dict"
def __get_pure_state__(self):
return {"a": "get_pure_state"}
def __getstate__(self):
return {"a": "getstate"}
b = B()
s = state_pickler.get_state(b)
self.assertEqual(s.a, "get_pure_state")
del B.__get_pure_state__
s = state_pickler.get_state(b)
self.assertEqual(s.a, "getstate")
del B.__getstate__
s = state_pickler.get_state(b)
self.assertEqual(s.a, "dict")
def test_dump_to_file_str(self):
"""Test if dump can take a str as file"""
obj = A()
filepath = os.path.join(tempfile.gettempdir(), "tmp.file")
try:
state_pickler.dump(obj, filepath)
finally:
os.remove(filepath)
|