| # 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. |
| |
| import os |
| import pytest |
| from pathlib import Path |
| |
| import asfyaml.dataobjects |
| |
| |
| @pytest.fixture |
| def base_path() -> Path: |
| """Get the current folder of the test""" |
| return Path(__file__).parent |
| |
| @pytest.fixture |
| def test_repo(base_path: Path) -> asfyaml.dataobjects.Repository: |
| repo_path = str(base_path.joinpath("../repos/private/whimsy/whimsy-private.git")) |
| os.environ["PATH_INFO"] = "whimsy-site.git/git-receive-pack" |
| os.environ["GIT_PROJECT_ROOT"] = str(base_path.joinpath("../repos/private")) |
| if not os.path.isdir(repo_path): # Make test repo dir |
| os.makedirs(repo_path, exist_ok=True) |
| return asfyaml.dataobjects.Repository(repo_path) |
| |
| @pytest.fixture |
| def atr_repo(base_path: Path) -> asfyaml.dataobjects.Repository: |
| """A repository named like an ATR project, for the `project` feature tests.""" |
| return asfyaml.dataobjects.Repository(str(base_path.joinpath("../repos/tooling-trusted-releases.git"))) |