mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
72 lines
1.8 KiB
Ruby
72 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "download_strategy"
|
|
|
|
RSpec.describe GitDownloadStrategy do
|
|
subject(:strategy) { described_class.new(url, name, version) }
|
|
|
|
let(:name) { "baz" }
|
|
let(:url) { "https://github.com/homebrew/foo" }
|
|
let(:version) { nil }
|
|
let(:cached_location) { subject.cached_location }
|
|
|
|
before do
|
|
@commit_id = 1
|
|
FileUtils.mkpath cached_location
|
|
end
|
|
|
|
define_method(:git_commit_all) do
|
|
system "git", "add", "--all"
|
|
# Allow instance variables here to have nice commit messages.
|
|
# rubocop:disable RSpec/InstanceVariable
|
|
system "git", "commit", "-m", "commit number #{@commit_id}"
|
|
@commit_id += 1
|
|
# rubocop:enable RSpec/InstanceVariable
|
|
end
|
|
|
|
define_method(:setup_git_repo) do
|
|
system "git", "-c", "init.defaultBranch=master", "init"
|
|
system "git", "remote", "add", "origin", "https://github.com/Homebrew/homebrew-foo"
|
|
FileUtils.touch "README"
|
|
git_commit_all
|
|
end
|
|
|
|
describe "#source_modified_time" do
|
|
it "returns the right modification time" do
|
|
cached_location.cd do
|
|
setup_git_repo
|
|
end
|
|
expect(strategy.source_modified_time.to_i).to eq(1_485_115_153)
|
|
end
|
|
end
|
|
|
|
specify "#last_commit" do
|
|
cached_location.cd do
|
|
setup_git_repo
|
|
FileUtils.touch "LICENSE"
|
|
git_commit_all
|
|
end
|
|
expect(strategy.last_commit).to eq("f68266e")
|
|
end
|
|
|
|
describe "#fetch_last_commit" do
|
|
let(:url) { "file://#{remote_repo}" }
|
|
let(:version) { Version.new("HEAD") }
|
|
let(:remote_repo) { HOMEBREW_PREFIX/"remote_repo" }
|
|
|
|
before { remote_repo.mkpath }
|
|
|
|
after { FileUtils.rm_rf remote_repo }
|
|
|
|
it "fetches the hash of the last commit" do
|
|
remote_repo.cd do
|
|
setup_git_repo
|
|
FileUtils.touch "LICENSE"
|
|
git_commit_all
|
|
end
|
|
|
|
expect(strategy.fetch_last_commit).to eq("f68266e")
|
|
end
|
|
end
|
|
end
|