summaryrefslogtreecommitdiff
path: root/tests/functional/i/invalid/invalid_repr_returned.py
blob: 80fe38bb50eb5911943d5f30cb4a827eea2fc6c7 (plain)
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
"""Check invalid value returned by __repr__ """

# pylint: disable=too-few-public-methods,missing-docstring,import-error,useless-object-inheritance,unnecessary-lambda-assignment
import six

from missing import Missing


class FirstGoodRepr(object):
    """__repr__ returns <type 'str'>"""

    def __repr__(self):
        return "some repr"


class SecondGoodRepr(object):
    """__repr__ returns <type 'str'>"""

    def __repr__(self):
        return str(123)


class ReprMetaclass(type):
    def __repr__(cls):
        return "some repr"


@six.add_metaclass(ReprMetaclass)
class ThirdGoodRepr(object):
    """Repr through the metaclass."""


class FirstBadRepr(object):
    """ __repr__ returns bytes """

    def __repr__(self):  # [invalid-repr-returned]
        return b"123"


class SecondBadRepr(object):
    """ __repr__ returns int """

    def __repr__(self):  # [invalid-repr-returned]
        return 1


class ThirdBadRepr(object):
    """ __repr__ returns node which does not have 'value' in AST """

    def __repr__(self):  # [invalid-repr-returned]
        return lambda: "some repr"


class AmbiguousRepr(object):
    """ Uninferable return value """

    __repr__ = lambda self: Missing


class AnotherAmbiguousRepr(object):
    """Potential uninferable return value"""

    def __repr__(self):
        return str(Missing)