File: JavaMakerSmokeTest.java

package info (click to toggle)
jython 2.7.3%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 62,820 kB
  • sloc: python: 641,384; java: 306,981; xml: 2,066; sh: 514; ansic: 126; makefile: 77
file content (68 lines) | stat: -rw-r--r-- 2,228 bytes parent folder | download
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package org.python.compiler;

import static org.junit.Assert.assertArrayEquals;

/**
 * Some JavaMaker smoke tests
 */

import java.lang.reflect.Array;
import java.util.Properties;

import org.junit.Before;
import org.junit.Test;
import org.python.core.PySystemState;
import org.python.core.RegistryKey;
import org.python.util.PythonInterpreter;


public class JavaMakerSmokeTest {

    public PythonInterpreter interp;
    public Class<?> proxyClass;

    @Before
    public void setUp() throws Exception {
        Properties props = new Properties(System.getProperties());
        props.setProperty(RegistryKey.PYTHON_CACHEDIR_SKIP, "true");
        PySystemState.initialize(props, null);
        interp = new PythonInterpreter();

        String input = new String();
        input += "import java.io.ByteArrayInputStream\n";
        input += "import java.lang.String\n";
        input += "import org.python.core.Options\n";
        input += "org.python.core.Options.proxyDebugDirectory = 'build/testclasses'\n";
        input += "class ProxyTest(java.io.ByteArrayInputStream):\n";
        input += "    def somemethod(self): pass\n";
        input += "ProxyTest(java.lang.String('teststr').getBytes())\n";
        interp.exec(input);

        proxyClass = Class.forName("org.python.proxies.__main__$ProxyTest$0");
    }

    @Test
    public void constructors() throws Exception {
        proxyClass.getConstructor(Array.newInstance(Byte.TYPE, 0).getClass());
        proxyClass.getConstructor(Array.newInstance(Byte.TYPE, 0).getClass(), Integer.TYPE, Integer.TYPE);
    }

    @Test
    public void methods() throws Exception {
        proxyClass.getMethod("classDictInit", org.python.core.PyObject.class);
        proxyClass.getMethod("close");
    }

    @Test
    public void annotations() throws Exception {
        proxyClass.getAnnotation(org.python.compiler.APIVersion.class);
        proxyClass.getAnnotation(org.python.compiler.MTime.class);
    }

    @Test
    public void interfaces() throws Exception {
        Class<?>[] interfaces = new Class<?>[]{org.python.core.PyProxy.class,
                org.python.core.ClassDictInit.class};
        assertArrayEquals(interfaces, proxyClass.getInterfaces());
    }
}