mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Cask::Artifact::Manpage, :cask do
|
|
let(:cask) { Cask::CaskLoader.load(cask_token) }
|
|
|
|
context "without section" do
|
|
let(:cask_token) { "invalid-manpage-no-section" }
|
|
|
|
it "fails to load a cask without section" do
|
|
expect { cask }.to raise_error(Cask::CaskInvalidError, /is not a valid man page name/)
|
|
end
|
|
end
|
|
|
|
context "with install" do
|
|
let(:install_phase) do
|
|
lambda do
|
|
cask.artifacts.select { |a| a.is_a?(described_class) }.each do |artifact|
|
|
artifact.install_phase(command: NeverSudoSystemCommand, force: false)
|
|
end
|
|
end
|
|
end
|
|
|
|
let(:source_path) { cask.staged_path.join("manpage.1") }
|
|
let(:target_path) { cask.config.manpagedir.join("man1/manpage.1") }
|
|
let(:gz_source_path) { cask.staged_path.join("gzpage.1.gz") }
|
|
let(:gz_target_path) { cask.config.manpagedir.join("man1/gzpage.1.gz") }
|
|
|
|
before do
|
|
InstallHelper.install_without_artifacts(cask)
|
|
end
|
|
|
|
context "with autodetected section" do
|
|
let(:cask_token) { "with-autodetected-manpage-section" }
|
|
|
|
it "links the manpage to the proper directory" do
|
|
install_phase.call
|
|
|
|
expect(File).to be_identical target_path, source_path
|
|
expect(File).to be_identical gz_target_path, gz_source_path
|
|
end
|
|
end
|
|
end
|
|
end
|