Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 1 | import pytest |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 2 | |
| 3 | from pybind11_tests import virtual_functions as m |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 4 | from pybind11_tests import ConstructorStats |
| 5 | |
| 6 | |
| 7 | def test_override(capture, msg): |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 8 | class ExtendedExampleVirt(m.ExampleVirt): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 9 | def __init__(self, state): |
| 10 | super(ExtendedExampleVirt, self).__init__(state + 1) |
| 11 | self.data = "Hello world" |
| 12 | |
| 13 | def run(self, value): |
| 14 | print('ExtendedExampleVirt::run(%i), calling parent..' % value) |
| 15 | return super(ExtendedExampleVirt, self).run(value + 1) |
| 16 | |
| 17 | def run_bool(self): |
| 18 | print('ExtendedExampleVirt::run_bool()') |
| 19 | return False |
| 20 | |
Jason Rhinelander | 7dfb932 | 2016-09-08 14:49:43 -0400 | [diff] [blame] | 21 | def get_string1(self): |
| 22 | return "override1" |
| 23 | |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 24 | def pure_virtual(self): |
| 25 | print('ExtendedExampleVirt::pure_virtual(): %s' % self.data) |
| 26 | |
Jason Rhinelander | 7dfb932 | 2016-09-08 14:49:43 -0400 | [diff] [blame] | 27 | class ExtendedExampleVirt2(ExtendedExampleVirt): |
| 28 | def __init__(self, state): |
| 29 | super(ExtendedExampleVirt2, self).__init__(state + 1) |
| 30 | |
| 31 | def get_string2(self): |
| 32 | return "override2" |
| 33 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 34 | ex12 = m.ExampleVirt(10) |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 35 | with capture: |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 36 | assert m.runExampleVirt(ex12, 20) == 30 |
Dean Moldovan | 76e993a | 2016-12-13 00:59:28 +0100 | [diff] [blame] | 37 | assert capture == """ |
| 38 | Original implementation of ExampleVirt::run(state=10, value=20, str1=default1, str2=default2) |
| 39 | """ # noqa: E501 line too long |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 40 | |
| 41 | with pytest.raises(RuntimeError) as excinfo: |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 42 | m.runExampleVirtVirtual(ex12) |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 43 | assert msg(excinfo.value) == 'Tried to call pure virtual function "ExampleVirt::pure_virtual"' |
| 44 | |
| 45 | ex12p = ExtendedExampleVirt(10) |
| 46 | with capture: |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 47 | assert m.runExampleVirt(ex12p, 20) == 32 |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 48 | assert capture == """ |
| 49 | ExtendedExampleVirt::run(20), calling parent.. |
Jason Rhinelander | 7dfb932 | 2016-09-08 14:49:43 -0400 | [diff] [blame] | 50 | Original implementation of ExampleVirt::run(state=11, value=21, str1=override1, str2=default2) |
Dean Moldovan | 76e993a | 2016-12-13 00:59:28 +0100 | [diff] [blame] | 51 | """ # noqa: E501 line too long |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 52 | with capture: |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 53 | assert m.runExampleVirtBool(ex12p) is False |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 54 | assert capture == "ExtendedExampleVirt::run_bool()" |
| 55 | with capture: |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 56 | m.runExampleVirtVirtual(ex12p) |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 57 | assert capture == "ExtendedExampleVirt::pure_virtual(): Hello world" |
| 58 | |
Jason Rhinelander | 7dfb932 | 2016-09-08 14:49:43 -0400 | [diff] [blame] | 59 | ex12p2 = ExtendedExampleVirt2(15) |
| 60 | with capture: |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 61 | assert m.runExampleVirt(ex12p2, 50) == 68 |
Jason Rhinelander | 7dfb932 | 2016-09-08 14:49:43 -0400 | [diff] [blame] | 62 | assert capture == """ |
| 63 | ExtendedExampleVirt::run(50), calling parent.. |
| 64 | Original implementation of ExampleVirt::run(state=17, value=51, str1=override1, str2=override2) |
Dean Moldovan | 76e993a | 2016-12-13 00:59:28 +0100 | [diff] [blame] | 65 | """ # noqa: E501 line too long |
Jason Rhinelander | 7dfb932 | 2016-09-08 14:49:43 -0400 | [diff] [blame] | 66 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 67 | cstats = ConstructorStats.get(m.ExampleVirt) |
Jason Rhinelander | 7dfb932 | 2016-09-08 14:49:43 -0400 | [diff] [blame] | 68 | assert cstats.alive() == 3 |
| 69 | del ex12, ex12p, ex12p2 |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 70 | assert cstats.alive() == 0 |
Jason Rhinelander | 7dfb932 | 2016-09-08 14:49:43 -0400 | [diff] [blame] | 71 | assert cstats.values() == ['10', '11', '17'] |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 72 | assert cstats.copy_constructions == 0 |
| 73 | assert cstats.move_constructions >= 0 |
| 74 | |
| 75 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 76 | def test_alias_delay_initialization1(capture): |
| 77 | """`A` only initializes its trampoline class when we inherit from it |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 78 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 79 | If we just create and use an A instance directly, the trampoline initialization is |
| 80 | bypassed and we only initialize an A() instead (for performance reasons). |
| 81 | """ |
| 82 | class B(m.A): |
| 83 | def __init__(self): |
| 84 | super(B, self).__init__() |
| 85 | |
| 86 | def f(self): |
| 87 | print("In python f()") |
| 88 | |
| 89 | # C++ version |
| 90 | with capture: |
| 91 | a = m.A() |
| 92 | m.call_f(a) |
| 93 | del a |
| 94 | pytest.gc_collect() |
| 95 | assert capture == "A.f()" |
| 96 | |
| 97 | # Python version |
| 98 | with capture: |
| 99 | b = B() |
| 100 | m.call_f(b) |
| 101 | del b |
| 102 | pytest.gc_collect() |
| 103 | assert capture == """ |
| 104 | PyA.PyA() |
| 105 | PyA.f() |
| 106 | In python f() |
| 107 | PyA.~PyA() |
| 108 | """ |
| 109 | |
| 110 | |
| 111 | def test_alias_delay_initialization2(capture): |
| 112 | """`A2`, unlike the above, is configured to always initialize the alias |
| 113 | |
| 114 | While the extra initialization and extra class layer has small virtual dispatch |
| 115 | performance penalty, it also allows us to do more things with the trampoline |
| 116 | class such as defining local variables and performing construction/destruction. |
| 117 | """ |
| 118 | class B2(m.A2): |
| 119 | def __init__(self): |
| 120 | super(B2, self).__init__() |
| 121 | |
| 122 | def f(self): |
| 123 | print("In python B2.f()") |
| 124 | |
| 125 | # No python subclass version |
| 126 | with capture: |
| 127 | a2 = m.A2() |
| 128 | m.call_f(a2) |
| 129 | del a2 |
| 130 | pytest.gc_collect() |
| 131 | assert capture == """ |
| 132 | PyA2.PyA2() |
| 133 | PyA2.f() |
| 134 | A2.f() |
| 135 | PyA2.~PyA2() |
| 136 | """ |
| 137 | |
| 138 | # Python subclass version |
| 139 | with capture: |
| 140 | b2 = B2() |
| 141 | m.call_f(b2) |
| 142 | del b2 |
| 143 | pytest.gc_collect() |
| 144 | assert capture == """ |
| 145 | PyA2.PyA2() |
| 146 | PyA2.f() |
| 147 | In python B2.f() |
| 148 | PyA2.~PyA2() |
| 149 | """ |
| 150 | |
| 151 | |
Jason Rhinelander | 391c754 | 2017-07-25 16:47:36 -0400 | [diff] [blame] | 152 | # PyPy: Reference count > 1 causes call with noncopyable instance |
| 153 | # to fail in ncv1.print_nc() |
| 154 | @pytest.unsupported_on_pypy |
| 155 | @pytest.mark.skipif(not hasattr(m, "NCVirt"), reason="NCVirt test broken on ICPC") |
| 156 | def test_move_support(): |
| 157 | class NCVirtExt(m.NCVirt): |
| 158 | def get_noncopyable(self, a, b): |
| 159 | # Constructs and returns a new instance: |
| 160 | nc = m.NonCopyable(a * a, b * b) |
| 161 | return nc |
| 162 | |
| 163 | def get_movable(self, a, b): |
| 164 | # Return a referenced copy |
| 165 | self.movable = m.Movable(a, b) |
| 166 | return self.movable |
| 167 | |
| 168 | class NCVirtExt2(m.NCVirt): |
| 169 | def get_noncopyable(self, a, b): |
| 170 | # Keep a reference: this is going to throw an exception |
| 171 | self.nc = m.NonCopyable(a, b) |
| 172 | return self.nc |
| 173 | |
| 174 | def get_movable(self, a, b): |
| 175 | # Return a new instance without storing it |
| 176 | return m.Movable(a, b) |
| 177 | |
| 178 | ncv1 = NCVirtExt() |
| 179 | assert ncv1.print_nc(2, 3) == "36" |
| 180 | assert ncv1.print_movable(4, 5) == "9" |
| 181 | ncv2 = NCVirtExt2() |
| 182 | assert ncv2.print_movable(7, 7) == "14" |
| 183 | # Don't check the exception message here because it differs under debug/non-debug mode |
| 184 | with pytest.raises(RuntimeError): |
| 185 | ncv2.print_nc(9, 9) |
| 186 | |
| 187 | nc_stats = ConstructorStats.get(m.NonCopyable) |
| 188 | mv_stats = ConstructorStats.get(m.Movable) |
| 189 | assert nc_stats.alive() == 1 |
| 190 | assert mv_stats.alive() == 1 |
| 191 | del ncv1, ncv2 |
| 192 | assert nc_stats.alive() == 0 |
| 193 | assert mv_stats.alive() == 0 |
| 194 | assert nc_stats.values() == ['4', '9', '9', '9'] |
| 195 | assert mv_stats.values() == ['4', '5', '7', '7'] |
| 196 | assert nc_stats.copy_constructions == 0 |
| 197 | assert mv_stats.copy_constructions == 1 |
| 198 | assert nc_stats.move_constructions >= 0 |
| 199 | assert mv_stats.move_constructions >= 0 |
| 200 | |
| 201 | |
| 202 | def test_dispatch_issue(msg): |
| 203 | """#159: virtual function dispatch has problems with similar-named functions""" |
| 204 | class PyClass1(m.DispatchIssue): |
| 205 | def dispatch(self): |
| 206 | return "Yay.." |
| 207 | |
| 208 | class PyClass2(m.DispatchIssue): |
| 209 | def dispatch(self): |
| 210 | with pytest.raises(RuntimeError) as excinfo: |
| 211 | super(PyClass2, self).dispatch() |
| 212 | assert msg(excinfo.value) == 'Tried to call pure virtual function "Base::dispatch"' |
| 213 | |
| 214 | p = PyClass1() |
| 215 | return m.dispatch_issue_go(p) |
| 216 | |
| 217 | b = PyClass2() |
| 218 | assert m.dispatch_issue_go(b) == "Yay.." |
| 219 | |
| 220 | |
| 221 | def test_override_ref(): |
| 222 | """#392/397: overridding reference-returning functions""" |
| 223 | o = m.OverrideTest("asdf") |
| 224 | |
| 225 | # Not allowed (see associated .cpp comment) |
| 226 | # i = o.str_ref() |
| 227 | # assert o.str_ref() == "asdf" |
| 228 | assert o.str_value() == "asdf" |
| 229 | |
| 230 | assert o.A_value().value == "hi" |
| 231 | a = o.A_ref() |
| 232 | assert a.value == "hi" |
| 233 | a.value = "bye" |
| 234 | assert a.value == "bye" |
| 235 | |
| 236 | |
| 237 | def test_inherited_virtuals(): |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 238 | class AR(m.A_Repeat): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 239 | def unlucky_number(self): |
| 240 | return 99 |
| 241 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 242 | class AT(m.A_Tpl): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 243 | def unlucky_number(self): |
| 244 | return 999 |
| 245 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 246 | obj = AR() |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 247 | assert obj.say_something(3) == "hihihi" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 248 | assert obj.unlucky_number() == 99 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 249 | assert obj.say_everything() == "hi 99" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 250 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 251 | obj = AT() |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 252 | assert obj.say_something(3) == "hihihi" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 253 | assert obj.unlucky_number() == 999 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 254 | assert obj.say_everything() == "hi 999" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 255 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 256 | for obj in [m.B_Repeat(), m.B_Tpl()]: |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 257 | assert obj.say_something(3) == "B says hi 3 times" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 258 | assert obj.unlucky_number() == 13 |
| 259 | assert obj.lucky_number() == 7.0 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 260 | assert obj.say_everything() == "B says hi 1 times 13" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 261 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 262 | for obj in [m.C_Repeat(), m.C_Tpl()]: |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 263 | assert obj.say_something(3) == "B says hi 3 times" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 264 | assert obj.unlucky_number() == 4444 |
| 265 | assert obj.lucky_number() == 888.0 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 266 | assert obj.say_everything() == "B says hi 1 times 4444" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 267 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 268 | class CR(m.C_Repeat): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 269 | def lucky_number(self): |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 270 | return m.C_Repeat.lucky_number(self) + 1.25 |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 271 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 272 | obj = CR() |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 273 | assert obj.say_something(3) == "B says hi 3 times" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 274 | assert obj.unlucky_number() == 4444 |
| 275 | assert obj.lucky_number() == 889.25 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 276 | assert obj.say_everything() == "B says hi 1 times 4444" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 277 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 278 | class CT(m.C_Tpl): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 279 | pass |
| 280 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 281 | obj = CT() |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 282 | assert obj.say_something(3) == "B says hi 3 times" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 283 | assert obj.unlucky_number() == 4444 |
| 284 | assert obj.lucky_number() == 888.0 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 285 | assert obj.say_everything() == "B says hi 1 times 4444" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 286 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 287 | class CCR(CR): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 288 | def lucky_number(self): |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 289 | return CR.lucky_number(self) * 10 |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 290 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 291 | obj = CCR() |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 292 | assert obj.say_something(3) == "B says hi 3 times" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 293 | assert obj.unlucky_number() == 4444 |
| 294 | assert obj.lucky_number() == 8892.5 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 295 | assert obj.say_everything() == "B says hi 1 times 4444" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 296 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 297 | class CCT(CT): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 298 | def lucky_number(self): |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 299 | return CT.lucky_number(self) * 1000 |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 300 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 301 | obj = CCT() |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 302 | assert obj.say_something(3) == "B says hi 3 times" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 303 | assert obj.unlucky_number() == 4444 |
| 304 | assert obj.lucky_number() == 888000.0 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 305 | assert obj.say_everything() == "B says hi 1 times 4444" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 306 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 307 | class DR(m.D_Repeat): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 308 | def unlucky_number(self): |
| 309 | return 123 |
| 310 | |
| 311 | def lucky_number(self): |
| 312 | return 42.0 |
| 313 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 314 | for obj in [m.D_Repeat(), m.D_Tpl()]: |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 315 | assert obj.say_something(3) == "B says hi 3 times" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 316 | assert obj.unlucky_number() == 4444 |
| 317 | assert obj.lucky_number() == 888.0 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 318 | assert obj.say_everything() == "B says hi 1 times 4444" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 319 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 320 | obj = DR() |
Dean Moldovan | 99dbdc1 | 2016-08-19 13:45:36 +0200 | [diff] [blame] | 321 | assert obj.say_something(3) == "B says hi 3 times" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 322 | assert obj.unlucky_number() == 123 |
| 323 | assert obj.lucky_number() == 42.0 |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 324 | assert obj.say_everything() == "B says hi 1 times 123" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 325 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 326 | class DT(m.D_Tpl): |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 327 | def say_something(self, times): |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 328 | return "DT says:" + (' quack' * times) |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 329 | |
| 330 | def unlucky_number(self): |
| 331 | return 1234 |
| 332 | |
| 333 | def lucky_number(self): |
| 334 | return -4.25 |
| 335 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 336 | obj = DT() |
| 337 | assert obj.say_something(3) == "DT says: quack quack quack" |
Dean Moldovan | a0c1ccf | 2016-08-12 13:50:00 +0200 | [diff] [blame] | 338 | assert obj.unlucky_number() == 1234 |
| 339 | assert obj.lucky_number() == -4.25 |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 340 | assert obj.say_everything() == "DT says: quack 1234" |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 341 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 342 | class DT2(DT): |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 343 | def say_something(self, times): |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 344 | return "DT2: " + ('QUACK' * times) |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 345 | |
| 346 | def unlucky_number(self): |
| 347 | return -3 |
| 348 | |
Dean Moldovan | 0bc272b | 2017-06-22 23:42:11 +0200 | [diff] [blame] | 349 | class BT(m.B_Tpl): |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 350 | def say_something(self, times): |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 351 | return "BT" * times |
| 352 | |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 353 | def unlucky_number(self): |
| 354 | return -7 |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 355 | |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 356 | def lucky_number(self): |
| 357 | return -1.375 |
| 358 | |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 359 | obj = BT() |
| 360 | assert obj.say_something(3) == "BTBTBT" |
Jason Rhinelander | 2097826 | 2016-08-29 18:16:46 -0400 | [diff] [blame] | 361 | assert obj.unlucky_number() == -7 |
| 362 | assert obj.lucky_number() == -1.375 |
Dean Moldovan | bad1740 | 2016-11-20 21:21:54 +0100 | [diff] [blame] | 363 | assert obj.say_everything() == "BT -7" |