File: test_stream.py

package info (click to toggle)
babeltrace2 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,660 kB
  • sloc: cpp: 106,162; ansic: 78,276; python: 27,115; sh: 9,053; makefile: 1,807; xml: 46
file content (83 lines) | stat: -rw-r--r-- 2,989 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# SPDX-License-Identifier: GPL-2.0-only
#
# Copyright (C) 2019 EfficiOS Inc.
#

import unittest

import utils
from bt2 import trace as bt2_trace
from bt2 import value as bt2_value
from bt2 import stream as bt2_stream
from bt2 import stream_class as bt2_stream_class
from utils import run_in_component_init


class StreamTestCase(unittest.TestCase):
    def setUp(self):
        def f(comp_self):
            return comp_self._create_trace_class()

        self._tc = run_in_component_init(0, f)
        self._sc = self._tc.create_stream_class(assigns_automatic_stream_id=True)
        self._tr = self._tc()

    def test_create_default(self):
        stream = self._tr.create_stream(self._sc)
        self.assertIsNone(stream.name)
        self.assertIs(type(stream), bt2_stream._Stream)
        self.assertEqual(len(stream.user_attributes), 0)

    def test_name(self):
        stream = self._tr.create_stream(self._sc, name="équidistant")
        self.assertEqual(stream.name, "équidistant")

    def test_invalid_name(self):
        with self.assertRaises(TypeError):
            self._tr.create_stream(self._sc, name=22)

    def test_create_user_attributes(self):
        stream = self._tr.create_stream(self._sc, user_attributes={"salut": 23})
        self.assertEqual(stream.user_attributes, {"salut": 23})
        self.assertIs(type(stream.user_attributes), bt2_value.MapValue)

    def test_const_user_attributes(self):
        stream = utils.get_const_stream_beginning_message().stream
        self.assertEqual(stream.user_attributes, {"a-stream-attribute": 1})
        self.assertIs(type(stream.user_attributes), bt2_value._MapValueConst)

    def test_create_invalid_user_attributes(self):
        with self.assertRaises(TypeError):
            self._tr.create_stream(self._sc, user_attributes=object())

    def test_create_invalid_user_attributes_value_type(self):
        with self.assertRaises(TypeError):
            self._tr.create_stream(self._sc, user_attributes=23)

    def test_stream_class(self):
        stream = self._tr.create_stream(self._sc)
        self.assertEqual(stream.cls, self._sc)
        self.assertIs(type(stream.cls), bt2_stream_class._StreamClass)

    def test_const_stream_class(self):
        stream = utils.get_const_stream_beginning_message().stream
        self.assertIs(type(stream.cls), bt2_stream_class._StreamClassConst)

    def test_trace(self):
        stream = self._tr.create_stream(self._sc)
        self.assertEqual(stream.trace.addr, self._tr.addr)
        self.assertIs(type(stream.trace), bt2_trace._Trace)

    def test_const_trace(self):
        stream = utils.get_const_stream_beginning_message().stream
        self.assertIs(type(stream.trace), bt2_trace._TraceConst)

    def test_invalid_id(self):
        sc = self._tc.create_stream_class(assigns_automatic_stream_id=False)

        with self.assertRaises(TypeError):
            self._tr.create_stream(sc, id="string")


if __name__ == "__main__":
    unittest.main()