Move to kernel style SPDX license identifiers
[babeltrace.git] / tests / plugins / src.ctf.fs / query / test_query_support_info.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # Copyright (C) 2019 Simon Marchi <simon.marchi@efficios.com>
4 #
5
6 import unittest
7 import bt2
8 import os
9
10
11 session_rotation_trace_path = os.path.join(
12 os.environ['BT_CTF_TRACES_PATH'], 'succeed', 'session-rotation'
13 )
14
15
16 trace_10352_1 = os.path.join(
17 session_rotation_trace_path,
18 'archives',
19 '20190826T155748-0400-20190826T155751-0400-1',
20 'ust',
21 'pid',
22 'hello-ust-10352-20190826-155748',
23 )
24 trace_10353_1 = os.path.join(
25 session_rotation_trace_path,
26 'archives',
27 '20190826T155748-0400-20190826T155751-0400-1',
28 'ust',
29 'pid',
30 'hello-ust-10353-20190826-155748',
31 )
32 trace_10352_2 = os.path.join(
33 session_rotation_trace_path,
34 'archives',
35 '20190826T155750-0400-20190826T155753-0400-2',
36 'ust',
37 'pid',
38 'hello-ust-10352-20190826-155748',
39 )
40 trace_10353_2 = os.path.join(
41 session_rotation_trace_path,
42 'archives',
43 '20190826T155750-0400-20190826T155753-0400-2',
44 'ust',
45 'pid',
46 'hello-ust-10353-20190826-155748',
47 )
48 trace_10352_3 = os.path.join(
49 session_rotation_trace_path,
50 '20190826T155753-0400-3',
51 'ust',
52 'pid',
53 'hello-ust-10352-20190826-155748',
54 )
55 trace_10353_3 = os.path.join(
56 session_rotation_trace_path,
57 '20190826T155753-0400-3',
58 'ust',
59 'pid',
60 'hello-ust-10353-20190826-155748',
61 )
62
63
64 class QuerySupportInfoTestCase(unittest.TestCase):
65 def test_support_info_with_uuid(self):
66 # Test that the right group is reported for each trace.
67
68 def do_one_query(input, expected_group):
69 qe = bt2.QueryExecutor(
70 fs, 'babeltrace.support-info', {'input': input, 'type': 'directory'}
71 )
72
73 result = qe.query()
74 self.assertEqual(result['group'], expected_group)
75
76 ctf = bt2.find_plugin('ctf')
77 fs = ctf.source_component_classes['fs']
78
79 do_one_query(trace_10352_1, '21cdfa5e-9a64-490a-832c-53aca6c101ba')
80 do_one_query(trace_10352_2, '21cdfa5e-9a64-490a-832c-53aca6c101ba')
81 do_one_query(trace_10352_3, '21cdfa5e-9a64-490a-832c-53aca6c101ba')
82 do_one_query(trace_10353_1, '83656eb1-b131-40e7-9666-c04ae279b58c')
83 do_one_query(trace_10353_2, '83656eb1-b131-40e7-9666-c04ae279b58c')
84 do_one_query(trace_10353_3, '83656eb1-b131-40e7-9666-c04ae279b58c')
85
86
87 if __name__ == '__main__':
88 unittest.main()
This page took 0.030374 seconds and 4 git commands to generate.