Menu

[r902]: / branches / Release-5-5-1 / php-java-bridge / tests.php5 / javabridge_policy.php  Maximize  Restore  History

Download this file

33 lines (30 with data), 800 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/php
<?php
require_once ("java/Java.inc");
$Thread = new JavaClass("java.lang.Thread");
$current= $Thread->currentThread();
try {
$thread = new java("java.lang.Thread", $current->getThreadGroup(), "simple");
echo "Test failed or no javabridge.policy installed\n";
exit(1);
} catch (JavaException $e) {
$cause = $e->getCause();
if(!java_instanceof($cause, new JavaClass("java.lang.SecurityException"))) {
echo "test failed\n";
exit(2);
}
}
try {
$thread = new java("java.lang.Thread");
echo "Test failed or no javabridge.policy installed\n";
exit(3);
} catch (JavaException $e) {
$cause = $e->getCause();
if(!java_instanceof($cause, new JavaClass("java.lang.SecurityException"))) {
echo "test failed\n";
exit(4);
}
}
echo "test okay\n";
exit(0);
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.