[OCaml] Runtime tests for abstract_access, abstract_typedef and some others

Add runtime tests for abstract_access, abstract_typedef,
abstract_typedef2, abstract_virtual, aggregate, cast_operator, and
constover. The aggregate and cast_operator tests are based on the
corresponding ruby tests, and the rest are based on python tests.
This commit is contained in:
Zackery Spytz 2019-01-11 22:26:11 -07:00
commit e5b470327b
7 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,5 @@
open Swig
open Abstract_access
let d = new_D '()
let _ = assert ((d -> "do_x" () as int) = 1)

View file

@ -0,0 +1,4 @@
open Swig
open Abstract_typedef2
let a = new_A_UF '()

View file

@ -0,0 +1,6 @@
open Swig
open Abstract_typedef
let e = new_Engine '()
let a = new_A '()
let _ = assert ((a -> "write" (e) as bool) = true)

View file

@ -0,0 +1,5 @@
open Swig
open Abstract_virtual
let d = new_D '()
let e = new_E '()

View file

@ -0,0 +1,15 @@
open Swig
open Aggregate
let _ =
assert((_move (_UP '()) as int) = (_UP '() as int));
assert((_move (_DOWN '()) as int) = (_DOWN '() as int));
assert((_move (_LEFT '()) as int) = (_LEFT '() as int));
assert((_move (_RIGHT '()) as int) = (_RIGHT '() as int));
;;
let _ =
try
_move(0 to int)
with Failure _ -> exit 0
let _ = raise (Failure "0 test failed")

View file

@ -0,0 +1,5 @@
open Swig
open Cast_operator
let a = new_A '()
let _ = assert ((a -> "tochar" () as string) = "hi")

View file

@ -0,0 +1,16 @@
open Swig
open Constover
let test_str = "test" to string
let _ =
assert ((_test (test_str) as string) = "test");
assert ((_test_pconst (test_str) as string) = "test_pconst");
;;
let f = new_Foo '()
let _ =
assert ((f -> "test" (test_str) as string) = "test");
assert ((f -> "test_pconst" (test_str) as string) = "test_pconst");
assert ((f -> "test_constm" (test_str) as string) = "test_constmethod");
assert ((f -> "test_pconstm" (test_str) as string) = "test_pconstmethod");
;;