|
- import os
- import itertools
- from contextlib import contextmanager, ExitStack
- from pathlib import Path
- from typing import Iterable, Union, Any, Dict, NamedTuple, ContextManager
- import subprocess
- import shutil
-
- import pytest
-
- from dds_ci import proc
-
- from . import fileutil
-
-
- class DDS:
- def __init__(self, dds_exe: Path, test_dir: Path, project_dir: Path,
- scope: ExitStack) -> None:
- self.dds_exe = dds_exe
- self.test_dir = test_dir
- self.source_root = project_dir
- self.scratch_dir = project_dir / '_test_scratch/Ю́рий Алексе́евич Гага́рин'
- self.scope = scope
- self.scope.callback(self.cleanup)
-
- @property
- def repo_dir(self) -> Path:
- return self.scratch_dir / 'repo'
-
- @property
- def catalog_path(self) -> Path:
- return self.scratch_dir / 'catalog.db'
-
- @property
- def deps_build_dir(self) -> Path:
- return self.scratch_dir / 'deps-build'
-
- @property
- def build_dir(self) -> Path:
- return self.scratch_dir / 'build'
-
- @property
- def lmi_path(self) -> Path:
- return self.scratch_dir / 'INDEX.lmi'
-
- def cleanup(self):
- if self.scratch_dir.exists():
- shutil.rmtree(self.scratch_dir)
-
- def run_unchecked(self, cmd: proc.CommandLine, *,
- cwd: Path = None) -> subprocess.CompletedProcess:
- full_cmd = itertools.chain([self.dds_exe, '-ltrace'], cmd)
- return proc.run(full_cmd, cwd=cwd or self.source_root)
-
- def run(self, cmd: proc.CommandLine, *, cwd: Path = None,
- check=True) -> subprocess.CompletedProcess:
- cmdline = list(proc.flatten_cmd(cmd))
- res = self.run_unchecked(cmd, cwd=cwd)
- if res.returncode != 0 and check:
- raise subprocess.CalledProcessError(
- res.returncode, [self.dds_exe] + cmdline, res.stdout)
- return res
-
- @property
- def repo_dir_arg(self) -> str:
- return f'--repo-dir={self.repo_dir}'
-
- @property
- def project_dir_arg(self) -> str:
- return f'--project-dir={self.source_root}'
-
- @property
- def catalog_path_arg(self) -> str:
- return f'--catalog={self.catalog_path}'
-
- def build_deps(self, args: proc.CommandLine, *,
- toolchain: str = None) -> subprocess.CompletedProcess:
- return self.run([
- 'build-deps',
- f'--toolchain={toolchain or self.default_builtin_toolchain}',
- self.catalog_path_arg,
- self.repo_dir_arg,
- f'--out={self.deps_build_dir}',
- f'--lmi-path={self.lmi_path}',
- args,
- ])
-
- def build(self,
- *,
- toolchain: str = None,
- apps: bool = True,
- warnings: bool = True,
- tests: bool = True,
- check: bool = True) -> subprocess.CompletedProcess:
- return self.run(
- [
- 'build',
- f'--out={self.build_dir}',
- f'--toolchain={toolchain or self.default_builtin_toolchain}',
- f'--catalog={self.catalog_path.relative_to(self.source_root)}',
- f'--repo-dir={self.repo_dir.relative_to(self.source_root)}',
- ['--no-tests'] if not tests else [],
- ['--no-apps'] if not apps else [],
- ['--no-warnings'] if not warnings else [],
- self.project_dir_arg,
- ],
- check=check,
- )
-
- def sdist_create(self) -> subprocess.CompletedProcess:
- self.build_dir.mkdir(exist_ok=True, parents=True)
- return self.run(['sdist', 'create', self.project_dir_arg],
- cwd=self.build_dir)
-
- def sdist_export(self) -> subprocess.CompletedProcess:
- return self.run([
- 'sdist',
- 'export',
- self.project_dir_arg,
- self.repo_dir_arg,
- ])
-
- def repo_import(self, sdist: Path) -> subprocess.CompletedProcess:
- return self.run(['repo', self.repo_dir_arg, 'import', sdist])
-
- @property
- def default_builtin_toolchain(self) -> str:
- if os.name == 'posix':
- return ':c++17:gcc-9'
- elif os.name == 'nt':
- return ':c++17:msvc'
- else:
- raise RuntimeError(
- f'No default builtin toolchain defined for tests on platform "{os.name}"'
- )
-
- @property
- def exe_suffix(self) -> str:
- if os.name == 'posix':
- return ''
- elif os.name == 'nt':
- return '.exe'
- else:
- raise RuntimeError(
- f'We don\'t know the executable suffix for the platform "{os.name}"'
- )
-
- def catalog_create(self) -> subprocess.CompletedProcess:
- self.scratch_dir.mkdir(parents=True, exist_ok=True)
- return self.run(
- ['catalog', 'create', f'--catalog={self.catalog_path}'],
- cwd=self.test_dir)
-
- def catalog_import(self, json_path: Path) -> subprocess.CompletedProcess:
- self.scratch_dir.mkdir(parents=True, exist_ok=True)
- return self.run([
- 'catalog',
- 'import',
- f'--catalog={self.catalog_path}',
- f'--json={json_path}',
- ])
-
- def catalog_get(self, req: str) -> subprocess.CompletedProcess:
- return self.run([
- 'catalog',
- 'get',
- f'--catalog={self.catalog_path}',
- f'--out-dir={self.scratch_dir}',
- req,
- ])
-
- def set_contents(self, path: Union[str, Path],
- content: bytes) -> ContextManager[Path]:
- return fileutil.set_contents(self.source_root / path, content)
-
-
- @contextmanager
- def scoped_dds(test_dir: Path, project_dir: Path, name: str):
- dds_exe = Path(__file__).absolute().parent.parent / '_build/dds'
- if os.name == 'nt':
- dds_exe = dds_exe.with_suffix('.exe')
- with ExitStack() as scope:
- yield DDS(dds_exe, test_dir, project_dir, scope)
-
-
- class DDSFixtureParams(NamedTuple):
- ident: str
- subdir: Union[Path, str]
-
-
- def dds_fixture_conf(*argsets: DDSFixtureParams):
- args = list(argsets)
- return pytest.mark.parametrize(
- 'dds', args, indirect=True, ids=[p.ident for p in args])
-
-
- def dds_fixture_conf_1(subdir: Union[Path, str]):
- params = DDSFixtureParams(ident='only', subdir=subdir)
- return pytest.mark.parametrize('dds', [params], indirect=True, ids=['.'])
|