lib: strictly type function return status enumerations
[babeltrace.git] / tests / bindings / python / bt2 / test_query_executor.py
index 4fc0f863760f13f372bea9454f6c251611d87f6e..30e5a2c9d6699c94881463f27f8f9fe37132f06a 100644 (file)
@@ -1,3 +1,21 @@
+#
+# 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.
+#
+
 from bt2 import value
 import unittest
 import copy
@@ -53,6 +71,22 @@ class QueryExecutorTestCase(unittest.TestCase):
         self.assertEqual(query_params, None)
         del query_params
 
+    def test_query_logging_level(self):
+        class MySink(bt2._UserSinkComponent):
+            def _consume(self):
+                pass
+
+            @classmethod
+            def _query(cls, query_exec, obj, params, log_level):
+                nonlocal query_log_level
+                query_log_level = log_level
+
+        query_log_level = None
+        res = bt2.QueryExecutor().query(MySink, 'obj', None,
+                                        bt2.LoggingLevel.INFO)
+        self.assertEqual(query_log_level, bt2.LoggingLevel.INFO)
+        del query_log_level
+
     def test_query_gen_error(self):
         class MySink(bt2._UserSinkComponent):
             def _consume(self):
@@ -72,11 +106,35 @@ class QueryExecutorTestCase(unittest.TestCase):
 
             @classmethod
             def _query(cls, query_exec, obj, params, log_level):
-                raise bt2.InvalidQueryObject
+                raise bt2.InvalidObject
 
-        with self.assertRaises(bt2.InvalidQueryObject):
+        with self.assertRaises(bt2.InvalidObject):
             res = bt2.QueryExecutor().query(MySink, 'obj', [17, 23])
 
+    def test_query_logging_level_invalid_type(self):
+        class MySink(bt2._UserSinkComponent):
+            def _consume(self):
+                pass
+
+            @classmethod
+            def _query(cls, query_exec, obj, params, log_level):
+                pass
+
+        with self.assertRaises(TypeError):
+            res = bt2.QueryExecutor().query(MySink, 'obj', [17, 23], 'yeah')
+
+    def test_query_logging_level_invalid_value(self):
+        class MySink(bt2._UserSinkComponent):
+            def _consume(self):
+                pass
+
+            @classmethod
+            def _query(cls, query_exec, obj, params, log_level):
+                pass
+
+        with self.assertRaises(ValueError):
+            res = bt2.QueryExecutor().query(MySink, 'obj', [17, 23], 12345)
+
     def test_query_invalid_params(self):
         class MySink(bt2._UserSinkComponent):
             def _consume(self):
@@ -84,9 +142,9 @@ class QueryExecutorTestCase(unittest.TestCase):
 
             @classmethod
             def _query(cls, query_exec, obj, params, log_level):
-                raise bt2.InvalidQueryParams
+                raise bt2.InvalidParams
 
-        with self.assertRaises(bt2.InvalidQueryParams):
+        with self.assertRaises(bt2.InvalidParams):
             res = bt2.QueryExecutor().query(MySink, 'obj', [17, 23])
 
     def test_query_try_again(self):
@@ -119,5 +177,5 @@ class QueryExecutorTestCase(unittest.TestCase):
         query_exec = bt2.QueryExecutor()
         query_exec.cancel()
 
-        with self.assertRaises(bt2.QueryExecutorCanceled):
+        with self.assertRaises(bt2.Canceled):
             res = query_exec.query(MySink, 'obj', [17, 23])
This page took 0.024896 seconds and 4 git commands to generate.