java_dir_test.py 4.55 KB
from __future__ import unicode_literals, absolute_import

from py4j.java_gateway import (
    java_import, UserHelpAutoCompletion)
from py4j.protocol import Py4JError
from py4j.tests.java_gateway_test import (
    example_app_process, gateway)

ExampleClassFields = sorted([
    "field10",
    "field11",
    "field20",
    "field21",
    "static_field"
])

ExampleClassMethods = sorted([
    # From ExampleClass
    "method1",
    "method2",
    "method3",
    "method4",
    "method5",
    "method6",
    "sleepFirstTimeOnly",
    # overloaded
    "method7",
    "method8",
    "method9",
    # overloaded
    "method10",
    "method11",
    "getList",
    "getField1",
    "setField1",
    "getStringArray",
    "getIntArray",
    "callHello",
    "callHello2",
    "static_method",
    "getInteger",
    "getBrokenStream",
    "getStream",

    # From Object
    "getClass",
    "hashCode",
    "equals",
    "toString",
    "notify",
    "notifyAll",
    "wait"
])

ExampleClassStatics = sorted([
    "StaticClass",
    "static_field",
    "static_method"
])


def test_dir_object():
    with example_app_process():
        with gateway() as g:
            ex = g.getNewExample()
            print(sorted(dir(ex)))
            print(ExampleClassMethods)
            assert sorted(dir(ex)) == ExampleClassMethods


def test_dir_object_fields():
    with example_app_process():
        with gateway(auto_field=True) as g:
            ex = g.getNewExample()
            assert sorted(dir(ex)) == sorted(
                ExampleClassMethods + ExampleClassFields)


def test_dir_object_shows_manually_called_after_dir():
    with example_app_process():
        with gateway() as g:
            ex = g.getNewExample()
            assert sorted(dir(ex)) == ExampleClassMethods
            try:
                ex.does_not_exist_in_example()
                raise AssertionError("Method should not have succeeded")
            except Py4JError:
                pass
            # Make sure the manually called method now shows up
            assert sorted(dir(ex)) == sorted(
                ExampleClassMethods + ["does_not_exist_in_example"])


def test_dir_object_shows_manually_called_before_dir():
    with example_app_process():
        with gateway() as g:
            ex = g.getNewExample()
            try:
                ex.does_not_exist_in_example()
                raise AssertionError("Method should not have succeeded")
            except Py4JError:
                pass
            # Make sure the manually called method now shows up
            assert sorted(dir(ex)) == sorted(
                ExampleClassMethods + ["does_not_exist_in_example"])


def test_dir_class():
    with example_app_process():
        with gateway() as g:
            exclass = g.jvm.py4j.examples.ExampleClass
            assert sorted(dir(exclass)) == ExampleClassStatics


def helper_dir_jvmview(view):
    assert sorted(dir(view)) == [UserHelpAutoCompletion.KEY]

    java_import(view, "com.example.Class1")
    java_import(view, "com.another.Class2")
    assert sorted(dir(view)) == [
        UserHelpAutoCompletion.KEY, "Class1", "Class2"]
    assert sorted(dir(view)) == [
        UserHelpAutoCompletion.KEY, "Class1", "Class2"]

    java_import(view, "com.third.Class3")
    assert sorted(dir(view)) == [
        UserHelpAutoCompletion.KEY, "Class1", "Class2", "Class3"]


def test_dir_jvmview_default():
    with example_app_process():
        with gateway() as g:
            helper_dir_jvmview(g.jvm)


def test_dir_jvmview_new():
    with example_app_process():
        with gateway() as g:
            view = g.new_jvm_view()
            helper_dir_jvmview(view)


def test_dir_jvmview_two():
    with example_app_process():
        with gateway() as g:
            view1 = g.new_jvm_view()
            view2 = g.new_jvm_view()
            helper_dir_jvmview(view1)
            helper_dir_jvmview(view2)

            # now give them different contents
            java_import(view1, "com.fourth.Class4")
            java_import(view2, "com.fiftg.Class5")

            assert sorted(dir(view1)) == [
                UserHelpAutoCompletion.KEY, "Class1", "Class2", "Class3",
                "Class4"]
            assert sorted(dir(view2)) == [
                UserHelpAutoCompletion.KEY, "Class1", "Class2", "Class3",
                "Class5"]


def test_dir_package():
    with example_app_process():
        with gateway() as g:
            assert sorted(dir(g.jvm)) == [UserHelpAutoCompletion.KEY]
            assert sorted(dir(g.jvm.java)) == [UserHelpAutoCompletion.KEY]
            assert sorted(dir(g.jvm.java.util)) == [UserHelpAutoCompletion.KEY]