Files
rk35xx-android14/tools/external_updater/test_git_utils.py
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

60 lines
2.0 KiB
Python

#
# Copyright (C) 2023 The Android Open Source Project
#
# Licensed 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.
#
"""Tests for the git_utils module."""
from pathlib import Path
import pytest
from pytest_mock import MockerFixture
from git_utils import tree_uses_pore
@pytest.fixture(name="repo_tree")
def fixture_repo_tree(tmp_path: Path) -> Path:
"""Fixture for a repo tree."""
(tmp_path / ".repo").write_text("")
(tmp_path / "external/foobar").mkdir(parents=True)
return tmp_path
@pytest.fixture(name="pore_tree")
def fixture_pore_tree(repo_tree: Path) -> Path:
"""Fixture for a pore tree."""
(repo_tree / ".pore").write_text("")
return repo_tree
def test_tree_uses_pore_fast_path(tmp_path: Path, mocker: MockerFixture) -> None:
"""Tests that the fast-path does not recurse."""
which_mock = mocker.patch("shutil.which")
which_mock.return_value = None
path_parent_mock = mocker.patch("pathlib.Path.parent")
assert not tree_uses_pore(tmp_path)
path_parent_mock.assert_not_called()
def test_tree_uses_pore_identifies_pore_trees(pore_tree: Path, mocker: MockerFixture) -> None:
"""Tests that a pore tree is correctly identified."""
which_mock = mocker.patch("shutil.which")
which_mock.return_value = Path("pore")
assert tree_uses_pore(pore_tree)
def test_tree_uses_pore_identifies_repo_trees(repo_tree: Path, mocker: MockerFixture) -> None:
"""Tests that a repo tree is correctly identified."""
which_mock = mocker.patch("shutil.which")
which_mock.return_value = Path("pore")
assert not tree_uses_pore(repo_tree)