test_submit_examples.py 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 whether success submit examples DAG to PythonGatewayServer."""
  18. from pathlib import Path
  19. import pytest
  20. from tests.testing.constants import ignore_exec_examples
  21. from tests.testing.docker_wrapper import DockerWrapper
  22. from tests.testing.path import path_example
  23. @pytest.fixture(scope="module")
  24. def setup_docker():
  25. """Set up and teardown docker env for fixture."""
  26. docker_wrapper = DockerWrapper(
  27. image="apache/dolphinscheduler-standalone-server:ci",
  28. container_name="ci-dolphinscheduler-standalone-server",
  29. )
  30. ports = {"25333/tcp": 25333}
  31. container = docker_wrapper.run_until_log(
  32. log="Started StandaloneServer in", tty=True, ports=ports
  33. )
  34. assert container is not None
  35. yield
  36. docker_wrapper.remove_container()
  37. @pytest.mark.parametrize(
  38. "example_path",
  39. [
  40. path
  41. for path in path_example.iterdir()
  42. if path.is_file() and path.stem not in ignore_exec_examples
  43. ],
  44. )
  45. def test_exec_white_list_example(setup_docker, example_path: Path):
  46. """Test execute examples and submit DAG to PythonGatewayServer."""
  47. try:
  48. exec(example_path.read_text())
  49. except Exception:
  50. raise Exception("Run example %s failed.", example_path.stem)