-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This new script makes it easy to compare the current definitions of events and other types against a chosen base, e.g. the current state of the master branch or a previous edition. It produces diff commands that can be run to produce the wanted comparison. Since figuring out the most recent version of each type is a pretty common operation, a new versions module is introduced for this purpose. The existing find-latest-schemas.py script has been adapted to use the new module.
- Loading branch information
1 parent
d09c69f
commit 82c1586
Showing
4 changed files
with
235 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Copyright 2024 Axis Communications AB. | ||
# For a full list of individual contributors, please see the commit history. | ||
# | ||
# 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. | ||
|
||
"""Context-sensitive diffing of Eiffel type definitions. Compares the | ||
currently available types with the ones from a specified base and | ||
prints diff commands. For example, if the current commit has added | ||
v4.3.0 of ActT you'll get the following output: | ||
diff -u definitions/EiffelActivityTriggeredEvent/4.2.0.yml definitions/EiffelActivityTriggeredEvent/4.3.0.yml | ||
diff -u schemas/EiffelActivityTriggeredEvent/4.2.0.json schemas/EiffelActivityTriggeredEvent/4.3.0.json | ||
By default, the base of the comparison is origin/master, but any commit | ||
reference can be given as an argument. | ||
""" | ||
|
||
import sys | ||
from pathlib import Path | ||
|
||
import versions | ||
|
||
|
||
def _main(): | ||
base = "origin/master" | ||
if len(sys.argv) > 2: | ||
print(f"Usage: python {sys.argv[0]} [ base ]") | ||
sys.exit(-1) | ||
elif len(sys.argv) == 2: | ||
base = sys.argv[1] | ||
|
||
earlier = versions.latest_in_gitref(base, ".", Path("definitions")) | ||
current = versions.latest_in_dir(Path("definitions")) | ||
for type, current_version in sorted(current.items()): | ||
earlier_version = earlier.get(type) | ||
if not earlier_version: | ||
print(f"diff -u /dev/null definitions/{type}/{current_version}.yml") | ||
print(f"diff -u /dev/null schemas/{type}/{current_version}.json") | ||
elif earlier_version != current_version: | ||
print( | ||
f"diff -u definitions/{type}/{earlier_version}.yml definitions/{type}/{current_version}.yml" | ||
) | ||
print( | ||
f"diff -u schemas/{type}/{earlier_version}.json schemas/{type}/{current_version}.json" | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
_main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# Copyright 2024 Axis Communications AB. | ||
# For a full list of individual contributors, please see the commit history. | ||
# | ||
# 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. | ||
|
||
import subprocess | ||
from pathlib import Path | ||
|
||
import pytest | ||
import semver | ||
|
||
import versions | ||
|
||
|
||
class Git: | ||
"""Simple class for running Git commands in a given directory.""" | ||
|
||
def __init__(self, path: Path): | ||
self.path = path | ||
self.command("init") | ||
# "git commit" requires that we identify ourselves. | ||
self.command("config", "user.name", "John Doe") | ||
self.command("config", "user.email", "[email protected]") | ||
|
||
def command(self, *args: str) -> None: | ||
subprocess.check_call(["git"] + list(args), cwd=self.path) | ||
|
||
|
||
@pytest.fixture | ||
def tmp_git(tmp_path): | ||
"""Injects a Git instance rooted in a temporary directory.""" | ||
yield Git(tmp_path) | ||
|
||
|
||
def create_files(base_path: Path, *args: str) -> None: | ||
for p in args: | ||
fullpath = base_path / p | ||
fullpath.parent.mkdir(parents=True, exist_ok=True) | ||
fullpath.touch() | ||
|
||
|
||
def test_latest_in_gitref(tmp_git): | ||
# Create a bunch of files in the git, commit them, and tag that commit. | ||
create_files( | ||
tmp_git.path, | ||
"subdir_c/6.0.0.json", | ||
"definitions/subdir_a/1.0.0.json", | ||
"definitions/subdir_a/2.0.0.json", | ||
"definitions/subdir_b/3.0.0.json", | ||
"definitions/subdir_b/4.0.0.json", | ||
) | ||
tmp_git.command("add", "-A") | ||
tmp_git.command("commit", "-m", "Initial set of files") | ||
tmp_git.command("tag", "v1.0.0") | ||
|
||
# Add an additional file and delete one of the original files. | ||
(tmp_git.path / "definitions/subdir_b/5.0.0.json").touch() | ||
tmp_git.command("rm", "definitions/subdir_a/2.0.0.json") | ||
tmp_git.command("add", "-A") | ||
tmp_git.command("commit", "-m", "Make changes") | ||
|
||
# Make sure the results we get are consistent with the original | ||
# contents of the git. | ||
assert versions.latest_in_gitref("v1.0.0", tmp_git.path, "definitions") == { | ||
"subdir_a": semver.VersionInfo.parse("2.0.0"), | ||
"subdir_b": semver.VersionInfo.parse("4.0.0"), | ||
} | ||
|
||
|
||
def test_latest_in_dir(tmp_path): | ||
create_files( | ||
tmp_path, | ||
"subdir_c/6.0.0.json", | ||
"definitions/subdir_a/1.0.0.json", | ||
"definitions/subdir_a/2.0.0.json", | ||
"definitions/subdir_b/3.0.0.json", | ||
"definitions/subdir_b/4.0.0.json", | ||
) | ||
|
||
assert versions.latest_in_dir(tmp_path / "definitions") == { | ||
"subdir_a": semver.VersionInfo.parse("2.0.0"), | ||
"subdir_b": semver.VersionInfo.parse("4.0.0"), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Copyright 2024 Axis Communications AB. | ||
# For a full list of individual contributors, please see the commit history. | ||
# | ||
# 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. | ||
|
||
"""The versions module contains functions for discovering definition files.""" | ||
|
||
import os | ||
import subprocess | ||
from pathlib import Path | ||
from typing import Dict | ||
from typing import Iterable | ||
|
||
import semver | ||
|
||
|
||
def latest_in_gitref( | ||
committish: str, gitdir: Path, subdir: Path | ||
) -> Dict[str, semver.version.Version]: | ||
"""Lists the definition files found under a given subdirectory of a | ||
git at a given point in time (described by a committish, e.g. a | ||
SHA-1, tag, or branch reference) and returns a dict that maps each | ||
typename (e.g. EiffelArtifactCreatedEvent) to the latest version found. | ||
""" | ||
return _latest_versions( | ||
Path(line) | ||
for line in ( | ||
subprocess.check_output( | ||
["git", "ls-tree", "-r", "--name-only", committish, "--", subdir], | ||
cwd=gitdir, | ||
) | ||
.decode("utf-8") | ||
.splitlines() | ||
) | ||
) | ||
|
||
|
||
def latest_in_dir(path: Path) -> Dict[str, semver.version.Version]: | ||
"""Inspects the definition files found under a given path and returns | ||
a dict that maps each typename (e.g. EiffelArtifactCreatedEvent) to | ||
its latest version found. | ||
""" | ||
return _latest_versions( | ||
Path(current) / f for current, _, files in os.walk(path) for f in files | ||
) | ||
|
||
|
||
def _latest_versions(paths: Iterable[Path]) -> Dict[str, semver.version.Version]: | ||
"""Given a list of foo/<typename>/<version>.<ext> pathnames, returns | ||
a dict mapping typenames to the most recent version of that type. | ||
""" | ||
result = {} | ||
for path in paths: | ||
type = path.parent.name | ||
this_version = semver.VersionInfo.parse(Path(path.name).stem) | ||
if type not in result or result[type] < this_version: | ||
result[type] = this_version | ||
return result |