lib: move trace class's name, UUID, and environment props to trace API
[babeltrace.git] / tests / bindings / python / bt2 / test_trace.py
index 6902924481f3c796b9afcaba226a29ace6e6a628..85615b4b515ba7d001e15fc80661af24c848daa3 100644 (file)
@@ -1,3 +1,22 @@
+#
+# Copyright (C) 2019 EfficiOS Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; only version 2
+# of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+
+import uuid
 import unittest
 from utils import get_default_trace_class
 
@@ -8,16 +27,37 @@ class TraceTestCase(unittest.TestCase):
 
     def test_create_default(self):
         trace = self._tc()
-        self.assertEqual(trace.name, None)
-
-    def test_create_full(self):
-        trace = self._tc(name='my name')
-        self.assertEqual(trace.name, 'my name')
+        self.assertIsNone(trace.name)
+        self.assertIsNone(trace.uuid)
+        self.assertEqual(len(trace.env), 0)
 
     def test_create_invalid_name(self):
         with self.assertRaises(TypeError):
             self._tc(name=17)
 
+    def test_attr_trace_class(self):
+        trace = self._tc()
+        self.assertEqual(trace.cls.addr, self._tc.addr)
+
+    def test_attr_name(self):
+        trace = self._tc(name='mein trace')
+        self.assertEqual(trace.name, 'mein trace')
+
+    def test_attr_uuid(self):
+        trace = self._tc(uuid=uuid.UUID('da7d6b6f-3108-4706-89bd-ab554732611b'))
+        self.assertEqual(trace.uuid, uuid.UUID('da7d6b6f-3108-4706-89bd-ab554732611b'))
+
+    def test_env_get(self):
+        trace = self._tc(env={'hello': 'you', 'foo': -5})
+        self.assertEqual(trace.env['hello'], 'you')
+        self.assertEqual(trace.env['foo'], -5)
+
+    def test_env_get_non_existent(self):
+        trace = self._tc(env={'hello': 'you', 'foo': -5})
+
+        with self.assertRaises(KeyError):
+            trace.env['lel']
+
     def test_len(self):
         trace = self._tc()
         sc = self._tc.create_stream_class()
This page took 0.025011 seconds and 4 git commands to generate.