brew/Library/Homebrew/test/test_software_spec.rb
2013-09-23 21:39:33 -05:00

117 lines
2.7 KiB
Ruby

require 'testing_env'
require 'software_spec'
require 'bottles'
class SoftwareSpecTests < Test::Unit::TestCase
def setup
@spec = SoftwareSpec.new
end
def test_resource
@spec.resource('foo') { url 'foo-1.0' }
assert @spec.resource?('foo')
end
def test_raises_when_duplicate_resources_are_defined
@spec.resource('foo') { url 'foo-1.0' }
assert_raises(DuplicateResourceError) do
@spec.resource('foo') { url 'foo-1.0' }
end
end
def test_raises_when_accessing_missing_resources
assert_raises(ResourceMissingError) { @spec.resource('foo') }
end
def test_resource_owner
@spec.resource('foo') { url 'foo-1.0' }
@spec.owner = stub(:name => 'some_name')
assert_equal 'some_name', @spec.name
@spec.resources.each_value { |r| assert_equal @spec, r.owner }
end
def test_option
@spec.option('foo')
assert @spec.build.has_option? 'foo'
end
def test_option_raises_when_begins_with_dashes
assert_raises(RuntimeError) { @spec.option('--foo') }
end
def test_option_raises_when_name_empty
assert_raises(RuntimeError) { @spec.option('') }
end
def test_option_accepts_symbols
@spec.option(:foo)
assert @spec.build.has_option? 'foo'
end
def test_depends_on
@spec.depends_on('foo')
assert_equal 'foo', @spec.deps.first.name
end
def test_dependency_option_integration
@spec.depends_on 'foo' => :optional
@spec.depends_on 'bar' => :recommended
assert @spec.build.has_option?('with-foo')
assert @spec.build.has_option?('without-bar')
end
def test_explicit_options_override_default_dep_option_description
@spec.option('with-foo', 'blah')
@spec.depends_on('foo' => :optional)
assert_equal 'blah', @spec.build.first.description
end
end
class HeadSoftwareSpecTests < Test::Unit::TestCase
include VersionAssertions
def setup
@spec = HeadSoftwareSpec.new
end
def test_version
assert_version_equal 'HEAD', @spec.version
end
def test_verify_download_integrity
assert_nil @spec.verify_download_integrity(Object.new)
end
end
class BottleTests < Test::Unit::TestCase
def setup
@spec = Bottle.new
end
def test_checksum_setters
checksums = {
:snow_leopard_32 => 'deadbeef'*5,
:snow_leopard => 'faceb00c'*5,
:lion => 'baadf00d'*5,
:mountain_lion => '8badf00d'*5,
}
checksums.each_pair do |cat, sha1|
@spec.sha1(sha1 => cat)
end
checksums.each_pair do |cat, sha1|
assert_equal Checksum.new(:sha1, sha1),
@spec.instance_variable_get(:@sha1)[cat]
end
end
def test_other_setters
double = Object.new
%w{root_url prefix cellar revision}.each do |method|
@spec.send(method, double)
assert_equal double, @spec.send(method)
end
end
end