Fix: src.ctf.fs: initialize the other_entry variable
[babeltrace.git] / tests / bindings / python / bt2 / test_graph.py
CommitLineData
d2d857a8
MJ
1#
2# Copyright (C) 2019 EfficiOS Inc.
3#
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License
6# as published by the Free Software Foundation; only version 2
7# of the License.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17#
18
811644b8 19import unittest
811644b8
PP
20import bt2
21
22
5f25509b 23class _MyIter(bt2._UserMessageIterator):
8d8b141d 24 def __init__(self, config, self_output_port):
5f25509b
SM
25 self._build_meta()
26 self._at = 0
27
28 def _build_meta(self):
29 self._tc = self._component._create_trace_class()
30 self._t = self._tc()
26fc5aed 31 self._sc = self._tc.create_stream_class(supports_packets=True)
5f25509b
SM
32 self._ec = self._sc.create_event_class(name='salut')
33 self._my_int_ft = self._tc.create_signed_integer_field_class(32)
34 payload_ft = self._tc.create_structure_field_class()
cfbd7cf3 35 payload_ft += [('my_int', self._my_int_ft)]
5f25509b
SM
36 self._ec.payload_field_type = payload_ft
37 self._stream = self._t.create_stream(self._sc)
38 self._packet = self._stream.create_packet()
39
40 def _create_event(self, value):
41 ev = self._ec()
42 ev.payload_field['my_int'] = value
43 ev.packet = self._packet
44 return ev
45
46
811644b8
PP
47class GraphTestCase(unittest.TestCase):
48 def setUp(self):
49 self._graph = bt2.Graph()
50
51 def tearDown(self):
52 del self._graph
53
056deb59
PP
54 def test_create_default(self):
55 bt2.Graph()
56
57 def test_create_known_mip_version(self):
58 bt2.Graph(0)
59
60 def test_create_invalid_mip_version_type(self):
61 with self.assertRaises(TypeError):
62 bt2.Graph('')
63
64 def test_create_unknown_mip_version(self):
65 with self.assertRaisesRegex(ValueError, 'unknown MIP version'):
66 bt2.Graph(1)
811644b8 67
c513d240
SM
68 def test_default_interrupter(self):
69 interrupter = self._graph.default_interrupter
70 self.assertIs(type(interrupter), bt2.Interrupter)
71
811644b8
PP
72 def test_add_component_user_cls(self):
73 class MySink(bt2._UserSinkComponent):
6a91742b 74 def _user_consume(self):
a01b452b 75 pass
811644b8
PP
76
77 comp = self._graph.add_component(MySink, 'salut')
78 self.assertEqual(comp.name, 'salut')
79
80 def test_add_component_gen_cls(self):
81 class MySink(bt2._UserSinkComponent):
6a91742b 82 def _user_consume(self):
a01b452b 83 pass
811644b8
PP
84
85 comp = self._graph.add_component(MySink, 'salut')
5f25509b 86 assert comp
e8ac1aae 87 comp2 = self._graph.add_component(comp.cls, 'salut2')
811644b8
PP
88 self.assertEqual(comp2.name, 'salut2')
89
90 def test_add_component_params(self):
91 comp_params = None
92
93 class MySink(bt2._UserSinkComponent):
59225a3e 94 def __init__(self, config, params, obj):
811644b8
PP
95 nonlocal comp_params
96 comp_params = params
97
6a91742b 98 def _user_consume(self):
a01b452b 99 pass
811644b8
PP
100
101 params = {'hello': 23, 'path': '/path/to/stuff'}
082db648 102 self._graph.add_component(MySink, 'salut', params)
811644b8
PP
103 self.assertEqual(params, comp_params)
104 del comp_params
105
66964f3f
PP
106 def test_add_component_obj_python_comp_cls(self):
107 comp_obj = None
108
109 class MySink(bt2._UserSinkComponent):
59225a3e 110 def __init__(self, config, params, obj):
66964f3f
PP
111 nonlocal comp_obj
112 comp_obj = obj
113
114 def _user_consume(self):
115 pass
116
117 obj = object()
082db648 118 self._graph.add_component(MySink, 'salut', obj=obj)
66964f3f
PP
119 self.assertIs(comp_obj, obj)
120 del comp_obj
121
122 def test_add_component_obj_none_python_comp_cls(self):
123 comp_obj = None
124
125 class MySink(bt2._UserSinkComponent):
59225a3e 126 def __init__(self, config, params, obj):
66964f3f
PP
127 nonlocal comp_obj
128 comp_obj = obj
129
130 def _user_consume(self):
131 pass
132
082db648 133 self._graph.add_component(MySink, 'salut')
66964f3f
PP
134 self.assertIsNone(comp_obj)
135 del comp_obj
136
137 def test_add_component_obj_non_python_comp_cls(self):
66964f3f
PP
138 plugin = bt2.find_plugin('text', find_in_user_dir=False, find_in_sys_dir=False)
139 assert plugin is not None
140 cc = plugin.source_component_classes['dmesg']
141 assert cc is not None
142
143 with self.assertRaises(ValueError):
082db648 144 self._graph.add_component(cc, 'salut', obj=57)
66964f3f 145
811644b8
PP
146 def test_add_component_invalid_cls_type(self):
147 with self.assertRaises(TypeError):
148 self._graph.add_component(int, 'salut')
149
8ef46e79
PP
150 def test_add_component_invalid_logging_level_type(self):
151 class MySink(bt2._UserSinkComponent):
6a91742b 152 def _user_consume(self):
a01b452b 153 pass
8ef46e79
PP
154
155 with self.assertRaises(TypeError):
156 self._graph.add_component(MySink, 'salut', logging_level='yo')
157
158 def test_add_component_invalid_logging_level_value(self):
159 class MySink(bt2._UserSinkComponent):
6a91742b 160 def _user_consume(self):
a01b452b 161 pass
8ef46e79
PP
162
163 with self.assertRaises(ValueError):
164 self._graph.add_component(MySink, 'salut', logging_level=12345)
165
401b7022
FD
166 def test_add_component_invalid_params_type(self):
167 class MySink(bt2._UserSinkComponent):
168 def _user_consume(self):
169 pass
170
171 with self.assertRaises(TypeError):
172 self._graph.add_component(MySink, 'salut', params=12)
173
174 def test_add_component_params_dict(self):
175 params_obj = None
176
177 class MySink(bt2._UserSinkComponent):
178 def __init__(self, config, params, obj):
179 nonlocal params_obj
180 params_obj = params
181
182 def _user_consume(self):
183 pass
184
185 params = {'plage': 12312}
186 self._graph.add_component(MySink, 'salut', params=params)
187
188 # Check equality and not identity because `add_component()` method
189 # converts the Python `dict` to a `bt2.MapValue`.
190 self.assertEqual(params, params_obj)
191
192 def test_add_component_params_mapvalue(self):
193 params_obj = None
194
195 class MySink(bt2._UserSinkComponent):
196 def __init__(self, config, params, obj):
197 nonlocal params_obj
198 params_obj = params
199
200 def _user_consume(self):
201 pass
202
203 params = bt2.MapValue({'beachclub': '121'})
204 self._graph.add_component(MySink, 'salut', params=params)
205
206 self.assertEqual(params, params_obj)
207
8ef46e79
PP
208 def test_add_component_logging_level(self):
209 class MySink(bt2._UserSinkComponent):
6a91742b 210 def _user_consume(self):
a01b452b 211 pass
8ef46e79 212
cfbd7cf3
FD
213 comp = self._graph.add_component(
214 MySink, 'salut', logging_level=bt2.LoggingLevel.DEBUG
215 )
8ef46e79
PP
216 self.assertEqual(comp.logging_level, bt2.LoggingLevel.DEBUG)
217
811644b8 218 def test_connect_ports(self):
5c61fb9d
SM
219 class MySource(
220 bt2._UserSourceComponent, message_iterator_class=bt2._UserMessageIterator
221 ):
59225a3e 222 def __init__(self, config, params, obj):
811644b8
PP
223 self._add_output_port('out')
224
225 class MySink(bt2._UserSinkComponent):
59225a3e 226 def __init__(self, config, params, obj):
811644b8
PP
227 self._add_input_port('in')
228
6a91742b 229 def _user_consume(self):
811644b8
PP
230 raise bt2.Stop
231
232 src = self._graph.add_component(MySource, 'src')
233 sink = self._graph.add_component(MySink, 'sink')
5f25509b 234
cfbd7cf3
FD
235 conn = self._graph.connect_ports(
236 src.output_ports['out'], sink.input_ports['in']
237 )
811644b8
PP
238 self.assertTrue(src.output_ports['out'].is_connected)
239 self.assertTrue(sink.input_ports['in'].is_connected)
89b5033a
FD
240 self.assertEqual(src.output_ports['out'].connection.addr, conn.addr)
241 self.assertEqual(sink.input_ports['in'].connection.addr, conn.addr)
811644b8
PP
242
243 def test_connect_ports_invalid_direction(self):
5c61fb9d
SM
244 class MySource(
245 bt2._UserSourceComponent, message_iterator_class=bt2._UserMessageIterator
246 ):
59225a3e 247 def __init__(self, config, params, obj):
811644b8
PP
248 self._add_output_port('out')
249
250 class MySink(bt2._UserSinkComponent):
59225a3e 251 def __init__(self, config, params, obj):
811644b8
PP
252 self._add_input_port('in')
253
6a91742b 254 def _user_consume(self):
811644b8
PP
255 raise bt2.Stop
256
257 src = self._graph.add_component(MySource, 'src')
258 sink = self._graph.add_component(MySink, 'sink')
259
260 with self.assertRaises(TypeError):
082db648 261 self._graph.connect_ports(sink.input_ports['in'], src.output_ports['out'])
811644b8 262
9b4f9b42
PP
263 def test_add_interrupter(self):
264 class MyIter(bt2._UserMessageIterator):
265 def __next__(self):
266 raise TypeError
267
268 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 269 def __init__(self, config, params, obj):
9b4f9b42
PP
270 self._add_output_port('out')
271
272 class MySink(bt2._UserSinkComponent):
59225a3e 273 def __init__(self, config, params, obj):
9b4f9b42
PP
274 self._add_input_port('in')
275
6a91742b 276 def _user_consume(self):
9b4f9b42
PP
277 next(self._msg_iter)
278
6a91742b 279 def _user_graph_is_configured(self):
9a2c8b8e 280 self._msg_iter = self._create_message_iterator(self._input_ports['in'])
9b4f9b42
PP
281
282 # add two interrupters, set one of them
283 interrupter1 = bt2.Interrupter()
284 interrupter2 = bt2.Interrupter()
285 self._graph.add_interrupter(interrupter1)
286 src = self._graph.add_component(MySource, 'src')
287 sink = self._graph.add_component(MySink, 'sink')
288 self._graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
289 self._graph.add_interrupter(interrupter2)
290
291 with self.assertRaises(bt2._Error):
292 self._graph.run()
293
294 interrupter2.set()
295
296 with self.assertRaises(bt2.TryAgain):
297 self._graph.run()
298
299 interrupter2.reset()
300
301 with self.assertRaises(bt2._Error):
302 self._graph.run()
303
304 # Test that Graph.run() raises bt2.Interrupted if the graph gets
305 # interrupted during execution.
306 def test_interrupt_while_running(self):
5f25509b 307 class MyIter(_MyIter):
1d915789 308 def __next__(self):
5f25509b 309 return self._create_stream_beginning_message(self._stream)
1d915789 310
cfbd7cf3 311 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 312 def __init__(self, config, params, obj):
1d915789
PP
313 self._add_output_port('out')
314
315 class MySink(bt2._UserSinkComponent):
59225a3e 316 def __init__(self, config, params, obj):
1d915789
PP
317 self._add_input_port('in')
318
6a91742b 319 def _user_consume(self):
9b4f9b42 320 # Pretend that somebody asynchronously interrupted the graph.
5f25509b 321 nonlocal graph
c513d240 322 graph.default_interrupter.set()
5f25509b 323 return next(self._msg_iter)
1d915789 324
6a91742b 325 def _user_graph_is_configured(self):
9a2c8b8e 326 self._msg_iter = self._create_message_iterator(self._input_ports['in'])
1d915789 327
9b4f9b42
PP
328 graph = self._graph
329 up = self._graph.add_component(MySource, 'down')
330 down = self._graph.add_component(MySink, 'up')
331 self._graph.connect_ports(up.output_ports['out'], down.input_ports['in'])
332
333 with self.assertRaises(bt2.TryAgain):
334 self._graph.run()
811644b8
PP
335
336 def test_run(self):
5f25509b 337 class MyIter(_MyIter):
811644b8 338 def __next__(self):
5f25509b
SM
339 if self._at == 9:
340 raise StopIteration
341
342 if self._at == 0:
343 msg = self._create_stream_beginning_message(self._stream)
344 elif self._at == 1:
345 msg = self._create_packet_beginning_message(self._packet)
346 elif self._at == 7:
347 msg = self._create_packet_end_message(self._packet)
348 elif self._at == 8:
349 msg = self._create_stream_end_message(self._stream)
350 else:
351 msg = self._create_event_message(self._ec, self._packet)
811644b8 352
811644b8 353 self._at += 1
5602ef81 354 return msg
811644b8 355
cfbd7cf3 356 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 357 def __init__(self, config, params, obj):
811644b8
PP
358 self._add_output_port('out')
359
360 class MySink(bt2._UserSinkComponent):
59225a3e 361 def __init__(self, config, params, obj):
5f25509b 362 self._input_port = self._add_input_port('in')
811644b8
PP
363 self._at = 0
364
6a91742b 365 def _user_consume(comp_self):
5602ef81 366 msg = next(comp_self._msg_iter)
811644b8
PP
367
368 if comp_self._at == 0:
f0a42b33 369 self.assertIs(type(msg), bt2._StreamBeginningMessageConst)
811644b8 370 elif comp_self._at == 1:
f0a42b33 371 self.assertIs(type(msg), bt2._PacketBeginningMessageConst)
811644b8 372 elif comp_self._at >= 2 and comp_self._at <= 6:
f0a42b33 373 self.assertIs(type(msg), bt2._EventMessageConst)
e8ac1aae 374 self.assertEqual(msg.event.cls.name, 'salut')
811644b8 375 elif comp_self._at == 7:
f0a42b33 376 self.assertIs(type(msg), bt2._PacketEndMessageConst)
811644b8 377 elif comp_self._at == 8:
f0a42b33 378 self.assertIs(type(msg), bt2._StreamEndMessageConst)
811644b8
PP
379
380 comp_self._at += 1
381
6a91742b 382 def _user_graph_is_configured(self):
9a2c8b8e 383 self._msg_iter = self._create_message_iterator(self._input_port)
811644b8
PP
384
385 src = self._graph.add_component(MySource, 'src')
386 sink = self._graph.add_component(MySink, 'sink')
082db648 387 self._graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
811644b8
PP
388 self._graph.run()
389
8cc0e6ea
PP
390 def test_run_once(self):
391 class MyIter(_MyIter):
392 pass
393
394 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 395 def __init__(self, config, params, obj):
8cc0e6ea
PP
396 self._add_output_port('out')
397
398 class MySink(bt2._UserSinkComponent):
59225a3e 399 def __init__(self, config, params, obj):
8cc0e6ea
PP
400 self._input_port = self._add_input_port('in')
401
402 def _user_consume(comp_self):
403 nonlocal run_count
404 run_count += 1
405 raise bt2.TryAgain
406
407 run_count = 0
408 src = self._graph.add_component(MySource, 'src')
409 sink = self._graph.add_component(MySink, 'sink')
082db648 410 self._graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
8cc0e6ea
PP
411
412 with self.assertRaises(bt2.TryAgain):
413 self._graph.run_once()
414
415 self.assertEqual(run_count, 1)
416
417 def test_run_once_stops(self):
418 class MyIter(_MyIter):
419 pass
420
421 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 422 def __init__(self, config, params, obj):
8cc0e6ea
PP
423 self._add_output_port('out')
424
425 class MySink(bt2._UserSinkComponent):
59225a3e 426 def __init__(self, config, params, obj):
8cc0e6ea
PP
427 self._input_port = self._add_input_port('in')
428
429 def _user_consume(comp_self):
430 raise bt2.Stop
431
432 src = self._graph.add_component(MySource, 'src')
433 sink = self._graph.add_component(MySink, 'sink')
082db648 434 self._graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
8cc0e6ea
PP
435
436 with self.assertRaises(bt2.Stop):
437 self._graph.run_once()
438
811644b8 439 def test_run_again(self):
5f25509b 440 class MyIter(_MyIter):
811644b8 441 def __next__(self):
5f25509b 442 if self._at == 3:
811644b8
PP
443 raise bt2.TryAgain
444
5f25509b
SM
445 if self._at == 0:
446 msg = self._create_stream_beginning_message(self._stream)
447 elif self._at == 1:
448 msg = self._create_packet_beginning_message(self._packet)
449 elif self._at == 2:
450 msg = self._create_event_message(self._ec, self._packet)
451
811644b8 452 self._at += 1
5602ef81 453 return msg
811644b8 454
cfbd7cf3 455 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 456 def __init__(self, config, params, obj):
811644b8
PP
457 self._add_output_port('out')
458
459 class MySink(bt2._UserSinkComponent):
59225a3e 460 def __init__(self, config, params, obj):
5f25509b 461 self._input_port = self._add_input_port('in')
811644b8
PP
462 self._at = 0
463
6a91742b 464 def _user_consume(comp_self):
5f25509b 465 msg = next(comp_self._msg_iter)
811644b8 466 if comp_self._at == 0:
f0a42b33 467 self.assertIs(type(msg), bt2._StreamBeginningMessageConst)
811644b8 468 elif comp_self._at == 1:
f0a42b33 469 self.assertIs(type(msg), bt2._PacketBeginningMessageConst)
5f25509b 470 elif comp_self._at == 2:
f0a42b33 471 self.assertIs(type(msg), bt2._EventMessageConst)
811644b8 472 raise bt2.TryAgain
5f25509b
SM
473 else:
474 pass
811644b8
PP
475
476 comp_self._at += 1
477
6a91742b 478 def _user_graph_is_configured(self):
9a2c8b8e 479 self._msg_iter = self._create_message_iterator(self._input_port)
811644b8
PP
480
481 src = self._graph.add_component(MySource, 'src')
482 sink = self._graph.add_component(MySink, 'sink')
082db648 483 self._graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
811644b8
PP
484
485 with self.assertRaises(bt2.TryAgain):
486 self._graph.run()
487
811644b8 488 def test_run_error(self):
5f25509b 489 raised_in_sink = False
811644b8 490
5f25509b 491 class MyIter(_MyIter):
811644b8 492 def __next__(self):
5f25509b
SM
493 # If this gets called after the sink raised an exception, it is
494 # an error.
495 nonlocal raised_in_sink
496 assert raised_in_sink is False
497
498 if self._at == 0:
499 msg = self._create_stream_beginning_message(self._stream)
500 elif self._at == 1:
501 msg = self._create_packet_beginning_message(self._packet)
502 elif self._at == 2 or self._at == 3:
503 msg = self._create_event_message(self._ec, self._packet)
504 else:
811644b8 505 raise bt2.TryAgain
811644b8 506 self._at += 1
5602ef81 507 return msg
811644b8 508
cfbd7cf3 509 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 510 def __init__(self, config, params, obj):
811644b8
PP
511 self._add_output_port('out')
512
513 class MySink(bt2._UserSinkComponent):
59225a3e 514 def __init__(self, config, params, obj):
5f25509b 515 self._input_port = self._add_input_port('in')
811644b8
PP
516 self._at = 0
517
6a91742b 518 def _user_consume(comp_self):
5f25509b 519 msg = next(comp_self._msg_iter)
811644b8 520 if comp_self._at == 0:
f0a42b33 521 self.assertIs(type(msg), bt2._StreamBeginningMessageConst)
811644b8 522 elif comp_self._at == 1:
f0a42b33 523 self.assertIs(type(msg), bt2._PacketBeginningMessageConst)
5f25509b 524 elif comp_self._at == 2:
f0a42b33 525 self.assertIs(type(msg), bt2._EventMessageConst)
5f25509b
SM
526 elif comp_self._at == 3:
527 nonlocal raised_in_sink
528 raised_in_sink = True
811644b8
PP
529 raise RuntimeError('error!')
530
531 comp_self._at += 1
532
6a91742b 533 def _user_graph_is_configured(self):
9a2c8b8e 534 self._msg_iter = self._create_message_iterator(self._input_port)
811644b8
PP
535
536 src = self._graph.add_component(MySource, 'src')
537 sink = self._graph.add_component(MySink, 'sink')
082db648 538 self._graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
811644b8 539
694c792b 540 with self.assertRaises(bt2._Error):
811644b8
PP
541 self._graph.run()
542
5f25509b 543 def test_listeners(self):
5c61fb9d
SM
544 class MySource(
545 bt2._UserSourceComponent, message_iterator_class=bt2._UserMessageIterator
546 ):
59225a3e 547 def __init__(self, config, params, obj):
1d915789 548 self._add_output_port('out')
5f25509b 549 self._add_output_port('zero')
1d915789
PP
550
551 class MySink(bt2._UserSinkComponent):
59225a3e 552 def __init__(self, config, params, obj):
1d915789 553 self._add_input_port('in')
1d915789 554
6a91742b 555 def _user_consume(self):
5f25509b 556 raise bt2.Stop
1d915789 557
6a91742b 558 def _user_port_connected(self, port, other_port):
5f25509b 559 self._add_input_port('taste')
1d915789 560
5f25509b
SM
561 def port_added_listener(component, port):
562 nonlocal calls
563 calls.append((port_added_listener, component, port))
1d915789 564
5f25509b
SM
565 calls = []
566 self._graph.add_port_added_listener(port_added_listener)
1d915789
PP
567 src = self._graph.add_component(MySource, 'src')
568 sink = self._graph.add_component(MySink, 'sink')
cfbd7cf3 569 self._graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
1d915789 570
2945edfe 571 self.assertEqual(len(calls), 4)
5f25509b
SM
572
573 self.assertIs(calls[0][0], port_added_listener)
574 self.assertEqual(calls[0][1].name, 'src')
575 self.assertEqual(calls[0][2].name, 'out')
576
577 self.assertIs(calls[1][0], port_added_listener)
578 self.assertEqual(calls[1][1].name, 'src')
579 self.assertEqual(calls[1][2].name, 'zero')
580
581 self.assertIs(calls[2][0], port_added_listener)
582 self.assertEqual(calls[2][1].name, 'sink')
583 self.assertEqual(calls[2][2].name, 'in')
584
585 self.assertIs(calls[3][0], port_added_listener)
586 self.assertEqual(calls[3][1].name, 'sink')
587 self.assertEqual(calls[3][2].name, 'taste')
588
5f25509b 589 def test_invalid_listeners(self):
5c61fb9d
SM
590 class MySource(
591 bt2._UserSourceComponent, message_iterator_class=bt2._UserMessageIterator
592 ):
59225a3e 593 def __init__(self, config, params, obj):
811644b8
PP
594 self._add_output_port('out')
595 self._add_output_port('zero')
596
811644b8 597 class MySink(bt2._UserSinkComponent):
59225a3e 598 def __init__(self, config, params, obj):
811644b8
PP
599 self._add_input_port('in')
600
6a91742b 601 def _user_consume(self):
811644b8
PP
602 raise bt2.Stop
603
6a91742b 604 def _user_port_connected(self, port, other_port):
811644b8
PP
605 self._add_input_port('taste')
606
5f25509b
SM
607 with self.assertRaises(TypeError):
608 self._graph.add_port_added_listener(1234)
811644b8 609
5f25509b
SM
610 def test_raise_in_component_init(self):
611 class MySink(bt2._UserSinkComponent):
59225a3e 612 def __init__(self, config, params, obj):
5f25509b 613 raise ValueError('oops!')
811644b8 614
6a91742b 615 def _user_consume(self):
5f25509b
SM
616 raise bt2.Stop
617
618 graph = bt2.Graph()
619
694c792b 620 with self.assertRaises(bt2._Error):
5f25509b
SM
621 graph.add_component(MySink, 'comp')
622
623 def test_raise_in_port_added_listener(self):
624 class MySink(bt2._UserSinkComponent):
59225a3e 625 def __init__(self, config, params, obj):
5f25509b
SM
626 self._add_input_port('in')
627
6a91742b 628 def _user_consume(self):
5f25509b
SM
629 raise bt2.Stop
630
631 def port_added_listener(component, port):
632 raise ValueError('oh noes!')
633
634 graph = bt2.Graph()
635 graph.add_port_added_listener(port_added_listener)
636
694c792b 637 with self.assertRaises(bt2._Error):
5f25509b
SM
638 graph.add_component(MySink, 'comp')
639
d14ddbba
SM
640
641if __name__ == '__main__':
642 unittest.main()
This page took 0.08299 seconds and 4 git commands to generate.