tests: make test_sink_self_port_user_data actually test a sink
[babeltrace.git] / tests / bindings / python / bt2 / test_connection.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 20import bt2
c7e5224b 21from bt2 import connection as bt2_connection
5813b3a3 22from bt2 import port as bt2_port
811644b8
PP
23
24
25class ConnectionTestCase(unittest.TestCase):
26 def test_create(self):
5602ef81 27 class MyIter(bt2._UserMessageIterator):
811644b8
PP
28 def __next__(self):
29 raise bt2.Stop
30
cfbd7cf3 31 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 32 def __init__(self, config, params, obj):
811644b8
PP
33 self._add_output_port('out')
34
35 class MySink(bt2._UserSinkComponent):
59225a3e 36 def __init__(self, config, params, obj):
811644b8
PP
37 self._add_input_port('in')
38
6a91742b 39 def _user_consume(self):
811644b8
PP
40 raise bt2.Stop
41
42 graph = bt2.Graph()
43 src = graph.add_component(MySource, 'src')
44 sink = graph.add_component(MySink, 'sink')
c7e5224b
FD
45 conn = graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
46 self.assertIs(type(conn), bt2_connection._ConnectionConst)
811644b8
PP
47
48 def test_downstream_port(self):
5602ef81 49 class MyIter(bt2._UserMessageIterator):
811644b8
PP
50 def __next__(self):
51 raise bt2.Stop
52
cfbd7cf3 53 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 54 def __init__(self, config, params, obj):
811644b8
PP
55 self._add_output_port('out')
56
57 class MySink(bt2._UserSinkComponent):
59225a3e 58 def __init__(self, config, params, obj):
811644b8
PP
59 self._add_input_port('in')
60
6a91742b 61 def _user_consume(self):
811644b8
PP
62 raise bt2.Stop
63
64 graph = bt2.Graph()
65 src = graph.add_component(MySource, 'src')
66 sink = graph.add_component(MySink, 'sink')
cfbd7cf3 67 conn = graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
811644b8 68 self.assertEqual(conn.downstream_port.addr, sink.input_ports['in'].addr)
c7e5224b 69 self.assertIs(type(conn), bt2_connection._ConnectionConst)
5813b3a3 70 self.assertIs(type(conn.downstream_port), bt2_port._InputPortConst)
811644b8
PP
71
72 def test_upstream_port(self):
5602ef81 73 class MyIter(bt2._UserMessageIterator):
811644b8
PP
74 def __next__(self):
75 raise bt2.Stop
76
cfbd7cf3 77 class MySource(bt2._UserSourceComponent, message_iterator_class=MyIter):
59225a3e 78 def __init__(self, config, params, obj):
811644b8
PP
79 self._add_output_port('out')
80
81 class MySink(bt2._UserSinkComponent):
59225a3e 82 def __init__(self, config, params, obj):
811644b8
PP
83 self._add_input_port('in')
84
6a91742b 85 def _user_consume(self):
811644b8
PP
86 raise bt2.Stop
87
88 graph = bt2.Graph()
89 src = graph.add_component(MySource, 'src')
90 sink = graph.add_component(MySink, 'sink')
cfbd7cf3 91 conn = graph.connect_ports(src.output_ports['out'], sink.input_ports['in'])
811644b8 92 self.assertEqual(conn.upstream_port.addr, src.output_ports['out'].addr)
5813b3a3 93 self.assertIs(type(conn.upstream_port), bt2_port._OutputPortConst)
d14ddbba
SM
94
95
96if __name__ == '__main__':
97 unittest.main()
This page took 0.051746 seconds and 4 git commands to generate.