X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=tests%2Fbindings%2Fpython%2Fbt2%2Ftest_query_executor.py;h=bc20a719b3dca0000ee9a1fa123ed51041ddc0ef;hp=e1b298861f4dc661c3633acf9366e18da8a904e7;hb=9b4f9b425f2efce9a6ccc25f7ae062ebc1116a7d;hpb=c4239792c6758f579fb9482ddccf336f1bbf26c4 diff --git a/tests/bindings/python/bt2/test_query_executor.py b/tests/bindings/python/bt2/test_query_executor.py index e1b29886..bc20a719 100644 --- a/tests/bindings/python/bt2/test_query_executor.py +++ b/tests/bindings/python/bt2/test_query_executor.py @@ -1,42 +1,52 @@ +# +# 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 import bt2 -@unittest.skip("this is broken") class QueryExecutorTestCase(unittest.TestCase): def test_query(self): class MySink(bt2._UserSinkComponent): def _consume(self): pass + def _graph_is_configured(self): + pass + @classmethod - def _query(cls, query_exec, obj, params): + def _query(cls, query_exec, obj, params, log_level): nonlocal query_params query_params = params - return { - 'null': None, - 'bt2': 'BT2', - } + return {'null': None, 'bt2': 'BT2'} query_params = None params = { 'array': ['coucou', 23, None], - 'other_map': { - 'yes': 'yeah', - '19': 19, - 'minus 1.5': -1.5, - }, + 'other_map': {'yes': 'yeah', '19': 19, 'minus 1.5': -1.5}, 'null': None, } res = bt2.QueryExecutor().query(MySink, 'obj', params) self.assertEqual(query_params, params) - self.assertEqual(res, { - 'null': None, - 'bt2': 'BT2', - }) + self.assertEqual(res, {'null': None, 'bt2': 'BT2'}) del query_params def test_query_params_none(self): @@ -44,8 +54,11 @@ class QueryExecutorTestCase(unittest.TestCase): def _consume(self): pass + def _graph_is_configured(self): + pass + @classmethod - def _query(cls, query_exec, obj, params): + def _query(cls, query_exec, obj, params, log_level): nonlocal query_params query_params = params @@ -54,40 +67,105 @@ 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 + + def _graph_is_configured(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): pass + def _graph_is_configured(self): + pass + @classmethod - def _query(cls, query_exec, obj, params): + def _query(cls, query_exec, obj, params, log_level): raise ValueError - with self.assertRaises(bt2.Error): + with self.assertRaises(bt2._Error) as ctx: res = bt2.QueryExecutor().query(MySink, 'obj', [17, 23]) + exc = ctx.exception + self.assertEqual(len(exc), 1) + cause = exc[0] + self.assertIsInstance(cause, bt2.error._ComponentClassErrorCause) + self.assertIn('raise ValueError', cause.message) + self.assertEqual(cause.component_class_type, bt2.ComponentClassType.SINK) + self.assertEqual(cause.component_class_name, 'MySink') + def test_query_invalid_object(self): class MySink(bt2._UserSinkComponent): def _consume(self): pass + def _graph_is_configured(self): + pass + @classmethod - def _query(cls, query_exec, obj, params): - raise bt2.InvalidQueryObject + def _query(cls, query_exec, obj, params, log_level): + 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 + + def _graph_is_configured(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 + + def _graph_is_configured(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): pass + def _graph_is_configured(self): + pass + @classmethod - def _query(cls, query_exec, obj, params): - raise bt2.InvalidQueryParams + def _query(cls, query_exec, obj, params, log_level): + 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): @@ -95,38 +173,55 @@ class QueryExecutorTestCase(unittest.TestCase): def _consume(self): pass + def _graph_is_configured(self): + pass + @classmethod - def _query(cls, query_exec, obj, params): + def _query(cls, query_exec, obj, params, log_level): raise bt2.TryAgain with self.assertRaises(bt2.TryAgain): res = bt2.QueryExecutor().query(MySink, 'obj', [17, 23]) - def test_cancel_no_query(self): - query_exec = bt2.QueryExecutor() - self.assertFalse(query_exec.is_canceled) - query_exec.cancel() - self.assertTrue(query_exec.is_canceled) - - def test_query_canceled(self): + def test_query_add_interrupter(self): class MySink(bt2._UserSinkComponent): def _consume(self): pass - @classmethod - def _query(cls, query_exec, obj, params): - raise bt2.TryAgain + def _graph_is_configured(self): + pass + @classmethod + def _query(cls, query_exec, obj, params, log_level): + nonlocal interrupter2 + test_self.assertFalse(query_exec.is_interrupted) + interrupter2.set() + test_self.assertTrue(query_exec.is_interrupted) + interrupter2.reset() + test_self.assertFalse(query_exec.is_interrupted) + + interrupter1 = bt2.Interrupter() + interrupter2 = bt2.Interrupter() + test_self = self query_exec = bt2.QueryExecutor() - query_exec.cancel() + query_exec.add_interrupter(interrupter1) + query_exec.add_interrupter(interrupter2) + query_exec.query(MySink, 'obj', [17, 23]) - with self.assertRaises(bt2.QueryExecutorCanceled): - res = query_exec.query(MySink, 'obj', [17, 23]) + def test_query_interrupt(self): + class MySink(bt2._UserSinkComponent): + def _consume(self): + pass - def test_eq(self): - query_exec = bt2.QueryExecutor() - self.assertEqual(query_exec, query_exec) + def _graph_is_configured(self): + pass + + @classmethod + def _query(cls, query_exec, obj, params, log_level): + test_self.assertFalse(query_exec.is_interrupted) + query_exec.interrupt() + test_self.assertTrue(query_exec.is_interrupted) - def test_eq_invalid(self): + test_self = self query_exec = bt2.QueryExecutor() - self.assertNotEqual(query_exec, 23) + query_exec.query(MySink, 'obj', [17, 23])