mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
b1d1ece2fb
After a6413f5d
a GitCommandError is raised.
Since there were no user identity were set up,
it fails:
- ReviewableBranchTests from test_project.py
- ResolveRepoRev and CheckRepoRev from test_wrapper.py
Test: ./run_tests
Change-Id: Id7f5772afe22c77fc4c8f8f0b8be1b627ed42187
Signed-off-by: Vitalii Dmitriev <vitalii.dmitriev@unikie.com>
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/398658
Reviewed-by: Mike Frysinger <vapier@google.com>
Tested-by: Vitalii Dmitriev <dmit.vitalii@gmail.com>
Commit-Queue: Vitalii Dmitriev <dmit.vitalii@gmail.com>
84 lines
2.6 KiB
Python
84 lines
2.6 KiB
Python
# Copyright 2022 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.
|
|
|
|
"""Common fixtures for pytests."""
|
|
|
|
import pathlib
|
|
|
|
import pytest
|
|
|
|
import platform_utils
|
|
import repo_trace
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def disable_repo_trace(tmp_path):
|
|
"""Set an environment marker to relax certain strict checks for test code.""" # noqa: E501
|
|
repo_trace._TRACE_FILE = str(tmp_path / "TRACE_FILE_from_test")
|
|
|
|
|
|
# adapted from pytest-home 0.5.1
|
|
def _set_home(monkeypatch, path: pathlib.Path):
|
|
"""
|
|
Set the home dir using a pytest monkeypatch context.
|
|
"""
|
|
win = platform_utils.isWindows()
|
|
vars = ["HOME"] + win * ["USERPROFILE"]
|
|
for var in vars:
|
|
monkeypatch.setenv(var, str(path))
|
|
return path
|
|
|
|
|
|
# copied from
|
|
# https://github.com/pytest-dev/pytest/issues/363#issuecomment-1335631998
|
|
@pytest.fixture(scope="session")
|
|
def monkeysession():
|
|
with pytest.MonkeyPatch.context() as mp:
|
|
yield mp
|
|
|
|
|
|
@pytest.fixture(autouse=True, scope="session")
|
|
def session_tmp_home_dir(tmp_path_factory, monkeysession):
|
|
"""Set HOME to a temporary directory, avoiding user's .gitconfig.
|
|
|
|
b/302797407
|
|
|
|
Set home at session scope to take effect prior to
|
|
``test_wrapper.GitCheckoutTestCase.setUpClass``.
|
|
"""
|
|
return _set_home(monkeysession, tmp_path_factory.mktemp("home"))
|
|
|
|
|
|
# adapted from pytest-home 0.5.1
|
|
@pytest.fixture(autouse=True)
|
|
def tmp_home_dir(monkeypatch, tmp_path_factory):
|
|
"""Set HOME to a temporary directory.
|
|
|
|
Ensures that state doesn't accumulate in $HOME across tests.
|
|
|
|
Note that in conjunction with session_tmp_homedir, the HOME
|
|
dir is patched twice, once at session scope, and then again at
|
|
the function scope.
|
|
"""
|
|
return _set_home(monkeypatch, tmp_path_factory.mktemp("home"))
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def setup_user_identity(monkeysession, scope="session"):
|
|
"""Set env variables for author and committer name and email."""
|
|
monkeysession.setenv("GIT_AUTHOR_NAME", "Foo Bar")
|
|
monkeysession.setenv("GIT_COMMITTER_NAME", "Foo Bar")
|
|
monkeysession.setenv("GIT_AUTHOR_EMAIL", "foo@bar.baz")
|
|
monkeysession.setenv("GIT_COMMITTER_EMAIL", "foo@bar.baz")
|