From 04fd4a9c685d251ec0513e7d604b193b0e99c248 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Wed, 30 Sep 2015 08:50:35 +0100 Subject: [PATCH] Director smartptr testing - add Python test --- .../python/director_smartptr_runme.py | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Examples/test-suite/python/director_smartptr_runme.py diff --git a/Examples/test-suite/python/director_smartptr_runme.py b/Examples/test-suite/python/director_smartptr_runme.py new file mode 100644 index 000000000..c8bab9d7a --- /dev/null +++ b/Examples/test-suite/python/director_smartptr_runme.py @@ -0,0 +1,37 @@ +from director_smartptr import * + + +class director_smartptr_MyBarFoo(Foo): + + def ping(self): + return "director_smartptr_MyBarFoo.ping()" + + def pong(self): + return "director_smartptr_MyBarFoo.pong();" + self.ping() + + def upcall(self, fooBarPtr): + return "override;" + fooBarPtr.FooBarDo() + + def makeFoo(self): + return Foo() + +def check(got, expected): + if (got != expected): + raise RuntimeError, "Failed, got: " + got + " expected: " + expected + +fooBar = FooBar() + +myBarFoo = director_smartptr_MyBarFoo() +check(myBarFoo.ping(), "director_smartptr_MyBarFoo.ping()") +check(Foo.callPong(myBarFoo), "director_smartptr_MyBarFoo.pong();director_smartptr_MyBarFoo.ping()") +check(Foo.callUpcall(myBarFoo, fooBar), "override;Bar::Foo2::Foo2Bar()") + +myFoo = myBarFoo.makeFoo() +check(myFoo.pong(), "Foo::pong();Foo::ping()") +check(Foo.callPong(myFoo), "Foo::pong();Foo::ping()") +check(myFoo.upcall(FooBar()), "Bar::Foo2::Foo2Bar()") + +myFoo2 = Foo().makeFoo() +check(myFoo2.pong(), "Foo::pong();Foo::ping()") +check(Foo.callPong(myFoo2), "Foo::pong();Foo::ping()") +check(myFoo2.upcall(FooBar()), "Bar::Foo2::Foo2Bar()")