tests: Add missing copyright headers
[babeltrace.git] / tests / bindings / python / bt2 / test_event_class.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
9cf643d1 19import unittest
9cf643d1 20import bt2
65531d55 21from utils import get_default_trace_class
9cf643d1
PP
22
23
24class EventClassTestCase(unittest.TestCase):
25 def setUp(self):
65531d55
SM
26 self._tc = get_default_trace_class()
27
28 self._context_fc = self._tc.create_structure_field_class()
d47b87ac
SM
29 self._context_fc.append_member('allo', self._tc.create_string_field_class())
30 self._context_fc.append_member('zola', self._tc.create_signed_integer_field_class(18))
65531d55
SM
31
32 self._payload_fc = self._tc.create_structure_field_class()
d47b87ac 33 self._payload_fc.append_member('zoom', self._tc.create_string_field_class())
9cf643d1 34
65531d55 35 self._stream_class = self._tc.create_stream_class(assigns_automatic_event_class_id=True)
9cf643d1 36
65531d55
SM
37 def test_create_default(self):
38 ec = self._stream_class.create_event_class()
9cf643d1 39
65531d55
SM
40 self.assertIsNone(ec.name, 'my_event')
41 self.assertTrue(type(ec.id), int)
42 self.assertIsNone(ec.specific_context_field_class)
43 self.assertIsNone(ec.payload_field_class)
44 self.assertIsNone(ec.emf_uri)
45 self.assertIsNone(ec.log_level)
46
47 def test_create_invalid_id(self):
48 sc = self._tc.create_stream_class(assigns_automatic_event_class_id=False)
9cf643d1 49 with self.assertRaises(TypeError):
65531d55
SM
50 sc.create_event_class(id='lel')
51
52 def test_create_specific_context_field_class(self):
53 fc = self._tc.create_structure_field_class()
54 ec = self._stream_class.create_event_class(specific_context_field_class=fc)
55 self.assertEqual(ec.specific_context_field_class.addr, fc.addr)
9cf643d1 56
65531d55
SM
57 def test_create_invalid_specific_context_field_class(self):
58 with self.assertRaises(TypeError):
59 self._stream_class.create_event_class(specific_context_field_class='lel')
9cf643d1 60
65531d55
SM
61 def test_create_payload_field_class(self):
62 fc = self._tc.create_structure_field_class()
63 ec = self._stream_class.create_event_class(payload_field_class=fc)
64 self.assertEqual(ec.payload_field_class.addr, fc.addr)
9cf643d1 65
65531d55 66 def test_create_invalid_payload_field_class(self):
9cf643d1 67 with self.assertRaises(TypeError):
65531d55
SM
68 self._stream_class.create_event_class(payload_field_class='lel')
69
70 def test_create_name(self):
71 ec = self._stream_class.create_event_class(name='viande à chien')
72 self.assertEqual(ec.name, 'viande à chien')
73
74 def test_create_invalid_name(self):
75 with self.assertRaises(TypeError):
76 self._stream_class.create_event_class(name=2)
77
78 def test_emf_uri(self):
79 ec = self._stream_class.create_event_class(emf_uri='salut')
80 self.assertEqual(ec.emf_uri, 'salut')
81
82 def test_create_invalid_emf_uri(self):
811644b8 83 with self.assertRaises(TypeError):
65531d55 84 self._stream_class.create_event_class(emf_uri=23)
9cf643d1 85
65531d55
SM
86 def test_create_log_level(self):
87 ec = self._stream_class.create_event_class(log_level=bt2.EventClassLogLevel.EMERGENCY)
88 self.assertEqual(ec.log_level, bt2.EventClassLogLevel.EMERGENCY)
9cf643d1 89
65531d55 90 def test_create_invalid_log_level(self):
811644b8 91 with self.assertRaises(ValueError):
65531d55
SM
92 self._stream_class.create_event_class(log_level='zoom')
93
94 def test_stream_class(self):
95 ec = self._stream_class.create_event_class()
96 self.assertEqual(ec.stream_class.addr, self._stream_class.addr)
This page took 0.044123 seconds and 4 git commands to generate.