bt2: add bt2.get_{greatest_operative,maximal}_mip_version()
[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
811644b8
PP
41 comp = self._create_comp(MySink, 'yaes')
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
e6090a23
PP
51 comp = self._create_comp(MySink, 'yaes', bt2.LoggingLevel.INFO)
52
811644b8
PP
53 def test_class(self):
54 class MySink(bt2._UserSinkComponent):
66964f3f 55 def __init__(comp_self, params, obj):
e8ac1aae 56 self.assertEqual(comp_self.cls, MySink)
811644b8 57
6a91742b 58 def _user_consume(self):
a01b452b
SM
59 pass
60
811644b8
PP
61 self._create_comp(MySink)
62
63 def test_addr(self):
64 class MySink(bt2._UserSinkComponent):
66964f3f 65 def __init__(comp_self, params, obj):
811644b8
PP
66 self.assertIsInstance(comp_self.addr, int)
67 self.assertNotEqual(comp_self.addr, 0)
68
6a91742b 69 def _user_consume(self):
a01b452b
SM
70 pass
71
811644b8
PP
72 self._create_comp(MySink)
73
74 def test_finalize(self):
75 finalized = False
76
77 class MySink(bt2._UserSinkComponent):
6a91742b 78 def _user_consume(self):
a01b452b
SM
79 pass
80
6a91742b 81 def _user_finalize(comp_self):
811644b8
PP
82 nonlocal finalized
83 finalized = True
84
85 graph = bt2.Graph()
894a8df5 86 comp = graph.add_component(MySink, 'lel')
1c9ed2ff 87
811644b8
PP
88 del graph
89 del comp
90 self.assertTrue(finalized)
91
92
93class GenericComponentTestCase(unittest.TestCase):
94 @staticmethod
e6090a23 95 def _create_comp(comp_cls, name=None, log_level=bt2.LoggingLevel.NONE):
811644b8
PP
96 graph = bt2.Graph()
97
98 if name is None:
99 name = 'comp'
100
e6090a23 101 return graph.add_component(comp_cls, name, logging_level=log_level)
811644b8
PP
102
103 def test_name(self):
104 class MySink(bt2._UserSinkComponent):
6a91742b 105 def _user_consume(self):
a01b452b
SM
106 pass
107
811644b8
PP
108 comp = self._create_comp(MySink, 'yaes')
109 self.assertEqual(comp.name, 'yaes')
110
e6090a23
PP
111 def test_logging_level(self):
112 class MySink(bt2._UserSinkComponent):
6a91742b 113 def _user_consume(self):
a01b452b
SM
114 pass
115
770538dd
PP
116 comp = self._create_comp(MySink, 'yaes', bt2.LoggingLevel.WARNING)
117 self.assertEqual(comp.logging_level, bt2.LoggingLevel.WARNING)
e6090a23 118
811644b8
PP
119 def test_class(self):
120 class MySink(bt2._UserSinkComponent):
6a91742b 121 def _user_consume(self):
a01b452b
SM
122 pass
123
811644b8 124 comp = self._create_comp(MySink)
e8ac1aae 125 self.assertEqual(comp.cls, MySink)
811644b8
PP
126
127 def test_addr(self):
128 class MySink(bt2._UserSinkComponent):
6a91742b 129 def _user_consume(self):
a01b452b
SM
130 pass
131
811644b8
PP
132 comp = self._create_comp(MySink)
133 self.assertIsInstance(comp.addr, int)
134 self.assertNotEqual(comp.addr, 0)
This page took 0.046186 seconds and 4 git commands to generate.