`test_query_trace_info.py`: adapt regex to NT path style
[babeltrace.git] / tests / plugins / src.ctf.fs / query / test_query_trace_info.py
CommitLineData
d907165c
SM
1# Copyright (C) 2019 Simon Marchi <simon.marchi@efficios.com>
2#
3# This program is free software; you can redistribute it and/or
4# modify it under the terms of the GNU General Public License
5# as published by the Free Software Foundation; only version 2
6# of the License.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17import unittest
18import bt2
19import os
a38d7650 20import re
f2bad367 21from pathlib import PureWindowsPath, PurePosixPath
d907165c
SM
22
23
bbff0ab4 24test_ctf_traces_path = os.environ['BT_CTF_TRACES_PATH']
d907165c
SM
25
26
1d4ac4b6
FD
27# Key to sort streams in a predictable order.
28def sort_predictably(stream):
29 if 'range-ns' in stream:
30 return stream['range-ns']['begin']
31 else:
32 return stream['paths'][0]
d907165c
SM
33
34
35class QueryTraceInfoClockOffsetTestCase(unittest.TestCase):
d907165c
SM
36 def setUp(self):
37 ctf = bt2.find_plugin('ctf')
38 self._fs = ctf.source_component_classes['fs']
39
cfbd7cf3
FD
40 self._paths = [
41 os.path.join(test_ctf_traces_path, 'intersection', '3eventsintersect')
42 ]
d907165c
SM
43 self._executor = bt2.QueryExecutor()
44
45 def _check(self, trace, offset):
46 self.assertEqual(trace['range-ns']['begin'], 13515309000000000 + offset)
47 self.assertEqual(trace['range-ns']['end'], 13515309000000120 + offset)
cfbd7cf3
FD
48 self.assertEqual(
49 trace['intersection-range-ns']['begin'], 13515309000000070 + offset
50 )
51 self.assertEqual(
52 trace['intersection-range-ns']['end'], 13515309000000100 + offset
53 )
d907165c 54
1d4ac4b6 55 streams = sorted(trace['streams'], key=sort_predictably)
d907165c
SM
56 self.assertEqual(streams[0]['range-ns']['begin'], 13515309000000000 + offset)
57 self.assertEqual(streams[0]['range-ns']['end'], 13515309000000100 + offset)
58 self.assertEqual(streams[1]['range-ns']['begin'], 13515309000000070 + offset)
59 self.assertEqual(streams[1]['range-ns']['end'], 13515309000000120 + offset)
60
61 # Test various cominations of the clock-class-offset-s and
62 # clock-class-offset-ns parameters to trace-info queries.
63
64 # Without clock class offset
65
66 def test_no_clock_class_offset(self):
cfbd7cf3 67 res = self._executor.query(self._fs, 'trace-info', {'paths': self._paths})
d907165c
SM
68 trace = res[0]
69 self._check(trace, 0)
70
71 # With clock-class-offset-s
72
73 def test_clock_class_offset_s(self):
cfbd7cf3
FD
74 res = self._executor.query(
75 self._fs, 'trace-info', {'paths': self._paths, 'clock-class-offset-s': 2}
76 )
d907165c
SM
77 trace = res[0]
78 self._check(trace, 2000000000)
79
80 # With clock-class-offset-ns
81
82 def test_clock_class_offset_ns(self):
cfbd7cf3
FD
83 res = self._executor.query(
84 self._fs, 'trace-info', {'paths': self._paths, 'clock-class-offset-ns': 2}
85 )
d907165c
SM
86 trace = res[0]
87 self._check(trace, 2)
88
89 # With both, negative
90
91 def test_clock_class_offset_both(self):
cfbd7cf3
FD
92 res = self._executor.query(
93 self._fs,
94 'trace-info',
95 {
96 'paths': self._paths,
97 'clock-class-offset-s': -2,
98 'clock-class-offset-ns': -2,
99 },
100 )
d907165c
SM
101 trace = res[0]
102 self._check(trace, -2000000002)
103
104 def test_clock_class_offset_s_wrong_type(self):
d24d5663 105 with self.assertRaises(bt2.InvalidParams):
cfbd7cf3
FD
106 self._executor.query(
107 self._fs,
108 'trace-info',
109 {'paths': self._paths, 'clock-class-offset-s': "2"},
110 )
d907165c
SM
111
112 def test_clock_class_offset_s_wrong_type_none(self):
d24d5663 113 with self.assertRaises(bt2.InvalidParams):
cfbd7cf3
FD
114 self._executor.query(
115 self._fs,
116 'trace-info',
117 {'paths': self._paths, 'clock-class-offset-s': None},
118 )
d907165c
SM
119
120 def test_clock_class_offset_ns_wrong_type(self):
d24d5663 121 with self.assertRaises(bt2.InvalidParams):
cfbd7cf3
FD
122 self._executor.query(
123 self._fs,
124 'trace-info',
125 {'paths': self._paths, 'clock-class-offset-ns': "2"},
126 )
d907165c
SM
127
128 def test_clock_class_offset_ns_wrong_type_none(self):
d24d5663 129 with self.assertRaises(bt2.InvalidParams):
cfbd7cf3
FD
130 self._executor.query(
131 self._fs,
132 'trace-info',
133 {'paths': self._paths, 'clock-class-offset-ns': None},
134 )
d907165c 135
a38d7650
SM
136
137class QueryTraceInfoPortNameTestCase(unittest.TestCase):
138 def setUp(self):
139 ctf = bt2.find_plugin("ctf")
140 self._fs = ctf.source_component_classes["fs"]
141
142 self._executor = bt2.QueryExecutor()
143
144 def test_trace_uuid_stream_class_id_no_stream_id(self):
145 res = self._executor.query(
146 self._fs,
147 "trace-info",
148 {
149 "paths": [
150 os.path.join(
151 test_ctf_traces_path, "intersection", "3eventsintersect"
152 )
153 ]
154 },
155 )
f2bad367
JR
156
157 os_stream_path = PurePosixPath(
158 '/tests/data/ctf-traces/intersection/3eventsintersect/'
159 )
160 if os.environ['BT_OS_TYPE'] == 'mingw':
161 os_stream_path = PureWindowsPath(os_stream_path)
162
a38d7650
SM
163 self.assertEqual(len(res), 1)
164 trace = res[0]
1d4ac4b6 165 streams = sorted(trace["streams"], key=sort_predictably)
a38d7650
SM
166 self.assertEqual(len(streams), 2)
167 self.assertRegexpMatches(
168 str(streams[0]["port-name"]),
f2bad367
JR
169 r"^7afe8fbe-79b8-4f6a-bbc7-d0c782e7ddaf \| 0 \| .*"
170 + re.escape(str(os_stream_path / "test_stream_0"))
171 + r"$",
a38d7650
SM
172 )
173 self.assertRegexpMatches(
174 str(streams[1]["port-name"]),
f2bad367
JR
175 r"^7afe8fbe-79b8-4f6a-bbc7-d0c782e7ddaf \| 0 \| .*"
176 + re.escape(str(os_stream_path / "test_stream_1"))
177 + r"$",
a38d7650
SM
178 )
179
180 def test_trace_uuid_no_stream_class_id_no_stream_id(self):
181 res = self._executor.query(
182 self._fs,
183 "trace-info",
184 {"paths": [os.path.join(test_ctf_traces_path, "succeed", "succeed1")]},
185 )
f2bad367
JR
186
187 os_stream_path = PurePosixPath(
188 '/tests/data/ctf-traces/succeed/succeed1/dummystream'
189 )
190 if os.environ['BT_OS_TYPE'] == 'mingw':
191 os_stream_path = PureWindowsPath(os_stream_path)
192
a38d7650
SM
193 self.assertEqual(len(res), 1)
194 trace = res[0]
1d4ac4b6 195 streams = sorted(trace["streams"], key=sort_predictably)
a38d7650
SM
196 self.assertEqual(len(streams), 1)
197 self.assertRegexpMatches(
198 str(streams[0]["port-name"]),
f2bad367
JR
199 r"^2a6422d0-6cee-11e0-8c08-cb07d7b3a564 \| .*"
200 + re.escape(str(os_stream_path))
201 + r"$",
a38d7650
SM
202 )
203
204
1d4ac4b6
FD
205class QueryTraceInfoRangeTestCase(unittest.TestCase):
206 def setUp(self):
207 ctf = bt2.find_plugin("ctf")
208 self._fs = ctf.source_component_classes["fs"]
209
210 self._executor = bt2.QueryExecutor()
211
212 def test_trace_no_range(self):
213 # This trace has no `timestamp_begin` and `timestamp_end` in its packet
214 # context. The `trace-info` query should omit the `range-ns` fields in
215 # the `trace` and `stream` data structures.
216
217 res = self._executor.query(
218 self._fs,
219 "trace-info",
220 {"paths": [os.path.join(test_ctf_traces_path, "succeed", "succeed1")]},
221 )
222
223 self.assertEqual(len(res), 1)
224 trace = res[0]
225 streams = trace["streams"]
226 self.assertEqual(len(streams), 1)
227
228 self.assertRaises(KeyError, lambda: trace['range-ns'])
229 self.assertRaises(KeyError, lambda: streams[0]['range-ns'])
230
231
d907165c
SM
232if __name__ == '__main__':
233 unittest.main()
This page took 0.038932 seconds and 4 git commands to generate.