-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! refactor(utils/decorators): rewrite remove task decorator to u…
…se ast
- Loading branch information
Showing
3 changed files
with
150 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
from __future__ import annotations | ||
|
||
import sys | ||
from pathlib import Path | ||
from unittest import mock | ||
|
||
import pytest | ||
|
||
from airflow.utils.decorators import remove_task_decorator | ||
from airflow.utils.python_virtualenv import _generate_pip_conf, prepare_virtualenv | ||
|
||
|
||
class TestPrepareVirtualenv: | ||
@pytest.mark.parametrize( | ||
("index_urls", "expected_pip_conf_content", "unexpected_pip_conf_content"), | ||
[ | ||
[[], ["[global]", "no-index ="], ["index-url", "extra", "http", "pypi"]], | ||
[["http://mysite"], ["[global]", "index-url", "http://mysite"], ["no-index", "extra", "pypi"]], | ||
[ | ||
["http://mysite", "https://othersite"], | ||
["[global]", "index-url", "http://mysite", "extra", "https://othersite"], | ||
["no-index", "pypi"], | ||
], | ||
[ | ||
["http://mysite", "https://othersite", "http://site"], | ||
["[global]", "index-url", "http://mysite", "extra", "https://othersite http://site"], | ||
["no-index", "pypi"], | ||
], | ||
], | ||
) | ||
def test_generate_pip_conf( | ||
self, | ||
index_urls: list[str], | ||
expected_pip_conf_content: list[str], | ||
unexpected_pip_conf_content: list[str], | ||
tmp_path: Path, | ||
): | ||
tmp_file = tmp_path / "pip.conf" | ||
_generate_pip_conf(tmp_file, index_urls) | ||
generated_conf = tmp_file.read_text() | ||
for term in expected_pip_conf_content: | ||
assert term in generated_conf | ||
for term in unexpected_pip_conf_content: | ||
assert term not in generated_conf | ||
|
||
@mock.patch("airflow.utils.python_virtualenv.execute_in_subprocess") | ||
def test_should_create_virtualenv(self, mock_execute_in_subprocess): | ||
python_bin = prepare_virtualenv( | ||
venv_directory="/VENV", python_bin="pythonVER", system_site_packages=False, requirements=[] | ||
) | ||
assert "/VENV/bin/python" == python_bin | ||
mock_execute_in_subprocess.assert_called_once_with( | ||
[sys.executable, "-m", "virtualenv", "/VENV", "--python=pythonVER"] | ||
) | ||
|
||
@mock.patch("airflow.utils.python_virtualenv.execute_in_subprocess") | ||
def test_should_create_virtualenv_with_system_packages(self, mock_execute_in_subprocess): | ||
python_bin = prepare_virtualenv( | ||
venv_directory="/VENV", python_bin="pythonVER", system_site_packages=True, requirements=[] | ||
) | ||
assert "/VENV/bin/python" == python_bin | ||
mock_execute_in_subprocess.assert_called_once_with( | ||
[sys.executable, "-m", "virtualenv", "/VENV", "--system-site-packages", "--python=pythonVER"] | ||
) | ||
|
||
@mock.patch("airflow.utils.python_virtualenv.execute_in_subprocess") | ||
def test_pip_install_options(self, mock_execute_in_subprocess): | ||
pip_install_options = ["--no-deps"] | ||
python_bin = prepare_virtualenv( | ||
venv_directory="/VENV", | ||
python_bin="pythonVER", | ||
system_site_packages=True, | ||
requirements=["apache-beam[gcp]"], | ||
pip_install_options=pip_install_options, | ||
) | ||
|
||
assert "/VENV/bin/python" == python_bin | ||
mock_execute_in_subprocess.assert_any_call( | ||
[sys.executable, "-m", "virtualenv", "/VENV", "--system-site-packages", "--python=pythonVER"] | ||
) | ||
mock_execute_in_subprocess.assert_called_with( | ||
["/VENV/bin/pip", "install", *pip_install_options, "apache-beam[gcp]"] | ||
) | ||
|
||
@mock.patch("airflow.utils.python_virtualenv.execute_in_subprocess") | ||
def test_should_create_virtualenv_with_extra_packages(self, mock_execute_in_subprocess): | ||
python_bin = prepare_virtualenv( | ||
venv_directory="/VENV", | ||
python_bin="pythonVER", | ||
system_site_packages=False, | ||
requirements=["apache-beam[gcp]"], | ||
) | ||
assert "/VENV/bin/python" == python_bin | ||
|
||
mock_execute_in_subprocess.assert_any_call( | ||
[sys.executable, "-m", "virtualenv", "/VENV", "--python=pythonVER"] | ||
) | ||
|
||
mock_execute_in_subprocess.assert_called_with(["/VENV/bin/pip", "install", "apache-beam[gcp]"]) | ||
|
||
def test_remove_task_decorator(self): | ||
py_source = "@task.virtualenv(use_dill=True)\ndef f(): ...\nimport funcsigs" | ||
res = remove_task_decorator(python_source=py_source, task_decorator_name="@task.virtualenv") | ||
assert res == "def f():\n ...\nimport funcsigs" | ||
|
||
def test_remove_decorator_no_parens(self): | ||
py_source = "@task.virtualenv\ndef f(): ...\nimport funcsigs" | ||
res = remove_task_decorator(python_source=py_source, task_decorator_name="@task.virtualenv") | ||
assert res == "def f():\n ...\nimport funcsigs" | ||
|
||
def test_remove_decorator_nested(self): | ||
py_source = "@foo\n@task.virtualenv\n@bar\ndef f(): ...\nimport funcsigs" | ||
res = remove_task_decorator(python_source=py_source, task_decorator_name="@task.virtualenv") | ||
assert res == "@foo\n@bar\ndef f():\n ...\nimport funcsigs" | ||
|
||
py_source = "@foo\n@task.virtualenv()\n@bar\ndef f(): ...\nimport funcsigs" | ||
res = remove_task_decorator(python_source=py_source, task_decorator_name="@task.virtualenv") | ||
assert res == "@foo\n@bar\ndef f():\n ...\nimport funcsigs" |