File: tests.py

package info (click to toggle)
python-padme 1.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 400 kB
  • sloc: python: 1,347; makefile: 149; sh: 4
file content (1029 lines) | stat: -rw-r--r-- 39,123 bytes parent folder | download | duplicates (3)
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
# Copyright 2015 Canonical Ltd.
# Written by:
#   Zygmunt Krynicki <zygmunt.krynicki@canonical.com>
#
# This file is part of Padme.
#
# Padme is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3,
# as published by the Free Software Foundation.
#
# Padme is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Padme.  If not, see <http://www.gnu.org/licenses/>.
"""
:mod:`padme.tests` -- tests for padme.

======================================

This package contains unit tests for padme. You don't want to use it directly
and it can get changed at any time without notice.
"""
from __future__ import print_function, absolute_import, unicode_literals

import doctest
import operator
import sys

from padme import _logger
from padme import proxy
from padme import unproxied

if sys.version_info[0:2] >= (3, 4):
    import unittest
    from unittest import mock
else:
    import unittest2 as unittest
    try:
        import mock.mock as mock
    except ImportError:
        import mock


# https://code.google.com/p/mock/issues/detail?id=247
# or http://bugs.python.org/issue23569
if sys.version_info[0] == 3 and '__div__' in mock._all_magics:
    mock._magics.remove('__div__')
    mock._magics.remove('__rdiv__')
    mock._magics.remove('__idiv__')
    mock._all_magics.remove('__div__')
    mock._all_magics.remove('__rdiv__')
    mock._all_magics.remove('__idiv__')
if sys.version_info[0] == 3 and '__truediv__' not in mock._all_magics:
    mock._magics.add('__truediv__')
    mock._magics.add('__rtruediv__')
    mock._magics.add('__itruediv__')
    mock._all_magics.add('__truediv__')
    mock._all_magics.add('__rtruediv__')
    mock._all_magics.add('__itruediv__')

# http://bugs.python.org/issue23568
if '__rdivmod__' not in mock._magics:
    mock._magics.add('__rdivmod__')
    mock._all_magics.add('__rdivmod__')

# http://bugs.python.org/issue23581
if 'matmul' not in mock.numerics:
    mock._magics.add('__matmul__')
    mock._magics.add('__rmatmul__')
    mock._magics.add('__imatmul__')
    mock._all_magics.add('__matmul__')
    mock._all_magics.add('__rmatmul__')
    mock._all_magics.add('__imatmul__')


# XXX: Set to True for revelation
reality_is_broken = False


def load_tests(loader, tests, ignore):
    """ Load doctests for padme (part of unittest test discovery protocol). """
    import padme
    tests.addTests(
        doctest.DocTestSuite(padme, optionflags=doctest.REPORT_NDIFF))
    return tests


def setUpModule():
    """ Module-level setup function (part of unittest protocol). """
    if reality_is_broken:
        import logging
        logging.basicConfig(level=logging.DEBUG)


class proxy_as_function(unittest.TestCase):

    """ Tests for uses of proxy() as factory for proxy objects.  """

    def setUp(self):
        """ Per-test-case setup function. """
        if reality_is_broken:
            print()
            _logger.debug("STARTING")
            _logger.debug("[%s]", self._testMethodName)
        self.obj = mock.MagicMock(name='obj')
        self.proxy = proxy(self.obj)

    def tearDown(self):
        """ Per-test-case teardown function. """
        if reality_is_broken:
            _logger.debug("DONE")

    # NOTE: order of test methods matches implementation

    def test_repr(self):
        """ Verify that repr/__repr__ is redirected to the proxiee. """
        self.assertEqual(repr(self.proxy), repr(self.obj))
        self.assertEqual(self.proxy.__repr__(), repr(self.obj))

    def test_str(self):
        """ Verify that str/__str__ is redirected to the proxiee. """
        self.assertEqual(str(self.proxy), str(self.obj))
        self.assertEqual(self.proxy.__str__(), str(self.obj))

    @unittest.skipUnless(sys.version_info[0] == 3, "requires python 3")
    def test_bytes(self):
        """ Verify that bytes/__bytes__ is redirected to the proxiee. """
        # NOTE: bytes() is unlike str() or repr() in that it is not a function
        # that converts an arbitrary object into a bytes object.  We cannot
        # just call it on a random object. What we must do is implement
        # __bytes__() on a new class and use instances of that class.
        class C(object):
            def __bytes__(self):
                return b'good'
        self.obj = C()
        self.proxy = proxy(self.obj)
        self.assertEqual(bytes(self.proxy), bytes(self.obj))
        self.assertEqual(self.proxy.__bytes__(), bytes(self.obj))

    def test_format(self):
        """ Verify that format/__format__ is redirected to the proxiee. """
        self.assertEqual(format(self.proxy), format(self.obj))
        self.assertEqual(self.proxy.__format__(""), format(self.obj))

    def test_lt(self):
        """ Verify that < /__lt__ is redirected to the proxiee. """
        # NOTE: MagicMock is not ordered so let's just use an integer
        self.obj = 0
        self.proxy = proxy(self.obj)
        self.assertLess(self.proxy, 1)
        self.assertLess(self.obj, 1)

    def test_le(self):
        """ Verify that <=/ __le__ is redirected to the proxiee. """
        # NOTE: MagicMock is not ordered so let's just use an integer
        self.obj = 0
        self.proxy = proxy(self.obj)
        self.assertLessEqual(self.proxy, 0)
        self.assertLessEqual(self.proxy, 1)
        self.assertLessEqual(self.obj, 0)
        self.assertLessEqual(self.obj, 1)

    def test_eq(self):
        """ Verify that == /__eq__ is redirected to the proxiee. """
        self.assertEqual(self.proxy, self.obj)
        self.obj.__eq__.assert_called_once_with(self.obj)
        self.assertEqual(self.obj, self.obj)

    def test_ne(self):
        """ Verify that != /__ne__ is redirected to the proxiee. """
        other = object()
        self.assertNotEqual(self.proxy, other)
        self.obj.__ne__.assert_called_once_with(other)
        self.assertNotEqual(self.obj, object())

    def test_gt(self):
        """ Verify that > /__gt__ is redirected to the proxiee. """
        # NOTE: MagicMock is not ordered so let's just use an integer
        self.obj = 0
        self.proxy = proxy(self.obj)
        self.assertGreater(self.proxy, -1)
        self.assertGreater(self.obj, -1)

    def test_ge(self):
        """ Verify that >= /__ge__ is redirected to the proxiee. """
        # NOTE: MagicMock is not ordered so let's just use an integer
        self.obj = 0
        self.proxy = proxy(self.obj)
        self.assertGreaterEqual(self.proxy, 0)
        self.assertGreaterEqual(self.proxy, -1)
        self.assertGreaterEqual(self.obj, 0)
        self.assertGreaterEqual(self.obj, -1)

    @unittest.skipUnless(sys.version_info[0] == 2, "requires python 2")
    def test_cmp(self):
        """ Verify that cmp /__cmp__ is redirected to the proxiee. """
        class C(object):
            def __cmp__(self, other):
                return -1
        self.obj = C()
        self.proxy = proxy(self.obj)
        other = object()
        self.assertEqual(cmp(self.proxy, other), cmp(self.obj, other))
        self.assertEqual(self.proxy.__cmp__(other), cmp(self.obj, other))

    def test_hash(self):
        """ Verify that hash /__hash__ is redirected to the proxiee. """
        self.assertEqual(hash(self.proxy), hash(self.obj))
        self.assertEqual(self.proxy.__hash__(), hash(self.obj))

    @unittest.skipUnless(sys.version_info[0] == 3, "requires python 3")
    def test_bool(self):
        """ Verify that bool /__bool__ is redirected to the proxiee. """
        self.assertEqual(bool(self.proxy), bool(self.obj))
        self.assertEqual(self.proxy.__bool__(), bool(self.obj))

    @unittest.skipUnless(sys.version_info[0] == 2, "requires python 2")
    def test_nonzero(self):
        """ Verify that bool /__nonzero__ is redirected to the proxiee. """
        self.assertEqual(bool(self.proxy), bool(self.obj))
        self.assertEqual(self.proxy.__nonzero__(), bool(self.obj))

    @unittest.skipUnless(sys.version_info[0] == 2, "requires python 2")
    def test_unicode(self):
        """ Verify that unicode /__unicode__ is redirected to the proxiee. """
        self.assertEqual(unicode(self.proxy), unicode(self.obj))
        self.assertEqual(self.proxy.__unicode__(), unicode(self.obj))

    def test_attr_get(self):
        """ Verify that attribute reads are redirected to the proxiee. """
        self.assertIs(self.proxy.attr, self.obj.attr)

    def test_attr_set(self):
        """ Verify that attribute writes are redirected to the proxiee. """
        value = mock.Mock(name='value')
        self.proxy.attr = value
        self.assertIs(self.obj.attr, value)

    def test_attr_del(self):
        """ Verify that attribute deletes are redirected to the proxiee. """
        del self.proxy.attr
        with self.assertRaises(AttributeError):
            self.obj.attr

    def test_dir(self):
        """ Verify that dir / __dir__ is redirected to the proxiee. """
        self.assertEqual(dir(self.proxy), dir(self.obj))
        self.assertEqual(self.proxy.__dir__(), dir(self.obj))

    def test_descriptor_methods(self):
        """ Verify that __{get,set,delete}__ are redirected to the proxiee. """
        property_proxy = proxy(property)

        class C(object):
            _ok = "default"

            @property_proxy
            def ok(self):
                return self._ok

            @ok.setter
            def ok(self, value):
                self._ok = value

            @ok.deleter
            def ok(self):
                del self._ok
        obj = C()
        self.assertEqual(obj._ok, "default")
        # __set__ assigns the new value
        obj.ok = True
        self.assertTrue(obj._ok)
        # __get__ returns the current value
        self.assertTrue(obj.ok)
        # __delete__ removes the current value
        del obj.ok
        self.assertEqual(obj._ok, "default")

    def test_call(self):
        """ Verify that __call__ is redirected to the proxiee. """
        self.assertEqual(self.proxy(), self.obj())
        self.assertEqual(self.proxy.__call__(), self.obj())

    def test_len(self):
        """ Verify that len / __len__ is redirected to the proxiee. """
        self.assertEqual(len(self.proxy), len(self.obj))
        self.assertEqual(self.proxy.__len__(), len(self.obj))

    @unittest.skipUnless(sys.version_info[0:2] >= (3, 4),
                         "requires python 3.4")
    def test_length_hint(self):
        """ Verify that __length_hint__ is redirected to the proxiee. """
        # NOTE: apparently MagicMock doesn't support this method
        class C(object):
            def __length_hint__(self):
                return 42
        self.obj = C()
        self.proxy = proxy(self.obj)
        self.assertEqual(
            operator.length_hint(self.proxy), operator.length_hint(self.obj))
        self.assertEqual(
            self.proxy.__length_hint__(), operator.length_hint(self.obj))

    def test_getitem(self):
        """ Verify that [] / __getitem__ is redirected to the proxiee. """
        self.assertEqual(self.proxy['item'], self.obj['item'])
        self.assertEqual(self.proxy.__getitem__('item'), self.obj['item'])

    def test_setitem_v1(self):
        """ Verify that []= is redirected to the proxiee. """
        # NOTE: MagicMock doesn't store item assignment
        self.obj = ["old"]
        self.proxy = proxy(self.obj)
        self.proxy[0] = "new"
        self.assertEqual(self.obj[0], "new")

    def test_setitem_v2(self):
        """ Verify that __setitem__ is redirected to the proxiee. """
        # NOTE: MagicMock doesn't store item assignment
        self.obj = ["old"]
        self.proxy = proxy(self.obj)
        self.proxy.__setitem__(0, "value")
        self.assertEqual(self.obj[0], "value")

    def test_delitem(self):
        """ Verify that del[] / __delitem__ is redirected to the proxiee. """
        obj = {'k': 'v'}
        del proxy(obj)['k']
        self.assertEqual(obj, {})
        obj = {'k': 'v'}
        proxy(obj).__delitem__('k')
        self.assertEqual(obj, {})

    def test_iter(self):
        """ Verify that iter / __iter__ is redirected to the proxiee. """
        # NOTE: MagicMock.__iter__ needs to return a deterministic iterator as
        # by default a new iterator is returned each time.
        self.obj.__iter__.return_value = iter([])
        self.assertEqual(iter(self.proxy), iter(self.obj))
        self.assertEqual(self.proxy.__iter__(), iter(self.obj))

    def test_reversed(self):
        """ Verify that __reversed__ is redirected to the proxiee. """
        # NOTE: apparently MagicMock.doesn't support __reversed__ so we fall
        # back to the approach with a custom class. The same comment, as above,
        # for __iter__() applies though.
        with self.assertRaises(AttributeError):
            self.obj.__reversed__.return_value = reversed([])

        class C(object):
            reversed_retval = iter([])

            def __reversed__(self):
                return self.reversed_retval
        self.obj = C()
        self.proxy = proxy(self.obj)
        self.assertEqual(reversed(self.proxy), reversed(self.obj))
        self.assertEqual(self.proxy.__reversed__(), reversed(self.obj))

    def test_contains(self):
        """ Verify that __contains__ is redirected to the proxiee. """
        item = object()
        self.assertEqual(item in self.proxy, item in self.obj)
        self.assertEqual(self.proxy.__contains__(item), item in self.obj)
        self.assertEqual(self.proxy.__contains__(item), False)
        self.obj.__contains__.return_value = True
        self.assertEqual(item in self.proxy, item in self.obj)
        self.assertEqual(self.proxy.__contains__(item), item in self.obj)
        self.assertEqual(self.proxy.__contains__(item), True)

    def test_add(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy + other, self.obj + other)
        self.assertEqual(self.proxy.__add__(other), self.obj + other)
        self.assertEqual(proxy(4.5) + 2, 6.5)
        self.assertEqual(proxy(5) + 2, 7)
        with self.assertRaises(TypeError):
            proxy("foo") + 2
        self.assertEqual(proxy("foo") + "bar", "foobar")

    def test_sub(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy - other, self.obj - other)
        self.assertEqual(self.proxy.__sub__(other), self.obj - other)
        self.assertEqual(proxy(4.5) - 2, 2.5)
        self.assertEqual(proxy(5) - 2, 3)
        with self.assertRaises(TypeError):
            proxy("foo") - 2

    def test_mul(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy * other, self.obj * other)
        self.assertEqual(self.proxy.__mul__(other), self.obj * other)
        self.assertEqual(proxy(4.5) * 2, 9.0)
        self.assertEqual(proxy(5) * 2, 10)
        self.assertEqual(proxy("foo") * 2, "foofoo")

    @unittest.skipUnless(
        sys.version_info[0:2] >= (3, 5), "requires python 3.5")
    def test_matmul(self):
        other = mock.MagicMock()
        self.assertEqual(operator.matmul(self.proxy, other),
                         operator.matmul(self.obj, other))
        self.assertEqual(self.proxy.__matmul__(other),
                         operator.matmul(self.obj, other))

    @unittest.skipUnless(sys.version_info[0] == 2, "requires python 2")
    def test_div(self):
        other = mock.MagicMock()
        self.assertEqual(operator.div(self.proxy, other),
                         operator.div(self.obj, other))
        self.assertEqual(self.proxy.__div__(other),
                         operator.div(self.obj, other))
        self.assertEqual(operator.div(proxy(4.5), 2), 2.25)
        self.assertEqual(operator.div(proxy(5), 2), 2)

    def test_truediv(self):
        other = mock.MagicMock()
        self.assertEqual(operator.truediv(self.proxy, other),
                         operator.truediv(self.obj, other))
        self.assertEqual(self.proxy.__truediv__(other),
                         operator.truediv(self.obj, other))
        self.assertEqual(operator.truediv(proxy(4.5), 2), 2.25)
        self.assertEqual(operator.truediv(proxy(5), 2), 2.5)

    def test_floordiv(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy // other, self.obj // other)
        self.assertEqual(self.proxy.__floordiv__(other), self.obj // other)
        self.assertEqual(proxy(4.5) // 2, 2)
        self.assertEqual(proxy(5) // 2, 2)

    def test_mod(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy % other, self.obj % other)
        self.assertEqual(self.proxy.__mod__(other), self.obj % other)
        self.assertEqual(proxy(4.5) % 2, 0.5)
        self.assertEqual(proxy(5) % 2, 1)

    def test_divmod(self):
        other = mock.MagicMock()
        self.assertEqual(divmod(self.proxy, other), divmod(self.obj, other))
        self.assertEqual(self.proxy.__divmod__(other), divmod(self.obj, other))
        self.assertEqual(divmod(proxy(4.5), 2), (2, 0.5))
        self.assertEqual(divmod(proxy(5), 2), (2, 1))

    def test_pow(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy ** other, self.obj ** other)
        self.assertEqual(self.proxy.__pow__(other), self.obj ** other)
        self.assertEqual(pow(self.proxy, other), self.obj ** other)
        self.assertEqual(pow(proxy(2), 3), 8)

    def test_lshift(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy << other, self.obj << other)
        self.assertEqual(self.proxy.__lshift__(other), self.obj << other)
        self.assertEqual(proxy(1) << 3, 8)

    def test_rshift(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy >> other, self.obj >> other)
        self.assertEqual(self.proxy.__rshift__(other), self.obj >> other)
        self.assertEqual(proxy(8) >> 3, 1)

    def test_and(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy & other, self.obj & other)
        self.assertEqual(self.proxy.__and__(other), self.obj & other)
        self.assertEqual(proxy(7) & 4, 4)

    def test_xor(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy ^ other, self.obj ^ other)
        self.assertEqual(self.proxy.__xor__(other), self.obj ^ other)
        self.assertEqual(proxy(1) ^ 1, 0)
        self.assertEqual(proxy(1) ^ 0, 1)
        self.assertEqual(proxy(0) ^ 0, 0)
        self.assertEqual(proxy(0) ^ 1, 1)

    def test_or(self):
        other = mock.MagicMock()
        self.assertEqual(self.proxy | other, self.obj | other)
        self.assertEqual(self.proxy.__or__(other), self.obj | other)
        self.assertEqual(proxy(1) | 2, 3)

    def test_radd(self):
        """ Verify that __radd__ is redirected to the proxiee.  """
        # NOTE: ``other`` is anything other than MagicMock to let
        # the reverse methods do their work. The same rule applies
        # to all the other test_r* methods so it won't be repeated
        # there.
        other = mock.Mock()
        self.assertEqual(other + self.proxy, other + self.obj)
        self.assertEqual(self.proxy.__radd__(other), other + self.obj)
        self.assertEqual(4.5 + proxy(2), 6.5)
        self.assertEqual(5 + proxy(2), 7)
        with self.assertRaises(TypeError):
            2 + proxy("foo")
        self.assertEqual("foo" + proxy("bar"), "foobar")
        self.assertEqual([1, 2, 3] + proxy([4, 5]), [1, 2, 3, 4, 5])

    def test_rsub(self):
        """ Verify that __rsub__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other - self.proxy, other - self.obj)
        self.assertEqual(self.proxy.__rsub__(other), other - self.obj)
        self.assertEqual(4.5 - proxy(2), 2.5)
        self.assertEqual(5 - proxy(2), 3)
        with self.assertRaises(TypeError):
            "foo" - proxy(2)

    def test_rmul(self):
        """ Verify that __rmul__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other * self.proxy, other * self.obj)
        self.assertEqual(self.proxy.__rmul__(other), other * self.obj)
        self.assertEqual(4.5 * proxy(2), 9.0)
        self.assertEqual(5 * proxy(2), 10)
        self.assertEqual("foo" * proxy(2), "foofoo")

    @unittest.skipUnless(
        sys.version_info[0:2] >= (3, 5), "requires python 3.5")
    def test_rmatmul(self):
        """ Verify that __rmul__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(operator.matmul(other, self.proxy),
                         operator.matmul(other, self.obj))
        self.assertEqual(self.proxy.__rmatmul__(other),
                         operator.matmul(other, self.obj))

    @unittest.skipUnless(sys.version_info[0] == 2, "requires python 2")
    def test_rdiv(self):
        """ Verify that __rdiv__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(operator.div(other, self.proxy),
                         operator.div(other, self.obj))
        self.assertEqual(self.proxy.__rdiv__(other),
                         operator.div(other, self.obj))
        self.assertEqual(operator.div(4.5, proxy(2)), 2.25)
        self.assertEqual(operator.div(5, proxy(2)), 2)

    def test_rtruediv(self):
        """ Verify that __rtruediv__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(operator.truediv(other, self.proxy),
                         operator.truediv(other, self.obj))
        self.assertEqual(self.proxy.__rtruediv__(other),
                         operator.truediv(other, self.obj))
        self.assertEqual(operator.truediv(4.5, proxy(2)), 2.25)
        self.assertEqual(operator.truediv(5, proxy(2)), 2.5)

    def test_rfloordiv(self):
        """ Verify that __rfloordiv__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other // self.proxy, other // self.obj)
        self.assertEqual(self.proxy.__rfloordiv__(other), other // self.obj)
        self.assertEqual(4.5 // proxy(2), 2)
        self.assertEqual(5 // proxy(2), 2)

    def test_rmod(self):
        """ Verify that __rmod__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other % self.proxy, other % self.obj)
        self.assertEqual(self.proxy.__rmod__(other), other % self.obj)
        self.assertEqual(4.5 % proxy(2), 0.5)
        self.assertEqual(5 % proxy(2), 1)

    def test_rdivmod(self):
        """ Verify that __rdivmod__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(divmod(other, self.proxy), divmod(other, self.obj))
        self.assertEqual(
            self.proxy.__rdivmod__(other), divmod(other, self.obj))
        self.assertEqual(divmod(4.5, proxy(2)), (2, 0.5))
        self.assertEqual(divmod(5, proxy(2)), (2, 1))

    def test_rpow(self):
        """ Verify that __rpow__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other ** self.proxy, other ** self.obj)
        self.assertEqual(self.proxy.__rpow__(other), other ** self.obj)
        self.assertEqual(pow(other, self.proxy), other ** self.obj)
        self.assertEqual(pow(2, proxy(3)), 8)
        with self.assertRaises(TypeError):
            # __rpow__ is not called for the three-argument version of pow()
            self.assertEqual(pow(2, proxy(10), 1000), 24)

    def test_rlshift(self):
        """ Verify that __rlshift__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other << self.proxy, other << self.obj)
        self.assertEqual(self.proxy.__rlshift__(other), other << self.obj)
        self.assertEqual(1 << proxy(3), 8)

    def test_rrshift(self):
        """ Verify that __rrshift__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other >> self.proxy, other >> self.obj)
        self.assertEqual(self.proxy.__rrshift__(other), other >> self.obj)
        self.assertEqual(8 >> proxy(3), 1)

    def test_rand(self):
        """ Verify that __rand__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other & self.proxy, other & self.obj)
        self.assertEqual(self.proxy.__rand__(other), other & self.obj)
        self.assertEqual(7 & proxy(4), 4)

    def test_rxor(self):
        """ Verify that __rxor__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other ^ self.proxy, other ^ self.obj)
        self.assertEqual(self.proxy.__rxor__(other), other ^ self.obj)
        self.assertEqual(1 ^ proxy(1), 0)
        self.assertEqual(1 ^ proxy(0), 1)
        self.assertEqual(0 ^ proxy(0), 0)
        self.assertEqual(0 ^ proxy(1), 1)

    def test_ror(self):
        """ Verify that __ror__ is redirected to the proxiee. """
        other = mock.Mock()
        self.assertEqual(other | self.proxy, other | self.obj)
        self.assertEqual(self.proxy.__ror__(other), other | self.obj)
        self.assertEqual(1 | proxy(2), 3)

    def test_iadd__via_operator__mutable(self):
        """ Verify that += is redirected to the proxiee (mutable case). """
        # Mock__iadd__ that returns the object itself
        self.obj.__iadd__.return_value = self.obj
        other = mock.MagicMock()
        proxy_old = self.proxy
        self.proxy += other
        # __iadd__ was called and mutated the state of obj
        self.obj.__iadd__.assert_called_with(other)
        # += returned the same proxy object
        self.assertIs(self.proxy, proxy_old)
        self.assertTrue(issubclass(type(self.proxy), proxy))
        # the proxy object tracks the original object
        self.assertIs(proxy.original(self.proxy), self.obj)

    def test_iadd__via_operator__immutable(self):
        """ Verify that += is redirected to the proxiee (immutable case). """
        # Mock the absence of __iadd__
        del self.obj.__iadd__
        other = mock.MagicMock()
        proxy_old = self.proxy
        self.proxy += other
        # __add__ was called and returned new obj
        self.obj.__add__.assert_called_with(other)
        # += returned a new proxy object
        self.assertTrue(issubclass(type(self.proxy), proxy))
        self.assertIsNot(self.proxy, proxy_old)
        # the new proxy object tracks new object
        self.assertIsNot(proxy.original(self.proxy), self.obj)

    def test_iadd__via_dunder__mutable(self):
        """ Verify that __iadd__ is redirected to the proxiee. """
        # Mock __iadd__ that returns the object itself
        self.obj.__iadd__.return_value = self.obj
        other = mock.MagicMock()
        proxy_old = self.proxy
        self.proxy = self.proxy.__iadd__(other)
        # __iadd__ was called and mutated the state of obj
        self.obj.__iadd__.assert_called_with(other)
        # += returned the same proxy object
        self.assertIs(self.proxy, proxy_old)
        self.assertTrue(issubclass(type(self.proxy), proxy))
        # the proxy object tracks the original object
        self.assertIs(proxy.original(self.proxy), self.obj)

    def test_iadd__via_dunder__immutable(self):
        """ Verify that __iadd__ doesn't show up if not originally present. """
        # Mock the absence of __iadd__
        del self.obj.__iadd__
        other = mock.MagicMock()
        with self.assertRaises(AttributeError):
            self.proxy.__iadd__(other)

    def test_iadd__on_int__via_operator(self):
        """ Verify that += works on proxy[int]. """
        # int is immutable so += actually works using the + operator
        a = b = proxy(2)
        # b is modified, a is unchanged
        b += 2
        self.assertEqual(a, 2)
        self.assertEqual(b, b)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_iadd__on_str__via_operator(self):
        """ Verify that += works on proxy[str]. """
        # str is immutable so += actually works using the + operator
        a = b = proxy("hello")
        b += " world"
        self.assertEqual(a, "hello")
        self.assertEqual(b, "hello world")
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_iadd__on_list__via_operator(self):
        """ Verify that += works on proxy[list]. """
        # list is mutable so += is implemented directly
        a = b = proxy(['first'])
        b += ['second']
        self.assertEqual(a, ['first', 'second'])
        self.assertEqual(b, ['first', 'second'])
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_iadd__on_int__via_dunder(self):
        """ Verify that __iadd__ doesn't exist on proxy[int]. """
        a = 2
        with self.assertRaises(AttributeError):
            a.__iadd__(2)
        b = proxy(2)
        with self.assertRaises(AttributeError):
            b.__iadd__(2)

    def test_iadd__on_str__via_dunder(self):
        """ Verify that __iadd__ doesn't exist on proxy[str]. """
        a = "hello"
        with self.assertRaises(AttributeError):
            a.__iadd__(" world")
        b = proxy("hello")
        with self.assertRaises(AttributeError):
            b.__iadd__(" world")

    def test_iadd__on_list__via_dunder(self):
        """ Verify that __iadd__ works on proxy[list]. """
        a = proxy(['first'])
        b = a.__iadd__(['second'])
        self.assertEqual(a, ['first', 'second'])
        self.assertEqual(b, ['first', 'second'])
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))
        self.assertIs(a, b)

    def test_isub__on_int(self):
        """ Verify that -= works on proxy[int]. """
        a = b = proxy(4)
        b -= 3
        self.assertEqual(a, 4)
        self.assertEqual(b, 1)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_imul__on_int(self):
        """ Verify that *= works on proxy[int]. """
        a = b = proxy(4)
        b *= 2
        self.assertEqual(a, 4)
        self.assertEqual(b, 8)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    # NOTE: there's no type in stdlib that supports matmul so there's no smoke
    # test for that.

    @unittest.skipUnless(sys.version_info[0] == 2, "requires python 2")
    def test_idiv__on_int(self):
        """ Verify that (old) /= works on proxy[int]. """
        a = b = proxy(7)
        b = operator.idiv(b, 2)
        self.assertEqual(a, 7)
        self.assertEqual(b, 3)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_itruediv__on_int(self):
        """ Verify that (true) /= works on proxy[int]. """
        a = b = proxy(7)
        b = operator.itruediv(b, 2)
        self.assertEqual(a, 7)
        self.assertEqual(b, 3.5)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_ifloordiv__on_int(self):
        """ Verify that //= works on proxy[int]. """
        a = b = proxy(7)
        b //= 2
        self.assertEqual(a, 7)
        self.assertEqual(b, 3)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_imod__on_int(self):
        """ Verify that %= works on proxy[int]. """
        a = b = proxy(7)
        b %= 2
        self.assertEqual(a, 7)
        self.assertEqual(b, 1)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_ipow__on_int(self):
        """ Verify that **= works on proxy[int]. """
        a = b = proxy(7)
        b **= 2
        self.assertEqual(a, 7)
        self.assertEqual(b, 49)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_ilshift__on_int(self):
        """ Verify that <<= works on proxy[int]. """
        a = b = proxy(1)
        b <<= 10
        self.assertEqual(a, 1)
        self.assertEqual(b, 1024)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_irshift__on_int(self):
        """ Verify that >>= works on proxy[int]. """
        a = b = proxy(1024)
        b >>= 10
        self.assertEqual(a, 1024)
        self.assertEqual(b, 1)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_iand__on_int(self):
        """ Verify that &= works on proxy[int]. """
        a = b = proxy(7)
        b &= 4
        self.assertEqual(a, 7)
        self.assertEqual(b, 4)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_ixor__on_int(self):
        """ Verify that ^= works on proxy[int]. """
        a = b = proxy(7)
        b ^= 5
        self.assertEqual(a, 7)
        self.assertEqual(b, 2)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_ior__on_int(self):
        """ Verify that |= works on proxy[int]. """
        a = b = proxy(7)
        b |= 8
        self.assertEqual(a, 7)
        self.assertEqual(b, 15)
        self.assertTrue(issubclass(type(a), proxy))
        self.assertTrue(issubclass(type(b), proxy))

    def test_context_manager_methods_v1(self):
        """ Verify that __enter__ and __exit__ are redirected. """
        with self.proxy:
            pass
        self.obj.__enter__.assert_called_once_with()
        self.obj.__exit__.assert_called_once_with(None, None, None)

    def test_context_manager_methods_v2(self):
        """ Verify that redirecting __exit__ passes right arguments. """
        exc = Exception("boom")
        with self.assertRaisesRegexp(Exception, "boom"):
            with self.proxy:
                try:
                    raise exc
                except:
                    traceback = sys.exc_info()[2]
                    raise
        self.obj.__enter__.assert_called_once_with()
        # XXX: it's called with (Exception, exc, traceback) but I don't know
        # how to reach the traceback here
        self.obj.__exit__.assert_called_once_with(Exception, exc, traceback)

    def test_hasattr_parity(self):
        """ verify that hasattr() behaves the same for original and proxy. """
        class C(object):
            pass
        special_methods = str('''
            __del__
            __repr__
            __str__
            __bytes__
            __format__
            __lt__
            __le__
            __eq__
            __ne__
            __gt__
            __ge__
            __cmp__
            __hash__
            __bool__
            __nonzero__
            __unicode__
            __getattr__
            __getattribute__
            __setattr__
            __delattr__
            __dir__
            __get__
            __set__
            __delete__
            __call__
            __len__
            __length_hint__
            __getitem__
            __setitem__
            __delitem__
            __iter__
            __reversed__
            __contains__
            __add__
            __sub__
            __mul__
            __floordiv__
            __mod__
            __divmod__
            __pow__
            __lshift__
            __rshift__
            __and__
            __xor__
            __or__
            __div__
            __truediv__
            __radd__
            __rsub__
            __rmul__
            __rdiv__
            __rtruediv__
            __rfloordiv__
            __rmod__
            __rdivmod__
            __rpow__
            __rlshift__
            __rrshift__
            __rand__
            __rxor__
            __ror__
            __iadd__
            __isub__
            __imul__
            __idiv__
            __itruediv__
            __ifloordiv__
            __imod__
            __ipow__
            __ilshift__
            __irshift__
            __iand__
            __ixor__
            __ior__
            __neg__
            __pos__
            __abs__
            __invert__
            __complex__
            __int__
            __long__
            __float__
            __oct__
            __hex__
            __index__
            __coerce__
            __enter__
            __exit__
        ''').split()
        for obj in [C(), 42, property(lambda x: x), int, None]:
            self.obj = obj
            self.proxy = proxy(self.obj)
            for attr in special_methods:
                self.assertEqual(
                    hasattr(self.obj, attr),
                    hasattr(self.proxy, attr),
                    "attribute presence mismatch on attr %r and object %r" % (
                        attr, self.obj))

    def test_isinstance(self):
        """ Verify that isinstance() checks work. """
        # NOTE: this method tests the metaclass
        self.assertIsInstance(self.obj, type(self.obj))
        self.assertIsInstance(self.proxy, type(self.obj))

    def test_issubclass(self):
        """ Verify that issubclass() checks work. """
        # NOTE: this method tests the metaclass
        # NOTE: mock doesn't support subclasscheck
        # NOTE: str ... below is just for python 2.7
        # (__future__.unicode_literals is in effect)
        obj = str("something other than mock")
        self.assertTrue(issubclass(str, type(obj)))
        self.assertTrue(issubclass(str, type(proxy(obj))))

    def test_class(self):
        """ Verify that proxy_obj.__class__ is redirected to the proxiee. """
        self.assertEqual(self.proxy.__class__, self.obj.__class__)
        # NOTE: The proxy cannot hide the fact, that it is a proxy
        self.assertNotEqual(type(self.proxy), type(self.obj))


class proxy_as_class(unittest.TestCase):

    """ Tests for uses of proxy() as a base class for specialized proxies. """

    def setUp(self):
        """ Per-test-case setup function. """
        if reality_is_broken:
            print()
            _logger.debug("STARTING")
            _logger.debug("[%s]", self._testMethodName)

    def tearDown(self):
        """ Per-test-case teardown function. """
        if reality_is_broken:
            _logger.debug("DONE")

    def test_proxy_subclass(self):
        """ Verify that basic @unproxied use case works. """
        # NOTE: bring your comb, because this is the extra-hairy land
        class censored(proxy):

            @unproxied
            def __str__(self):
                return "*" * len(super(censored, self).__str__())
        self.assertTrue(issubclass(censored, proxy))
        self.assertEqual(str(censored("freedom")), "*******")
        self.assertEqual(censored("freedom").__str__(), "*******")