Add test for Cask::Utils::gain_permissions_mkpath.

This commit is contained in:
Markus Reiter 2023-05-13 03:11:51 +02:00
parent 2c71d9dcd8
commit 4e483c9a0e
No known key found for this signature in database
GPG Key ID: 245293B51702655B

View File

@ -0,0 +1,40 @@
# frozen_string_literal: true
describe Cask::Utils do
let(:command) { NeverSudoSystemCommand }
describe "::gain_permissions_mkpath" do
let(:dir) { mktmpdir }
let(:path) { dir/"a/b/c" }
it "creates a directory" do
expect(path).not_to exist
described_class.gain_permissions_mkpath path, command: command
expect(path).to be_a_directory
described_class.gain_permissions_mkpath path, command: command
expect(path).to be_a_directory
end
context "when parent directory is not writable" do
it "creates a directory with `sudo`" do
FileUtils.chmod "-w", dir
expect(dir).not_to be_writable
expect(command).to receive(:run!).exactly(:once).and_wrap_original do |original, *args, **options|
FileUtils.chmod "+w", dir
original.call(*args, **options)
FileUtils.chmod "-w", dir
end
expect(path).not_to exist
described_class.gain_permissions_mkpath path, command: command
expect(path).to be_a_directory
described_class.gain_permissions_mkpath path, command: command
expect(path).to be_a_directory
expect(dir).not_to be_writable
FileUtils.chmod "+w", dir
end
end
end
end