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
|
#Copyright ReportLab Europe Ltd. 2000-2017
#see license.txt for license details
"""
Tests for TypedPropertyCollection class.
"""
__version__='3.3.0'
from reportlab.lib.testutils import setOutDir,makeSuiteForClasses, printLocation
setOutDir(__name__)
import os, sys, copy
from os.path import join, basename, splitext
import unittest
from reportlab.graphics.widgetbase import PropHolder, TypedPropertyCollection
from reportlab.lib.attrmap import AttrMap, AttrMapValue
from reportlab.lib.validators import isNumber
TPC = TypedPropertyCollection
class PH(PropHolder):
_attrMap = AttrMap(
a = AttrMapValue(isNumber),
b = AttrMapValue(isNumber)
)
class APH(PH):
def __init__(self):
self.a = 1
class BPH(APH):
def __init__(self):
APH.__init__(self)
def __getattr__(self,name):
if name=='b': return -1
raise AttributeError
class TPCTestCase(unittest.TestCase):
"Test TypedPropertyCollection class."
def test0(self):
"Test setting an invalid collective attribute."
t = TPC(PH)
try:
t.c = 42
except AttributeError:
pass
def test1(self):
"Test setting a valid collective attribute."
t = TPC(PH)
t.a = 42
assert t.a == 42
def test2(self):
"Test setting a valid collective attribute with an invalid value."
t = TPC(PH)
try:
t.a = 'fourty-two'
except AttributeError:
pass
def test3(self):
"Test setting a valid collective attribute with a convertible invalid value."
t = TPC(PH)
t.a = '42'
assert t.a == '42' # Or should it rather be an integer?
def test4(self):
"Test accessing an unset collective attribute."
t = TPC(PH)
try:
t.a
except AttributeError:
pass
def test5(self):
"Test overwriting a collective attribute in one slot."
t = TPC(PH)
t.a = 42
t[0].a = 4242
assert t[0].a == 4242
def test6(self):
"Test overwriting a one slot attribute with a collective one."
t = TPC(PH)
t[0].a = 4242
t.a = 42
assert t[0].a == 4242
def test7(self):
"Test to ensure we can handle classes with __getattr__ methods"
a=TypedPropertyCollection(APH)
b=TypedPropertyCollection(BPH)
a.a=3
b.a=4
try:
a.b
assert 1, "Shouldn't be able to see a.b"
except AttributeError:
pass
a.b=0
assert a.b==0, "Wrong value for "+str(a.b)
assert b.b==-1, "This should call __getattr__ special"
b.b=0
assert a[0].b==0
assert b[0].b==-1, "Class __getattr__ should return -1"
def test8(self):
"test backup of multiple indices"
t = TPC(PH)
t.a = 42
assert (9,1) not in t
#none of [9,1] [9,] [9] exists so we get the root value
assert t[9,1].a == 42,"t[9,1].a=%r != 42" % t[9,1].a
#[0,0] exists, [0,1] doesn't but is backed by [0,]
t[0,0].a = 4242
t[0,].a = 43
assert t[0,0].a == 4242,"t[0,0].a=%r != 4242" % t[0,0].a
assert t[0,1].a == 43,"t[0,1].a=%r != 43" % t[0,1].a
#[1] backs [1,]
t[1,0].a = 37
t[1].a = 39
assert t[1,0].a == 37,"t[1,0].a=%r != 37" % t[1,0].a
assert t[1].a == 39,"t[1].a=%r != 39" % t[1].a
assert t[1,].a == 39,"t[1,].a=%r != 39" % t[1,].a
assert t[1,1].a == 39,"t[1,1].a=%r != 39" % t[1,1].a
#[2,] & t[2] are the same and both back [2,x]
t[2,0].a = 27
t[2,].a = 28
t[2].a = 29
assert t[2,0].a == 27,"t[2,0].a=%r != 27" % t[2,0].a
assert t[2].a == 29,"t[2].a=%r != 29" % t[2].a
assert t[2,].a == 29,"t[2,].a=%r != 29" % t[2,].a
assert t[2,1].a == 29,"t[2,1].a=%r != 29" % t[2,1].a
t[2,].a = 28
assert t[2].a == 28,"t[2].a=%r != 28" % t[2].a
assert t[2,].a == 28,"t[2,].a=%r != 28" % t[2,].a
assert t[2,1].a == 28,"t[2,1].a=%r != 28" % t[2,1].a
t = TPC(PH)
t.a = 42
t.b = 43
t[0].a = 1
t[0,2].a = 2
t[0,2,3].b = 21
t[0,1,3].a = 3
assert t[0,1].a == 1,"t[0,1].a=%r != 1" % t[0,1].a
assert t[0,1,0].a == 1,"t[0,1,0].a=%r != 1" % t[0,1,0].a
assert t[0,2].a == 2,"t[0,2].a=%r != 2" % t[0,2].a
assert t[0,2].b == 43,"t[0,2].b=%r != 43" % t[0,2].b
def makeSuite():
return makeSuiteForClasses(TPCTestCase)
#noruntests
if __name__ == "__main__":
unittest.TextTestRunner().run(makeSuite())
printLocation()
def makeSuite():
return makeSuiteForClasses(TPCTestCase)
#noruntests
if __name__ == "__main__":
unittest.TextTestRunner().run(makeSuite())
printLocation()
|