Java specific test to test the various.i typemap library.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5279 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-11-08 21:02:37 +00:00
commit 3a6d631b08
3 changed files with 101 additions and 1 deletions

View file

@ -0,0 +1,53 @@
// Test case to check typemaps in various.i
import java_lib_various.*;
public class java_lib_various_runme {
static {
try {
System.loadLibrary("java_lib_various");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
System.exit(1);
}
}
public static void main(String argv[]) {
// STRING_ARRAY typemap parameter
String animals[] = {"Cat","Dog","Cow","Goat"};
if (java_lib_various.check_animals(animals) != 1)
throw new RuntimeException("check_animals failed");
// STRING_ARRAY typemap return value
String expected[] = { "Dave", "Mike", "Susan", "John", "Michelle" };
String got[] = java_lib_various.get_names();
for (int i=0; i<got.length; i++)
if ( !got[i].equals(expected[i]) )
throw new RuntimeException("Name failed " + i + " " + got[i] + "|" + expected[i]);
// STRING_ARRAY variable setter
// String newLangs[] = { "French", "Italian", "Spanish" };
// java_lib_various.setLanguages(newLangs);
// STRING_ARRAY variable getter
String langscheck[] = { "Hungarian", "Afrikaans", "Norwegian" };
String langs[] = java_lib_various.getLanguages();
for (int i=0; i<langs.length; i++)
if ( !langs[i].equals(langscheck[i]) )
throw new RuntimeException("Languages read failed " + i + " " + langs[i] + "|" + langscheck[i]);
// BYTE typemap check
byte b[] = new byte[20];
java_lib_various.charout(b);
String byjovestring = new String("by jove");
byte byjove[] = byjovestring.getBytes();
for (int i=0; i<byjovestring.length(); i++) {
if (byjove[i] != b[i])
throw new RuntimeException("By jove, it failed: [" + new String(b) + "]");
}
}
}