sink.text.details: print user attributes
[babeltrace.git] / tests / bindings / python / bt2 / test_trace.py
CommitLineData
32d2d479
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
cd03c43c 19import uuid
9cf643d1 20import unittest
f377a958 21from utils import get_default_trace_class
9cf643d1
PP
22
23
24class TraceTestCase(unittest.TestCase):
25 def setUp(self):
f377a958 26 self._tc = get_default_trace_class()
9cf643d1
PP
27
28 def test_create_default(self):
f377a958 29 trace = self._tc()
cd03c43c
PP
30 self.assertIsNone(trace.name)
31 self.assertIsNone(trace.uuid)
32 self.assertEqual(len(trace.env), 0)
9cf643d1 33
f377a958 34 def test_create_invalid_name(self):
9cf643d1 35 with self.assertRaises(TypeError):
f377a958 36 self._tc(name=17)
9cf643d1 37
a7f0580d 38 def test_attr_trace_class(self):
cd03c43c 39 trace = self._tc()
a7f0580d
PP
40 self.assertEqual(trace.cls.addr, self._tc.addr)
41
cd03c43c
PP
42 def test_attr_name(self):
43 trace = self._tc(name='mein trace')
44 self.assertEqual(trace.name, 'mein trace')
45
46 def test_attr_uuid(self):
47 trace = self._tc(uuid=uuid.UUID('da7d6b6f-3108-4706-89bd-ab554732611b'))
48 self.assertEqual(trace.uuid, uuid.UUID('da7d6b6f-3108-4706-89bd-ab554732611b'))
49
50 def test_env_get(self):
51 trace = self._tc(env={'hello': 'you', 'foo': -5})
52 self.assertEqual(trace.env['hello'], 'you')
53 self.assertEqual(trace.env['foo'], -5)
54
55 def test_env_get_non_existent(self):
56 trace = self._tc(env={'hello': 'you', 'foo': -5})
57
58 with self.assertRaises(KeyError):
59 trace.env['lel']
60
f377a958
SM
61 def test_len(self):
62 trace = self._tc()
63 sc = self._tc.create_stream_class()
64 self.assertEqual(len(trace), 0)
9cf643d1 65
f377a958
SM
66 trace.create_stream(sc)
67 self.assertEqual(len(trace), 1)
9cf643d1 68
f377a958
SM
69 def _create_trace_with_some_streams(self):
70 sc = self._tc.create_stream_class(assigns_automatic_stream_id=False)
71 trace = self._tc()
72 trace.create_stream(sc, id=12)
73 trace.create_stream(sc, id=15)
74 trace.create_stream(sc, id=17)
9cf643d1 75
f377a958 76 return trace
9cf643d1
PP
77
78 def test_iter(self):
f377a958
SM
79 trace = self._create_trace_with_some_streams()
80 stream_ids = set(trace)
81 self.assertEqual(stream_ids, {12, 15, 17})
9cf643d1 82
f377a958
SM
83 def test_getitem(self):
84 trace = self._create_trace_with_some_streams()
9cf643d1 85
f377a958 86 self.assertEqual(trace[12].id, 12)
9cf643d1 87
f377a958
SM
88 def test_getitem_invalid_key(self):
89 trace = self._create_trace_with_some_streams()
9cf643d1 90 with self.assertRaises(KeyError):
f377a958 91 trace[18]
9cf643d1 92
f377a958
SM
93 def test_destruction_listener(self):
94 def on_trace_class_destruction(trace_class):
95 nonlocal trace_class_destroyed
96 trace_class_destroyed = True
f6a5e476 97
f377a958
SM
98 def on_trace_destruction(trace):
99 nonlocal trace_destroyed
100 trace_destroyed = True
f6a5e476 101
f377a958
SM
102 trace_destroyed = False
103 trace_class_destroyed = False
f6a5e476 104
f377a958
SM
105 trace_class = get_default_trace_class()
106 stream_class = trace_class.create_stream_class()
107 trace = trace_class()
108 stream = trace.create_stream(stream_class)
f6a5e476 109
f377a958
SM
110 trace_class.add_destruction_listener(on_trace_class_destruction)
111 trace.add_destruction_listener(on_trace_destruction)
f6a5e476 112
f377a958
SM
113 self.assertFalse(trace_class_destroyed)
114 self.assertFalse(trace_destroyed)
9cf643d1 115
f377a958 116 del trace
9cf643d1 117
f377a958
SM
118 self.assertFalse(trace_class_destroyed)
119 self.assertFalse(trace_destroyed)
9cf643d1 120
f377a958 121 del stream
9cf643d1 122
f377a958
SM
123 self.assertFalse(trace_class_destroyed)
124 self.assertTrue(trace_destroyed)
9cf643d1 125
f377a958 126 del trace_class
9cf643d1 127
f377a958
SM
128 self.assertFalse(trace_class_destroyed)
129 self.assertTrue(trace_destroyed)
9cf643d1 130
f377a958 131 del stream_class
9cf643d1 132
f377a958
SM
133 self.assertTrue(trace_class_destroyed)
134 self.assertTrue(trace_destroyed)
This page took 0.048079 seconds and 4 git commands to generate.