mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
add unittests for function_class
add tests for some existing function_class functionality. Add tests for the keyword argument changes.
This commit is contained in:
@@ -25,6 +25,7 @@ set(test_python_bindings_DATA
|
||||
test_session.py
|
||||
test_split.py
|
||||
test_transaction.py
|
||||
test_query.py)
|
||||
test_query.py
|
||||
test_function_class.py)
|
||||
|
||||
set_dist_list(test_python_bindings_DIST CMakeLists.txt ${test_python_bindings_DATA})
|
||||
|
||||
@@ -5,6 +5,7 @@ import os
|
||||
|
||||
os.environ["GNC_UNINSTALLED"] = "1"
|
||||
|
||||
from test_function_class import TestFunctionClass
|
||||
from test_gettext import TestGettext
|
||||
from test_session import TestSession
|
||||
from test_book import TestBook
|
||||
|
||||
177
bindings/python/tests/test_function_class.py
Normal file
177
bindings/python/tests/test_function_class.py
Normal file
@@ -0,0 +1,177 @@
|
||||
# test cases for function_class.py
|
||||
#
|
||||
# @date 2020-06-18
|
||||
# @author Christoph Holtermann <mail@c-holtermann.net>
|
||||
|
||||
import sys
|
||||
from unittest import TestCase, main
|
||||
from gnucash.function_class import ClassFromFunctions, default_arguments_decorator
|
||||
|
||||
|
||||
class Instance:
|
||||
"""instance class for ClassFromFunction tests"""
|
||||
|
||||
pass
|
||||
|
||||
|
||||
def prefix_new_function():
|
||||
"""new function for ClassFromFunction tests
|
||||
|
||||
returns instance of Instance class"""
|
||||
return Instance()
|
||||
|
||||
|
||||
def prefix_test_function(self):
|
||||
"""test function for ClassFromFunction tests"""
|
||||
return True
|
||||
|
||||
|
||||
def prefix_test_function_return_args(self, *args, **kargs):
|
||||
return self, args, kargs
|
||||
|
||||
|
||||
b_default = "b default value"
|
||||
|
||||
|
||||
def prefix_test_function_return_arg_karg(self, a, b=b_default):
|
||||
return {"self": self, "a": a, "b": b}
|
||||
|
||||
|
||||
def other_function(self, arg=None):
|
||||
return self, arg
|
||||
|
||||
|
||||
class TestClass(ClassFromFunctions):
|
||||
_module = sys.modules[__name__]
|
||||
|
||||
pass
|
||||
|
||||
|
||||
class TestFunctionClass(TestCase):
|
||||
def test_add_constructor_and_methods_with_prefix(self):
|
||||
TestClass.add_constructor_and_methods_with_prefix("prefix_", "new_function")
|
||||
self.TestClass = TestClass
|
||||
self.testClass = TestClass()
|
||||
self.assertIsInstance(self.testClass.instance, Instance)
|
||||
self.assertTrue(self.testClass.test_function())
|
||||
|
||||
def test_add_method(self):
|
||||
"""test if add_method adds method and if in case of FunctionClass
|
||||
Instance instances get returned instead of FunctionClass instances"""
|
||||
TestClass.add_method("other_function", "other_method")
|
||||
self.t = TestClass()
|
||||
obj, arg = self.t.other_method()
|
||||
self.assertIsInstance(obj, Instance)
|
||||
obj, arg = self.t.other_method(self.t)
|
||||
self.assertIsInstance(arg, Instance)
|
||||
obj, arg = self.t.other_method(arg=self.t)
|
||||
self.assertIsInstance(arg, Instance)
|
||||
|
||||
def test_ya_add_method(self):
|
||||
"""test if ya_add_method adds method and if in case of FunctionClass
|
||||
Instance instances get returned instead of FunctionClass instances
|
||||
with the exception of self (first) argument"""
|
||||
TestClass.ya_add_method("other_function", "other_method")
|
||||
self.t = TestClass()
|
||||
obj, arg = self.t.other_method()
|
||||
self.assertIsInstance(obj, TestClass)
|
||||
obj, arg = self.t.other_method(self.t)
|
||||
self.assertIsInstance(arg, Instance)
|
||||
obj, arg = self.t.other_method(arg=self.t)
|
||||
self.assertIsInstance(arg, Instance)
|
||||
|
||||
def test_default_arguments_decorator(self):
|
||||
"""test default_arguments_decorator()"""
|
||||
TestClass.backup_test_function_return_args = TestClass.test_function_return_args
|
||||
TestClass.backup_test_function_return_arg_karg = (
|
||||
TestClass.test_function_return_arg_karg
|
||||
)
|
||||
self.t = TestClass()
|
||||
|
||||
arg1 = "arg1"
|
||||
arg2 = "arg2"
|
||||
arg3 = {"arg3": arg2}
|
||||
arg4 = 4
|
||||
TestClass.decorate_method(
|
||||
default_arguments_decorator, "test_function_return_args", arg1, arg2
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_args(), (self.t.instance, (arg2,), {})
|
||||
) # default arg1 gets overwritten by class instances instance attribute
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_args(arg3), (self.t.instance, (arg3,), {})
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_args(arg1, arg3),
|
||||
(self.t.instance, (arg1, arg3), {}),
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_args(arg1, arg3, arg4=arg4),
|
||||
(self.t.instance, (arg1, arg3), {"arg4": arg4}),
|
||||
)
|
||||
|
||||
TestClass.test_function_return_args = TestClass.backup_test_function_return_args
|
||||
TestClass.decorate_method(
|
||||
default_arguments_decorator,
|
||||
"test_function_return_args",
|
||||
arg1,
|
||||
arg2,
|
||||
arg4=arg4,
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_args(),
|
||||
(self.t.instance, (arg2,), {"arg4": arg4}),
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_args(arg1, arg3, arg4=arg2),
|
||||
(self.t.instance, (arg1, arg3), {"arg4": arg2}),
|
||||
)
|
||||
|
||||
with self.assertRaises(TypeError):
|
||||
# should fail because a is set both as a positional and as a keyword argument
|
||||
TestClass.decorate_method(
|
||||
default_arguments_decorator,
|
||||
"test_function_return_arg_karg",
|
||||
None,
|
||||
arg1,
|
||||
a=arg2,
|
||||
kargs_pos={"a": 1, "b": 2},
|
||||
)
|
||||
TestClass.decorate_method(
|
||||
default_arguments_decorator,
|
||||
"test_function_return_arg_karg",
|
||||
None,
|
||||
a=arg1,
|
||||
kargs_pos={"a": 1, "b": 2},
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_arg_karg(),
|
||||
{"self": self.t.instance, "a": arg1, "b": b_default},
|
||||
)
|
||||
|
||||
TestClass.test_function_return_arg_karg = (
|
||||
TestClass.backup_test_function_return_arg_karg
|
||||
)
|
||||
TestClass.decorate_method(
|
||||
default_arguments_decorator,
|
||||
"test_function_return_arg_karg",
|
||||
None,
|
||||
arg1,
|
||||
kargs_pos={"a": 1, "b": 2},
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_arg_karg(),
|
||||
{"self": self.t.instance, "a": arg1, "b": b_default},
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_arg_karg(arg2),
|
||||
{"self": self.t.instance, "a": arg2, "b": b_default},
|
||||
)
|
||||
self.assertEqual(
|
||||
self.t.test_function_return_arg_karg(arg2, arg3),
|
||||
{"self": self.t.instance, "a": arg2, "b": arg3},
|
||||
)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user