-
-
Notifications
You must be signed in to change notification settings - Fork 104
Resolver for Mercurial repositories #458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
straight-shoota
merged 20 commits into
crystal-lang:master
from
f-fr:feature/hg-resolver
Sep 20, 2021
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
b11bb08
Add first implementation of a mercurial resolver
f-fr c1a6c2d
Add specs for hg resolver
f-fr 976260c
Add some specs for mercurial bookmarks
f-fr 8b4fd1a
[CI] Install mercurial
straight-shoota d32e82a
Forward error message in `hg_retry`
f-fr 736b656
Ensure parent directory exists before hg clone
f-fr 16da02b
Remove install path before installing sources from hg
f-fr 2cb5a69
[CI] Fix installation of mercurial on travis-ci
f-fr bd79e57
[CI] Install mercurial in github workflow
f-fr 16099f8
Set explicit username for hg commit and hg tag
f-fr d9e2a7b
Quote shell arguments correctly
f-fr dbac5f9
Remove a `file://` prefix from urls on Windows
f-fr a4a2e92
Only check for existence of `.hg/dirstate` for identifying hg repos
f-fr 3266b2b
Improve code of HgResolver
f-fr 7afdb50
Add `to_hg_revset` and `to_hg_ref` methods
f-fr 1453032
Remove unused method `HgResolver#matches?`
f-fr fff4ccc
HgResolver#file_exists? does not use exceptions if the file does not …
f-fr 2e31e09
Add documentation for hg to SPEC.md
f-fr 8e8fffe
Merge master
f-fr c6e5df6
Fix specs for `HgResolver.normalize_key_source`
f-fr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -83,6 +83,79 @@ def checkout_git_branch(project, branch) | |
end | ||
end | ||
|
||
def create_hg_repository(project, *versions) | ||
Dir.cd(tmp_path) do | ||
run "hg init #{Process.quote(project)}" | ||
end | ||
|
||
Dir.mkdir(File.join(hg_path(project), "src")) | ||
File.write(File.join(hg_path(project), "src", "#{project}.cr"), "module #{project.capitalize}\nend") | ||
|
||
Dir.cd(hg_path(project)) do | ||
run "hg add #{Process.quote("src/#{project}.cr")}" | ||
end | ||
|
||
versions.each { |version| create_hg_release project, version } | ||
end | ||
|
||
def create_fork_hg_repository(project, upstream) | ||
Dir.cd(tmp_path) do | ||
run "hg clone #{Process.quote(hg_url(upstream))} #{Process.quote(project)}" | ||
end | ||
end | ||
|
||
def create_hg_version_commit(project, version, shard : Bool | NamedTuple = true) | ||
Dir.cd(hg_path(project)) do | ||
if shard | ||
contents = shard.is_a?(NamedTuple) ? shard : nil | ||
create_shard project, version, contents | ||
end | ||
Dir.cd(hg_path(project)) do | ||
name = shard[:name]? if shard.is_a?(NamedTuple) | ||
name ||= project | ||
File.touch "src/#{name}.cr" | ||
run "hg add #{Process.quote("src/#{name}.cr")}" | ||
end | ||
create_hg_commit project, "release: v#{version}" | ||
end | ||
end | ||
|
||
def create_hg_release(project, version, shard : Bool | NamedTuple = true) | ||
create_hg_version_commit(project, version, shard) | ||
create_hg_tag(project, "v#{version}") | ||
end | ||
|
||
def create_hg_tag(project, version) | ||
Dir.cd(hg_path(project)) do | ||
run "hg tag -u #{Process.quote("Your Name <[email protected]>")} #{Process.quote(version)}" | ||
end | ||
end | ||
|
||
def create_hg_commit(project, message = "new commit") | ||
Dir.cd(hg_path(project)) do | ||
File.write("src/#{project}.cr", "# #{message}", mode: "a") | ||
run "hg commit -u #{Process.quote("Your Name <[email protected]>")} -A -m #{Process.quote(message)}" | ||
end | ||
end | ||
|
||
def checkout_new_hg_bookmark(project, branch) | ||
Dir.cd(hg_path(project)) do | ||
run "hg bookmark #{Process.quote(branch)}" | ||
end | ||
end | ||
|
||
def checkout_new_hg_branch(project, branch) | ||
Dir.cd(hg_path(project)) do | ||
run "hg branch #{Process.quote(branch)}" | ||
end | ||
end | ||
|
||
def checkout_hg_rev(project, rev) | ||
Dir.cd(hg_path(project)) do | ||
run "hg update -C #{Process.quote(rev)}" | ||
end | ||
end | ||
|
||
def create_shard(project, version, contents : NamedTuple? = nil) | ||
spec = {name: project, version: version, crystal: Shards.crystal_version} | ||
spec = spec.merge(contents) if contents | ||
|
@@ -119,6 +192,20 @@ def git_path(project) | |
File.join(tmp_path, project.to_s) | ||
end | ||
|
||
def hg_commits(project, rev = ".") | ||
Dir.cd(hg_path(project)) do | ||
run("hg log --template=#{Process.quote("{node}\n")} -r #{Process.quote(rev)}").strip.split('\n') | ||
end | ||
end | ||
|
||
def hg_url(project) | ||
"file://#{Path[hg_path(project)].to_posix}" | ||
end | ||
|
||
def hg_path(project) | ||
File.join(tmp_path, project.to_s) | ||
end | ||
|
||
def rel_path(project) | ||
"../../spec/.repositories/#{project}" | ||
end | ||
|
This file contains hidden or 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 hidden or 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,172 @@ | ||
require "./spec_helper" | ||
|
||
private def resolver(name) | ||
Shards::HgResolver.new(name, hg_url(name)) | ||
end | ||
|
||
module Shards | ||
# Allow overriding `source` for the specs | ||
class HgResolver | ||
def source=(@source) | ||
end | ||
end | ||
|
||
describe HgResolver do | ||
before_each do | ||
create_hg_repository "empty" | ||
create_hg_commit "empty", "initial release" | ||
|
||
create_hg_repository "unreleased" | ||
create_hg_version_commit "unreleased", "0.1.0" | ||
checkout_new_hg_branch "unreleased", "branch" | ||
create_hg_commit "unreleased", "testing" | ||
checkout_hg_rev "unreleased", "default" | ||
|
||
create_hg_repository "unreleased-bm" | ||
create_hg_version_commit "unreleased-bm", "0.1.0" | ||
checkout_new_hg_bookmark "unreleased-bm", "branch" | ||
create_hg_commit "unreleased-bm", "testing" | ||
checkout_hg_rev "unreleased-bm", "default" | ||
|
||
create_hg_repository "library", "0.0.1", "0.1.0", "0.1.1", "0.1.2", "0.2.0" | ||
|
||
# Create a version tag not prefixed by 'v' which should be ignored | ||
create_hg_tag "library", "99.9.9" | ||
end | ||
|
||
it "normalizes github bitbucket gitlab sources" do | ||
# don't normalise other domains | ||
HgResolver.normalize_key_source("hg", "HTTPs://myhgserver.com/Repo").should eq({"hg", "HTTPs://myhgserver.com/Repo"}) | ||
|
||
# don't change protocol from ssh | ||
HgResolver.normalize_key_source("hg", "ssh://[email protected]/Repo").should eq({"hg", "ssh://[email protected]/Repo"}) | ||
end | ||
|
||
it "available releases" do | ||
resolver("empty").available_releases.should be_empty | ||
resolver("library").available_releases.should eq(versions ["0.0.1", "0.1.0", "0.1.1", "0.1.2", "0.2.0"]) | ||
end | ||
|
||
it "latest version for ref" do | ||
expect_raises(Shards::Error, "No shard.yml was found for shard \"empty\" at commit #{hg_commits(:empty)[0]}") do | ||
resolver("empty").latest_version_for_ref(hg_branch "default") | ||
end | ||
expect_raises(Shards::Error, "No shard.yml was found for shard \"empty\" at commit #{hg_commits(:empty)[0]}") do | ||
resolver("empty").latest_version_for_ref(nil) | ||
end | ||
resolver("unreleased").latest_version_for_ref(hg_branch "default").should eq(version "0.1.0+hg.commit.#{hg_commits(:unreleased)[0]}") | ||
resolver("unreleased").latest_version_for_ref(hg_branch "branch").should eq(version "0.1.0+hg.commit.#{hg_commits(:unreleased, "branch")[0]}") | ||
resolver("unreleased").latest_version_for_ref(nil).should eq(version "0.1.0+hg.commit.#{hg_commits(:unreleased)[0]}") | ||
resolver("unreleased-bm").latest_version_for_ref(hg_branch "default").should eq(version "0.1.0+hg.commit.#{hg_commits("unreleased-bm")[0]}") | ||
resolver("unreleased-bm").latest_version_for_ref(hg_bookmark "branch").should eq(version "0.1.0+hg.commit.#{hg_commits("unreleased-bm", "branch")[0]}") | ||
resolver("unreleased-bm").latest_version_for_ref(nil).should eq(version "0.1.0+hg.commit.#{hg_commits("unreleased-bm")[0]}") | ||
resolver("library").latest_version_for_ref(hg_branch "default").should eq(version "0.2.0+hg.commit.#{hg_commits(:library)[0]}") | ||
resolver("library").latest_version_for_ref(nil).should eq(version "0.2.0+hg.commit.#{hg_commits(:library)[0]}") | ||
expect_raises(Shards::Error, "Could not find branch foo for shard \"library\" in the repository #{hg_url(:library)}") do | ||
resolver("library").latest_version_for_ref(hg_branch "foo") | ||
end | ||
end | ||
|
||
it "versions for" do | ||
expect_raises(Shards::Error, "No shard.yml was found for shard \"empty\" at commit #{hg_commits(:empty)[0]}") do | ||
resolver("empty").versions_for(Any) | ||
end | ||
resolver("library").versions_for(Any).should eq(versions ["0.0.1", "0.1.0", "0.1.1", "0.1.2", "0.2.0"]) | ||
resolver("library").versions_for(VersionReq.new "~> 0.1.0").should eq(versions ["0.1.0", "0.1.1", "0.1.2"]) | ||
resolver("library").versions_for(hg_branch "default").should eq(versions ["0.2.0+hg.commit.#{hg_commits(:library)[0]}"]) | ||
resolver("unreleased").versions_for(hg_branch "default").should eq(versions ["0.1.0+hg.commit.#{hg_commits(:unreleased)[0]}"]) | ||
resolver("unreleased").versions_for(Any).should eq(versions ["0.1.0+hg.commit.#{hg_commits(:unreleased)[0]}"]) | ||
resolver("unreleased-bm").versions_for(hg_branch "default").should eq(versions ["0.1.0+hg.commit.#{hg_commits("unreleased-bm")[0]}"]) | ||
resolver("unreleased-bm").versions_for(Any).should eq(versions ["0.1.0+hg.commit.#{hg_commits("unreleased-bm")[0]}"]) | ||
end | ||
|
||
it "read spec for release" do | ||
spec = resolver("library").spec(version "0.1.1") | ||
spec.original_version.should eq(version "0.1.1") | ||
spec.version.should eq(version "0.1.1") | ||
end | ||
|
||
it "read spec for commit" do | ||
version = version("0.2.0+hg.commit.#{hg_commits(:library)[0]}") | ||
spec = resolver("library").spec(version) | ||
spec.original_version.should eq(version "0.2.0") | ||
spec.version.should eq(version) | ||
end | ||
|
||
it "install" do | ||
library = resolver("library") | ||
|
||
library.install_sources(version("0.1.2"), install_path("library")) | ||
File.exists?(install_path("library", "src/library.cr")).should be_true | ||
File.exists?(install_path("library", "shard.yml")).should be_true | ||
Spec.from_file(install_path("library", "shard.yml")).version.should eq(version "0.1.2") | ||
|
||
library.install_sources(version("0.2.0"), install_path("library")) | ||
Spec.from_file(install_path("library", "shard.yml")).version.should eq(version "0.2.0") | ||
end | ||
|
||
it "install commit" do | ||
library = resolver("library") | ||
version = version "0.2.0+hg.commit.#{hg_commits(:library)[0]}" | ||
library.install_sources(version, install_path("library")) | ||
Spec.from_file(install_path("library", "shard.yml")).version.should eq(version "0.2.0") | ||
end | ||
|
||
it "origin changed" do | ||
library = HgResolver.new("library", hg_url("library")) | ||
library.install_sources(version("0.1.2"), install_path("library")) | ||
|
||
# Change the origin in the cache repo to https://foss.heptapod.net/foo/bar | ||
hgrc_path = File.join(library.local_path, ".hg", "hgrc") | ||
hgrc = File.read(hgrc_path) | ||
hgrc = hgrc.gsub(/(default\s*=\s*)([^\r\n]*)/, "\\1https://foss.heptapod.net/foo/bar") | ||
File.write(hgrc_path, hgrc) | ||
# | ||
# All of these alternatives should not trigger origin as changed | ||
same_origins = [ | ||
"https://foss.heptapod.net/foo/bar", | ||
"https://foss.heptapod.net:1234/foo/bar", | ||
"http://foss.heptapod.net/foo/bar", | ||
"ssh://foss.heptapod.net/foo/bar", | ||
"hg://foss.heptapod.net/foo/bar", | ||
"rsync://foss.heptapod.net/foo/bar", | ||
"[email protected]:foo/bar", | ||
"[email protected]:foo/bar", | ||
"foss.heptapod.net:foo/bar", | ||
] | ||
|
||
same_origins.each do |origin| | ||
library.source = origin | ||
library.origin_changed?.should be_false | ||
end | ||
|
||
# These alternatives should all trigger origin as changed | ||
changed_origins = [ | ||
"https://foss.heptapod.net/foo/bar2", | ||
"https://foss.heptapod.net/foos/bar", | ||
"https://hghubz.com/foo/bar", | ||
"file:///foss.heptapod.net/foo/bar", | ||
"[email protected]:foo/bar2", | ||
"[email protected]:foo/bar", | ||
"", | ||
] | ||
|
||
changed_origins.each do |origin| | ||
library.source = origin | ||
library.origin_changed?.should be_true | ||
end | ||
end | ||
|
||
it "renders report version" do | ||
resolver("library").report_version(version "1.2.3").should eq("1.2.3") | ||
resolver("library").report_version(version "1.2.3+hg.commit.654875c9dbfa8d72fba70d65fd548d51ffb85aff").should eq("1.2.3 at 654875c") | ||
end | ||
|
||
it "#matches_ref" do | ||
resolver = HgResolver.new("", "") | ||
resolver.matches_ref?(HgCommitRef.new("1234567890abcdef"), Shards::Version.new("0.1.0.+hg.commit.1234567")).should be_true | ||
resolver.matches_ref?(HgCommitRef.new("1234567890abcdef"), Shards::Version.new("0.1.0.+hg.commit.1234567890abcdef")).should be_true | ||
resolver.matches_ref?(HgCommitRef.new("1234567"), Shards::Version.new("0.1.0.+hg.commit.1234567890abcdef")).should be_true | ||
end | ||
end | ||
end |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.