test_pickling.py 791 Bytes
Newer Older
Dean Moldovan's avatar
Dean Moldovan committed
1
2
3
4
5
6
7
try:
    import cPickle as pickle  # Use cPickle on Python 2.7
except ImportError:
    import pickle


def test_roundtrip():
Dean Moldovan's avatar
Dean Moldovan committed
8
9
    from pybind11_tests import Pickleable

Dean Moldovan's avatar
Dean Moldovan committed
10
11
12
13
14
15
16
17
18
    p = Pickleable("test_value")
    p.setExtra1(15)
    p.setExtra2(48)

    data = pickle.dumps(p, 2)  # Must use pickle protocol >= 2
    p2 = pickle.loads(data)
    assert p2.value() == p.value()
    assert p2.extra1() == p.extra1()
    assert p2.extra2() == p.extra2()
Dean Moldovan's avatar
Dean Moldovan committed
19
20
21
22
23
24
25
26
27
28
29
30
31
32


def test_roundtrip_with_dict():
    from pybind11_tests import PickleableWithDict

    p = PickleableWithDict("test_value")
    p.extra = 15
    p.dynamic = "Attribute"

    data = pickle.dumps(p, pickle.HIGHEST_PROTOCOL)
    p2 = pickle.loads(data)
    assert p2.value == p.value
    assert p2.extra == p.extra
    assert p2.dynamic == p.dynamic