-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13612 from jawshooah/preflight-include-staged
Include `Hbc::Staged` module in `Hbc::DSL::Preflight`
- Loading branch information
Showing
2 changed files
with
78 additions
and
0 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
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,76 @@ | ||
require "test_helper" | ||
|
||
describe Hbc::DSL::Preflight do | ||
before do | ||
cask = Hbc.load('basic-cask') | ||
@dsl = Hbc::DSL::Preflight.new(cask, Hbc::FakeSystemCommand) | ||
end | ||
|
||
it "can run system commands with list-form arguments" do | ||
Hbc::FakeSystemCommand.expects_command( | ||
['echo', 'homebrew-cask', 'rocks!'] | ||
) | ||
@dsl.system_command("echo", :args => ["homebrew-cask", "rocks!"]) | ||
end | ||
|
||
it "can get the Info.plist file for the primary app" do | ||
@dsl.info_plist_file.to_s.must_include 'basic-cask/1.2.3/TestCask.app/Contents/Info.plist' | ||
end | ||
|
||
it "can execute commands on the Info.plist file" do | ||
@dsl.stubs(:bundle_identifier => 'com.example.BasicCask') | ||
|
||
Hbc::FakeSystemCommand.expects_command( | ||
['/usr/libexec/PlistBuddy', '-c', 'Print CFBundleIdentifier', @dsl.info_plist_file] | ||
) | ||
@dsl.plist_exec('Print CFBundleIdentifier') | ||
end | ||
|
||
it "can set a key in the Info.plist file" do | ||
@dsl.stubs(:bundle_identifier => 'com.example.BasicCask') | ||
|
||
Hbc::FakeSystemCommand.expects_command( | ||
['/usr/libexec/PlistBuddy', '-c', 'Set :JVMOptions:JVMVersion 1.6+', @dsl.info_plist_file] | ||
) | ||
@dsl.plist_set(':JVMOptions:JVMVersion', '1.6+') | ||
end | ||
|
||
it "can set the permissions of a file" do | ||
Hbc::FakeSystemCommand.expects_command( | ||
['/usr/bin/sudo', '-E', '--', '/bin/chmod', '-R', '--', '777', Pathname('/path/to/file')] | ||
) | ||
@dsl.set_permissions('/path/to/file', '777') | ||
end | ||
|
||
it "can set the permissions of multiple files" do | ||
Hbc::FakeSystemCommand.expects_command( | ||
['/usr/bin/sudo', '-E', '--', '/bin/chmod', '-R', '--', '777', Pathname('/path/to/file'), Pathname('/path/to/other-file')] | ||
) | ||
@dsl.set_permissions(['/path/to/file', '/path/to/other-file'], '777') | ||
end | ||
|
||
it "can set the ownership of a file" do | ||
@dsl.stubs(:current_user => 'fake_user') | ||
|
||
Hbc::FakeSystemCommand.expects_command( | ||
['/usr/bin/sudo', '-E', '--', '/usr/sbin/chown', '-R', '--', 'fake_user:staff', Pathname('/path/to/file')] | ||
) | ||
@dsl.set_ownership('/path/to/file') | ||
end | ||
|
||
it "can set the ownership of multiple files" do | ||
@dsl.stubs(:current_user => 'fake_user') | ||
|
||
Hbc::FakeSystemCommand.expects_command( | ||
['/usr/bin/sudo', '-E', '--', '/usr/sbin/chown', '-R', '--', 'fake_user:staff', Pathname('/path/to/file'), Pathname('/path/to/other-file')] | ||
) | ||
@dsl.set_ownership(['/path/to/file', '/path/to/other-file']) | ||
end | ||
|
||
it "can set the ownership of a file with a different user and group" do | ||
Hbc::FakeSystemCommand.expects_command( | ||
['/usr/bin/sudo', '-E', '--', '/usr/sbin/chown', '-R', '--', 'other_user:other_group', Pathname('/path/to/file')] | ||
) | ||
@dsl.set_ownership('/path/to/file', user: 'other_user', group: 'other_group') | ||
end | ||
end |