Add Python testcase for testing flatstaticmethod syntax
For testing legacy flattened static method access for when issue #2137 is applied.
This commit is contained in:
parent
3aa302c08f
commit
2272d00c1a
4 changed files with 123 additions and 4 deletions
|
|
@ -54,6 +54,7 @@ CPP_TEST_CASES += \
|
|||
python_director \
|
||||
python_docstring \
|
||||
python_extranative \
|
||||
python_flatstaticmethod \
|
||||
python_moduleimport \
|
||||
python_overload_simple_cast \
|
||||
python_pickle \
|
||||
|
|
@ -97,7 +98,7 @@ LIBS = -L.
|
|||
VALGRIND_OPT += --suppressions=pythonswig.supp
|
||||
|
||||
# Custom tests - tests with additional commandline options
|
||||
# none!
|
||||
#python_flatstaticmethod.cpptest: SWIGOPT += -flatstaticmethod
|
||||
|
||||
# Rules for the different types of tests
|
||||
%.cpptest:
|
||||
|
|
|
|||
|
|
@ -17,9 +17,6 @@ if foobar(3, _callback.foo) != foo(3):
|
|||
if foobar(3, foo) != foo(3):
|
||||
raise RuntimeError
|
||||
|
||||
if foobar(3, A_bar) != A_bar(3):
|
||||
raise RuntimeError
|
||||
|
||||
if foobar(3, A.bar) != A.bar(3):
|
||||
raise RuntimeError
|
||||
|
||||
|
|
|
|||
85
Examples/test-suite/python/python_flatstaticmethod_runme.py
Normal file
85
Examples/test-suite/python/python_flatstaticmethod_runme.py
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
from python_flatstaticmethod import *
|
||||
import inspect
|
||||
|
||||
# This testcase tests C++ class static functions when using legacy "flattened"
|
||||
# staticmethod access, A_bar, as well as the normal staticmethod access, A.bar.
|
||||
|
||||
|
||||
def check(got, expected):
|
||||
if got != expected:
|
||||
raise RuntimeError("\ngot :{}\nwant:{}\n".format(got, expected))
|
||||
|
||||
if A_bar(2) != 4:
|
||||
raise RuntimeError
|
||||
|
||||
if A.bar(2) != 4:
|
||||
raise RuntimeError
|
||||
|
||||
# %callback
|
||||
if foobar(3, A_bar) != A_bar(3):
|
||||
raise RuntimeError
|
||||
|
||||
if foobar(3, A.bar) != A_bar(3):
|
||||
raise RuntimeError
|
||||
|
||||
# kwargs
|
||||
if A_pub() != 1:
|
||||
raise RuntimeError
|
||||
|
||||
if A_pub(b=2) != 3:
|
||||
raise RuntimeError
|
||||
|
||||
if A_pub(b=10,a=20) != 30:
|
||||
raise RuntimeError
|
||||
|
||||
if A.pub() != 1:
|
||||
raise RuntimeError
|
||||
|
||||
if A.pub(b=2) != 3:
|
||||
raise RuntimeError
|
||||
|
||||
if A.pub(b=10,a=20) != 30:
|
||||
raise RuntimeError
|
||||
|
||||
check(inspect.getdoc(A_func0static),
|
||||
"A_func0static(e, arg2, hello, f=2) -> int")
|
||||
check(inspect.getdoc(A_func1static),
|
||||
"A_func1static(A e, short arg2, Tuple hello, double f=2) -> int")
|
||||
|
||||
# overloaded static functions
|
||||
if A_over(3) != "over:int":
|
||||
raise RuntimeError("A::over(int)")
|
||||
|
||||
if A_over(3.0) != "over:double":
|
||||
raise RuntimeError("A::over(double)")
|
||||
|
||||
if A_over("hello") != "over:char *":
|
||||
raise RuntimeError("A::over(char *)")
|
||||
|
||||
if A.over(3) != "over:int":
|
||||
raise RuntimeError("A::over(int)")
|
||||
|
||||
if A.over(3.0) != "over:double":
|
||||
raise RuntimeError("A::over(double)")
|
||||
|
||||
if A.over("hello") != "over:char *":
|
||||
raise RuntimeError("A::over(char *)")
|
||||
|
||||
# default args
|
||||
if A_defargs() != 30:
|
||||
raise RuntimeError
|
||||
|
||||
if A_defargs(1) != 21:
|
||||
raise RuntimeError
|
||||
|
||||
if A_defargs(1, 2) != 3:
|
||||
raise RuntimeError
|
||||
|
||||
if A.defargs() != 30:
|
||||
raise RuntimeError
|
||||
|
||||
if A.defargs(1) != 21:
|
||||
raise RuntimeError
|
||||
|
||||
if A.defargs(1, 2) != 3:
|
||||
raise RuntimeError
|
||||
36
Examples/test-suite/python_flatstaticmethod.i
Normal file
36
Examples/test-suite/python_flatstaticmethod.i
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
%module python_flatstaticmethod
|
||||
|
||||
// This testcase tests C++ class static functions when using legacy "flattened"
|
||||
// staticmethod access, A_bar, as well as the normal staticmethod access, A.bar.
|
||||
|
||||
%callback(1) A::bar;
|
||||
%feature("kwargs") A::pub;
|
||||
%feature("autodoc","0") A::func0static; // names
|
||||
%feature("autodoc","1") A::func1static; // names + types
|
||||
// special typemap and its docs
|
||||
%typemap(in) (int c, int d) "$1 = 0; $2 = 0;";
|
||||
%typemap(doc,name="hello",type="Tuple") (int c, int d) "hello: int tuple[2]";
|
||||
|
||||
%inline %{
|
||||
struct A {
|
||||
static int bar(int a) {
|
||||
return 2*a;
|
||||
}
|
||||
static int pub(int a = 1, int b = 0) {
|
||||
return a + b;
|
||||
}
|
||||
static int func0static(A *e, short, int c, int d, double f = 2) { return 0; }
|
||||
static int func1static(A *e, short, int c, int d, double f = 2) { return 0; }
|
||||
|
||||
static const char *over(int) { return "over:int"; }
|
||||
static const char *over(double) { return "over:double"; }
|
||||
static const char *over(char *) { return "over:char *"; }
|
||||
|
||||
static int defargs(int xx = 10, int yy = 20) { return xx + yy; }
|
||||
};
|
||||
|
||||
extern "C" int foobar(int a, int (*pf)(int a)) {
|
||||
return pf(a);
|
||||
}
|
||||
%}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue