Skip to content

Commit

Permalink
Add failing tests for SystemCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
claui committed Dec 8, 2014
1 parent 1ddbf0e commit c3266d3
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 2 deletions.
62 changes: 62 additions & 0 deletions test/cask/system_command_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
require 'test_helper'

describe Cask::SystemCommand do
describe "when the exit code is 0" do
result = nil

before do
command = '/usr/bin/true'
options = {
:must_succeed => false
}
result = Cask::SystemCommand.run(command, options)
end

it "says the command was successful" do
result.success?.must_equal(true)
end

it "says the exit status is 0" do
result.exit_status.must_equal(0)
end
end

describe "when the exit code is 1" do
before do
# See: https://bugs.ruby-lang.org/issues/1287
skip("Ruby 1.8.7 doesn’t see exit statuses") if TestHelper.ruby18?
end

describe "and the command must succeed" do
it "throws an error" do
lambda {
command = '/usr/bin/false'
options = {
:must_succeed => true
}
result = Cask::SystemCommand.run(command, options)
}.must_raise(CaskCommandFailedError)
end
end

describe "and the command does not have to succeed" do
result = nil

before do
command = '/usr/bin/false'
options = {
:must_succeed => false
}
result = Cask::SystemCommand.run(command, options)
end

it "says the command failed" do
result.success?.must_equal(false)
end

it "says the exit status is 1" do
result.exit_status.must_equal(1)
end
end
end
end
3 changes: 1 addition & 2 deletions test/syntax_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

# Reason for this hack is unknown. Travis appears to freeze,
# but only in one section of the build matrix.
skip if ENV.key?('TRAVIS_JOB_ID') and
RUBY_VERSION.match(%r{^1\.8})
skip if ENV.key?('TRAVIS_JOB_ID') and TestHelper.ruby18?

args = flags + [ '--', file ]
shutup do
Expand Down
4 changes: 4 additions & 0 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ def self.install_without_artifacts(cask)
end
end
end

def self.ruby18?
RUBY_VERSION.match(%r{^1\.8})
end
end

require 'support/fake_fetcher'
Expand Down

0 comments on commit c3266d3

Please sign in to comment.