test_java_gateway.py 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. """Test pydolphinscheduler java gateway."""
  18. from py4j.java_gateway import java_import, JavaGateway
  19. def test_gateway_connect():
  20. """Test weather client could connect java gate way or not."""
  21. gateway = JavaGateway()
  22. app = gateway.entry_point
  23. assert app.ping() == "PONG"
  24. def test_jvm_simple():
  25. """Test use JVM build-in object and operator from java gateway."""
  26. gateway = JavaGateway()
  27. smaller = gateway.jvm.java.lang.Integer.MIN_VALUE
  28. bigger = gateway.jvm.java.lang.Integer.MAX_VALUE
  29. assert bigger > smaller
  30. def test_python_client_java_import_single():
  31. """Test import single class from java gateway."""
  32. gateway = JavaGateway()
  33. java_import(gateway.jvm, "org.apache.dolphinscheduler.common.utils.FileUtils")
  34. assert hasattr(gateway.jvm, "FileUtils")
  35. def test_python_client_java_import_package():
  36. """Test import package contain multiple class from java gateway."""
  37. gateway = JavaGateway()
  38. java_import(gateway.jvm, "org.apache.dolphinscheduler.common.utils.*")
  39. # test if jvm view have some common utils
  40. for util in ("FileUtils", "OSUtils", "DateUtils"):
  41. assert hasattr(gateway.jvm, util)