bt2: add `if __name__ == '__main__'` snippet to all tests
[babeltrace.git] / tests / bindings / python / bt2 / test_component.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
23class UserComponentTestCase(unittest.TestCase):
24 @staticmethod
e6090a23 25 def _create_comp(comp_cls, name=None, log_level=bt2.LoggingLevel.NONE):
811644b8
PP
26 graph = bt2.Graph()
27
28 if name is None:
29 name = 'comp'
30
e6090a23 31 return graph.add_component(comp_cls, name, logging_level=log_level)
811644b8
PP
32
33 def test_name(self):
34 class MySink(bt2._UserSinkComponent):
66964f3f 35 def __init__(comp_self, params, obj):
811644b8
PP
36 self.assertEqual(comp_self.name, 'yaes')
37
6a91742b 38 def _user_consume(self):
a01b452b
SM
39 pass
40
082db648 41 self._create_comp(MySink, 'yaes')
811644b8 42
e6090a23
PP
43 def test_logging_level(self):
44 class MySink(bt2._UserSinkComponent):
66964f3f 45 def __init__(comp_self, params, obj):
e6090a23
PP
46 self.assertEqual(comp_self.logging_level, bt2.LoggingLevel.INFO)
47
6a91742b 48 def _user_consume(self):
a01b452b
SM
49 pass
50
082db648 51 self._create_comp(MySink, 'yaes', bt2.LoggingLevel.INFO)
e6090a23 52
056deb59
PP
53 def test_graph_mip_version(self):
54 class MySink(bt2._UserSinkComponent):
55 def __init__(comp_self, params, obj):
56 self.assertEqual(comp_self._graph_mip_version, 0)
57
58 def _user_consume(self):
59 pass
60
082db648 61 self._create_comp(MySink, 'yaes', bt2.LoggingLevel.INFO)
056deb59 62
811644b8
PP
63 def test_class(self):
64 class MySink(bt2._UserSinkComponent):
66964f3f 65 def __init__(comp_self, params, obj):
e8ac1aae 66 self.assertEqual(comp_self.cls, MySink)
811644b8 67
6a91742b 68 def _user_consume(self):
a01b452b
SM
69 pass
70
811644b8
PP
71 self._create_comp(MySink)
72
73 def test_addr(self):
74 class MySink(bt2._UserSinkComponent):
66964f3f 75 def __init__(comp_self, params, obj):
811644b8
PP
76 self.assertIsInstance(comp_self.addr, int)
77 self.assertNotEqual(comp_self.addr, 0)
78
6a91742b 79 def _user_consume(self):
a01b452b
SM
80 pass
81
811644b8
PP
82 self._create_comp(MySink)
83
84 def test_finalize(self):
85 finalized = False
86
87 class MySink(bt2._UserSinkComponent):
6a91742b 88 def _user_consume(self):
a01b452b
SM
89 pass
90
6a91742b 91 def _user_finalize(comp_self):
811644b8
PP
92 nonlocal finalized
93 finalized = True
94
95 graph = bt2.Graph()
894a8df5 96 comp = graph.add_component(MySink, 'lel')
1c9ed2ff 97
811644b8
PP
98 del graph
99 del comp
100 self.assertTrue(finalized)
101
102
103class GenericComponentTestCase(unittest.TestCase):
104 @staticmethod
e6090a23 105 def _create_comp(comp_cls, name=None, log_level=bt2.LoggingLevel.NONE):
811644b8
PP
106 graph = bt2.Graph()
107
108 if name is None:
109 name = 'comp'
110
e6090a23 111 return graph.add_component(comp_cls, name, logging_level=log_level)
811644b8
PP
112
113 def test_name(self):
114 class MySink(bt2._UserSinkComponent):
6a91742b 115 def _user_consume(self):
a01b452b
SM
116 pass
117
811644b8
PP
118 comp = self._create_comp(MySink, 'yaes')
119 self.assertEqual(comp.name, 'yaes')
120
e6090a23
PP
121 def test_logging_level(self):
122 class MySink(bt2._UserSinkComponent):
6a91742b 123 def _user_consume(self):
a01b452b
SM
124 pass
125
770538dd
PP
126 comp = self._create_comp(MySink, 'yaes', bt2.LoggingLevel.WARNING)
127 self.assertEqual(comp.logging_level, bt2.LoggingLevel.WARNING)
e6090a23 128
811644b8
PP
129 def test_class(self):
130 class MySink(bt2._UserSinkComponent):
6a91742b 131 def _user_consume(self):
a01b452b
SM
132 pass
133
811644b8 134 comp = self._create_comp(MySink)
e8ac1aae 135 self.assertEqual(comp.cls, MySink)
811644b8
PP
136
137 def test_addr(self):
138 class MySink(bt2._UserSinkComponent):
6a91742b 139 def _user_consume(self):
a01b452b
SM
140 pass
141
811644b8
PP
142 comp = self._create_comp(MySink)
143 self.assertIsInstance(comp.addr, int)
144 self.assertNotEqual(comp.addr, 0)
d14ddbba
SM
145
146
147if __name__ == '__main__':
148 unittest.main()
This page took 0.046576 seconds and 4 git commands to generate.