Skip to content

Commit c46accf

Browse files
committed
Add integration test for local checkout of CABLE
1 parent 1c53f89 commit c46accf

File tree

4 files changed

+57
-24
lines changed

4 files changed

+57
-24
lines changed

benchcab/data/config-schema.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ realisations:
4848
type: "dict"
4949
excludes: ["git", "svn"]
5050
schema:
51-
local_path:
51+
path:
5252
type: "string"
5353
required: true
5454
name:

benchcab/data/test/integration.sh

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,24 @@
22

33
set -ex
44

5+
CABLE_REPO="[email protected]:CABLE-LSM/CABLE.git"
6+
CABLE_DIR=/scratch/$PROJECT/$USER/benchcab/CABLE
7+
58
TEST_DIR=/scratch/$PROJECT/$USER/benchcab/integration
69
EXAMPLE_REPO="[email protected]:CABLE-LSM/bench_example.git"
710

8-
# Remove the test work space, then recreate
11+
# Remove CABLE and test work space, then recreate
12+
rm -rf $CABLE_DIR
13+
mkdir -p $CABLE_DIR
14+
915
rm -rf $TEST_DIR
1016
mkdir -p $TEST_DIR
1117

18+
# Clone local checkout for CABLE
19+
git clone $CABLE_REPO $CABLE_DIR
20+
cd $CABLE_DIR
21+
git reset --hard 67a52dc5721f0da78ee7d61798c0e8a804dcaaeb
22+
1223
# Clone the example repo
1324
git clone $EXAMPLE_REPO $TEST_DIR
1425
cd $TEST_DIR
@@ -18,9 +29,13 @@ cat > config.yaml << EOL
1829
project: $PROJECT
1930
2031
realisations:
32+
- repo:
33+
local:
34+
path: $CABLE_DIR
2135
- repo:
2236
git:
2337
branch: main
38+
commit: 67a52dc5721f0da78ee7d61798c0e8a804dcaaeb
2439
2540
modules: [
2641
intel-compiler/2021.1.1,

benchcab/utils/repo.py

+37-19
Original file line numberDiff line numberDiff line change
@@ -49,26 +49,32 @@ def get_branch_name(self) -> str:
4949
class LocalRepo(Repo):
5050
"""Concrete implementation of the `Repo` class using local path backend."""
5151

52-
def __init__(self, local_path: str, path: str) -> None:
52+
def __init__(self, path: str, realisation_path: str) -> None:
5353
"""_summary_.
5454
5555
Parameters
5656
----------
57-
local_path : str
57+
realisation_path : str
5858
Path for local checkout of CABLE
5959
path : str
60-
Directory where CABLE is symlinked
60+
Directory where CABLE is symlinked from
6161
6262
"""
63-
self.name = Path(local_path).name
64-
self.local_path = local_path
65-
self.path = path / self.name if path.is_dir() else path
63+
self.name = Path(path).name
64+
self.local_path = path
65+
self.realisation_path = (
66+
realisation_path / self.name
67+
if realisation_path.is_dir()
68+
else realisation_path
69+
)
6670
self.logger = get_logger()
6771

6872
def checkout(self):
6973
"""Checkout the source code."""
70-
self.path.symlink_to(self.local_path)
71-
self.logger.info(f"Created symlink from to {self.path} named {self.name}")
74+
self.realisation_path.symlink_to(self.local_path)
75+
self.logger.info(
76+
f"Created symlink from to {self.realisation_path} named {self.name}"
77+
)
7278

7379
def get_revision(self) -> str:
7480
"""Return the latest revision of the source code.
@@ -79,7 +85,7 @@ def get_revision(self) -> str:
7985
Human readable string describing the latest revision.
8086
8187
"""
82-
return f"Using local CABLE branch: {self.name}"
88+
return f"Local CABLE build: {self.name}"
8389

8490
def get_branch_name(self) -> str:
8591
"""Return the branch name of the source code.
@@ -90,7 +96,7 @@ def get_branch_name(self) -> str:
9096
Branch name of the source code.
9197
9298
"""
93-
return Path(self.path).absolute()
99+
return Path(self.realisation_path).absolute().as_posix()
94100

95101

96102
class GitRepo(Repo):
@@ -106,7 +112,11 @@ class GitRepo(Repo):
106112
subprocess_handler = SubprocessWrapper()
107113

108114
def __init__(
109-
self, url: str, branch: str, path: Path, commit: Optional[str] = None
115+
self,
116+
url: str,
117+
branch: str,
118+
realisation_path: Path,
119+
commit: Optional[str] = None,
110120
) -> None:
111121
"""Return a `GitRepo` instance.
112122
@@ -116,7 +126,7 @@ def __init__(
116126
URL pointing to the GitHub repository.
117127
branch: str
118128
Name of a branch on the GitHub repository.
119-
path: Path
129+
realisation_path: Path
120130
Path to a directory in which the repository is cloned into. If
121131
`path` points to an existing directory, the repository will be
122132
cloned into `path / branch`.
@@ -127,7 +137,9 @@ def __init__(
127137
"""
128138
self.url = url
129139
self.branch = branch
130-
self.path = path / branch if path.is_dir() else path
140+
self.path = (
141+
realisation_path / branch if realisation_path.is_dir() else realisation_path
142+
)
131143
self.commit = commit
132144
self.logger = get_logger()
133145

@@ -187,7 +199,7 @@ def __init__(
187199
self,
188200
svn_root: str,
189201
branch_path: str,
190-
path: Path,
202+
realisation_path: Path,
191203
revision: Optional[int] = None,
192204
) -> None:
193205
"""Return an `SVNRepo` instance.
@@ -198,7 +210,7 @@ def __init__(
198210
URL pointing to the root of the SVN repository.
199211
branch_path: str
200212
Path to a branch relative to `svn_root`.
201-
path: Path
213+
realisation_path: Path
202214
Path to a directory in which the branch is checked out into. If
203215
`path` points to an existing directory, the repository will be
204216
cloned into `path / <branch_name>` where `<branch_name>` is the
@@ -211,7 +223,11 @@ def __init__(
211223
self.svn_root = svn_root
212224
self.branch_path = branch_path
213225
self.revision = revision
214-
self.path = path / Path(branch_path).name if path.is_dir() else path
226+
self.path = (
227+
realisation_path / Path(branch_path).name
228+
if realisation_path.is_dir()
229+
else realisation_path
230+
)
215231
self.logger = get_logger()
216232

217233
def checkout(self):
@@ -280,9 +296,11 @@ def create_repo(spec: dict, path: Path) -> Repo:
280296
if "git" in spec:
281297
if "url" not in spec["git"]:
282298
spec["git"]["url"] = internal.CABLE_GIT_URL
283-
return GitRepo(path=path, **spec["git"])
299+
return GitRepo(realisation_path=path, **spec["git"])
284300
if "svn" in spec:
285-
return SVNRepo(svn_root=internal.CABLE_SVN_ROOT, path=path, **spec["svn"])
301+
return SVNRepo(
302+
svn_root=internal.CABLE_SVN_ROOT, realisation_path=path, **spec["svn"]
303+
)
286304
if "local" in spec:
287-
return LocalRepo(path=path, **spec["local"])
305+
return LocalRepo(realisation_path=path, **spec["local"])
288306
raise RepoSpecError

tests/test_workdir.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ def src_path(self) -> Path:
7575
def runs_path(self) -> Path:
7676
return Path("runs")
7777

78-
@pytest.fixture()
79-
def revision_log_file(self) -> Path:
80-
return Path("rev_number-200.log")
78+
@pytest.fixture(params=["rev_number-0.log", "rev_number-200.log"])
79+
def revision_log_file(self, request) -> Path:
80+
return Path(request.param)
8181

8282
@pytest.fixture(
8383
params=["benchmark_cable_qsub.sh.o21871", "benchmark_cable_qsub.sh"]

0 commit comments

Comments
 (0)