From 65a6eac18aa1301b47666763d39aff925962a827 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Thu, 13 Mar 2014 00:10:05 -0400 Subject: [PATCH] tests: intro tests for the FFI with Java MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- tests/sav/test_ffi_java_callbacks.res | 4 +++ tests/sav/test_ffi_java_message_box.res | 1 + tests/sav/test_ffi_java_minimal.res | 1 + tests/sav/test_ffi_java_types.res | 12 +++++++ tests/test_ffi_java_callbacks.nit | 41 ++++++++++++++++++++++++ tests/test_ffi_java_message_box.nit | 34 ++++++++++++++++++++ tests/test_ffi_java_minimal.nit | 26 ++++++++++++++++ tests/test_ffi_java_types.nit | 52 +++++++++++++++++++++++++++++++ 8 files changed, 171 insertions(+) create mode 100644 tests/sav/test_ffi_java_callbacks.res create mode 100644 tests/sav/test_ffi_java_message_box.res create mode 100644 tests/sav/test_ffi_java_minimal.res create mode 100644 tests/sav/test_ffi_java_types.res create mode 100644 tests/test_ffi_java_callbacks.nit create mode 100644 tests/test_ffi_java_message_box.nit create mode 100644 tests/test_ffi_java_minimal.nit create mode 100644 tests/test_ffi_java_types.nit diff --git a/tests/sav/test_ffi_java_callbacks.res b/tests/sav/test_ffi_java_callbacks.res new file mode 100644 index 0000000..144fa53 --- /dev/null +++ b/tests/sav/test_ffi_java_callbacks.res @@ -0,0 +1,4 @@ +777 +From Nit +11 +12346 diff --git a/tests/sav/test_ffi_java_message_box.res b/tests/sav/test_ffi_java_message_box.res new file mode 100644 index 0000000..802992c --- /dev/null +++ b/tests/sav/test_ffi_java_message_box.res @@ -0,0 +1 @@ +Hello world diff --git a/tests/sav/test_ffi_java_minimal.res b/tests/sav/test_ffi_java_minimal.res new file mode 100644 index 0000000..802992c --- /dev/null +++ b/tests/sav/test_ffi_java_minimal.res @@ -0,0 +1 @@ +Hello world diff --git a/tests/sav/test_ffi_java_types.res b/tests/sav/test_ffi_java_types.res new file mode 100644 index 0000000..6471338 --- /dev/null +++ b/tests/sav/test_ffi_java_types.res @@ -0,0 +1,12 @@ +1 +2 +1 +3 +20 +10 +1 +1 +2 +3 +10 +20 diff --git a/tests/test_ffi_java_callbacks.nit b/tests/test_ffi_java_callbacks.nit new file mode 100644 index 0000000..4fcdbf6 --- /dev/null +++ b/tests/test_ffi_java_callbacks.nit @@ -0,0 +1,41 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2014 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +module test_ffi_java_callbacks + +import java + +class A + fun bar do print "From Nit" + + fun i: Int do return 777 + + fun foo import bar, i in "Java" `{ + A_bar(recv); + long i = A_i(recv); + System.out.println(i); + `} + + fun getter(v: Float): Int in "Java" `{ + v = Math.round(v); + return (int)v; + `} +end + +var a = new A +a.foo +print(a.getter(11.1)) +print(a.getter(12345.689)) diff --git a/tests/test_ffi_java_message_box.nit b/tests/test_ffi_java_message_box.nit new file mode 100644 index 0000000..39a6ead --- /dev/null +++ b/tests/test_ffi_java_message_box.nit @@ -0,0 +1,34 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2014 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +module test_ffi_java_message_box + +import java + +in "Java" `{ + import javax.swing.JOptionPane; +`} + +fun system_out_print in "Java" `{ + System.out.println("Hello world"); +`} + +fun message_box in "Java" `{ + JOptionPane.showMessageDialog(null, "Hello world", "Title", JOptionPane.INFORMATION_MESSAGE); +`} + +system_out_print +if "NIT_TESTING".environ != "true" then message_box diff --git a/tests/test_ffi_java_minimal.nit b/tests/test_ffi_java_minimal.nit new file mode 100644 index 0000000..3705de2 --- /dev/null +++ b/tests/test_ffi_java_minimal.nit @@ -0,0 +1,26 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import java + +class MyClass + # fun foo is foreign(Java) + fun foo in "Java" `{ + System.out.println("Hello world"); + `} +end + +(new MyClass).foo diff --git a/tests/test_ffi_java_types.nit b/tests/test_ffi_java_types.nit new file mode 100644 index 0000000..a7c057c --- /dev/null +++ b/tests/test_ffi_java_types.nit @@ -0,0 +1,52 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2014 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +module test_ffi_java_types + +import java + +in "Java" `{ + import java.util.*; +`} + +extern class JavaArrayList in "Java" `{ java.util.ArrayList `} + new in "Java" `{ + return new ArrayList(); + `} + + fun add(o: Int) in "Java" `{ recv.add(o); `} + + redef fun output in "Java" `{ + for (Object i: recv) { + System.out.println((int)i); + } + `} + + fun sort in "Java" `{ + Collections.sort(recv); + `} +end + +var ll = new JavaArrayList +ll.add(1) +ll.add(2) +ll.add(1) +ll.add(3) +ll.add(20) +ll.add(10) +ll.output +ll.sort +ll.output -- 1.7.9.5