Apply black code formatter on all Python code
[babeltrace.git] / tests / bindings / python / bt2 / test_packet.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 19from collections import OrderedDict
9cf643d1 20import unittest
838a5a52 21from utils import run_in_component_init
9cf643d1
PP
22
23
24class PacketTestCase(unittest.TestCase):
838a5a52
SM
25 @staticmethod
26 def _create_packet(with_pc):
27 def create_tc_cc(comp_self):
28 cc = comp_self._create_clock_class(frequency=1000, name='my_cc')
29 tc = comp_self._create_trace_class()
30 return cc, tc
9cf643d1 31
838a5a52 32 clock_class, tc = run_in_component_init(create_tc_cc)
9cf643d1
PP
33
34 # stream event context
838a5a52 35 sec = tc.create_structure_field_class()
45c51519 36 sec += [
838a5a52
SM
37 ('cpu_id', tc.create_signed_integer_field_class(8)),
38 ('stuff', tc.create_real_field_class()),
45c51519 39 ]
9cf643d1
PP
40
41 # packet context
838a5a52 42 pc = None
9cf643d1 43 if with_pc:
838a5a52 44 pc = tc.create_structure_field_class()
45c51519 45 pc += [
838a5a52
SM
46 ('something', tc.create_signed_integer_field_class(8)),
47 ('something_else', tc.create_real_field_class()),
48 ('events_discarded', tc.create_unsigned_integer_field_class(64)),
49 ('packet_seq_num', tc.create_unsigned_integer_field_class(64)),
45c51519 50 ]
9cf643d1
PP
51
52 # stream class
cfbd7cf3
FD
53 sc = tc.create_stream_class(
54 default_clock_class=clock_class,
55 event_common_context_field_class=sec,
56 packet_context_field_class=pc,
57 supports_packets=True,
58 )
9cf643d1
PP
59
60 # event context
838a5a52 61 ec = tc.create_structure_field_class()
45c51519 62 ec += [
838a5a52
SM
63 ('ant', tc.create_signed_integer_field_class(16)),
64 ('msg', tc.create_string_field_class()),
45c51519 65 ]
9cf643d1
PP
66
67 # event payload
838a5a52 68 ep = tc.create_structure_field_class()
45c51519 69 ep += [
838a5a52
SM
70 ('giraffe', tc.create_signed_integer_field_class(32)),
71 ('gnu', tc.create_signed_integer_field_class(8)),
72 ('mosquito', tc.create_signed_integer_field_class(8)),
45c51519 73 ]
9cf643d1
PP
74
75 # event class
838a5a52
SM
76 event_class = sc.create_event_class(name='ec', payload_field_class=ep)
77 event_class.common_context_field_class = ec
9cf643d1 78
838a5a52
SM
79 # trace
80 trace = tc()
9cf643d1
PP
81
82 # stream
838a5a52 83 stream = trace.create_stream(sc)
9cf643d1
PP
84
85 # packet
838a5a52 86 return stream.create_packet(), stream, pc
9cf643d1
PP
87
88 def test_attr_stream(self):
838a5a52
SM
89 packet, stream, _ = self._create_packet(with_pc=True)
90 self.assertEqual(packet.stream.addr, stream.addr)
9cf643d1 91
838a5a52
SM
92 def test_context_field(self):
93 packet, stream, pc_fc = self._create_packet(with_pc=True)
94 self.assertEqual(packet.context_field.field_class.addr, pc_fc.addr)
9cf643d1
PP
95
96 def test_no_context_field(self):
838a5a52 97 packet, _, _ = self._create_packet(with_pc=False)
9cf643d1 98 self.assertIsNone(packet.context_field)
This page took 0.046715 seconds and 4 git commands to generate.