2015-08-03 13:09:07 +01:00
|
|
|
require "testing_env"
|
|
|
|
require "resource"
|
2013-09-17 21:25:38 -05:00
|
|
|
|
2014-06-18 20:32:51 -05:00
|
|
|
class ResourceTests < Homebrew::TestCase
|
2013-09-17 21:25:38 -05:00
|
|
|
def setup
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource = Resource.new("test")
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_url
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.url("foo")
|
|
|
|
assert_equal "foo", @resource.url
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_url_with_specs
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.url("foo", :branch => "master")
|
|
|
|
assert_equal "foo", @resource.url
|
|
|
|
assert_equal({ :branch => "master" }, @resource.specs)
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_url_with_custom_download_strategy_class
|
|
|
|
strategy = Class.new(AbstractDownloadStrategy)
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.url("foo", :using => strategy)
|
|
|
|
assert_equal "foo", @resource.url
|
2013-09-17 21:25:38 -05:00
|
|
|
assert_equal strategy, @resource.download_strategy
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_url_with_specs_and_download_strategy
|
|
|
|
strategy = Class.new(AbstractDownloadStrategy)
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.url("foo", :using => strategy, :branch => "master")
|
|
|
|
assert_equal "foo", @resource.url
|
|
|
|
assert_equal({ :branch => "master" }, @resource.specs)
|
2013-09-17 21:25:38 -05:00
|
|
|
assert_equal strategy, @resource.download_strategy
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_url_with_custom_download_strategy_symbol
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.url("foo", :using => :git)
|
|
|
|
assert_equal "foo", @resource.url
|
2013-09-17 21:25:38 -05:00
|
|
|
assert_equal GitDownloadStrategy, @resource.download_strategy
|
|
|
|
end
|
|
|
|
|
2014-07-15 13:42:03 -05:00
|
|
|
def test_raises_for_unknown_download_strategy_class
|
|
|
|
assert_raises(TypeError) { @resource.url("foo", :using => Class.new) }
|
|
|
|
end
|
|
|
|
|
2013-10-11 20:21:41 -05:00
|
|
|
def test_does_not_mutate_specs_hash
|
2015-08-03 13:09:07 +01:00
|
|
|
specs = { :using => :git, :branch => "master" }
|
|
|
|
@resource.url("foo", specs)
|
|
|
|
assert_equal({ :branch => "master" }, @resource.specs)
|
2013-10-11 20:21:41 -05:00
|
|
|
assert_equal(:git, @resource.using)
|
2015-08-03 13:09:07 +01:00
|
|
|
assert_equal({ :using => :git, :branch => "master" }, specs)
|
2013-10-11 20:21:41 -05:00
|
|
|
end
|
|
|
|
|
2013-09-17 21:25:38 -05:00
|
|
|
def test_version
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.version("1.0")
|
|
|
|
assert_version_equal "1.0", @resource.version
|
2014-06-11 12:21:03 -05:00
|
|
|
refute_predicate @resource.version, :detected_from_url?
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_version_from_url
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.url("http://example.com/foo-1.0.tar.gz")
|
|
|
|
assert_version_equal "1.0", @resource.version
|
2014-06-11 12:21:03 -05:00
|
|
|
assert_predicate @resource.version, :detected_from_url?
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_version_with_scheme
|
2014-05-27 21:41:43 -05:00
|
|
|
klass = Class.new(Version)
|
|
|
|
@resource.version klass.new("1.0")
|
2015-08-03 13:09:07 +01:00
|
|
|
assert_version_equal "1.0", @resource.version
|
2014-05-27 21:41:43 -05:00
|
|
|
assert_instance_of klass, @resource.version
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_version_from_tag
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.url("http://example.com/foo-1.0.tar.gz", :tag => "v1.0.2")
|
|
|
|
assert_version_equal "1.0.2", @resource.version
|
2014-06-11 12:21:03 -05:00
|
|
|
assert_predicate @resource.version, :detected_from_url?
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_rejects_non_string_versions
|
|
|
|
assert_raises(TypeError) { @resource.version(1) }
|
|
|
|
assert_raises(TypeError) { @resource.version(2.0) }
|
|
|
|
assert_raises(TypeError) { @resource.version(Object.new) }
|
|
|
|
end
|
|
|
|
|
2014-12-31 10:37:29 -05:00
|
|
|
def test_version_when_url_is_not_set
|
|
|
|
assert_nil @resource.version
|
|
|
|
end
|
|
|
|
|
2013-09-17 21:25:38 -05:00
|
|
|
def test_mirrors
|
|
|
|
assert_empty @resource.mirrors
|
2015-08-03 13:09:07 +01:00
|
|
|
@resource.mirror("foo")
|
|
|
|
@resource.mirror("bar")
|
|
|
|
assert_equal %w[foo bar], @resource.mirrors
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_checksum_setters
|
|
|
|
assert_nil @resource.checksum
|
2013-12-09 15:57:50 -06:00
|
|
|
@resource.sha256(TEST_SHA256)
|
|
|
|
assert_equal Checksum.new(:sha256, TEST_SHA256), @resource.checksum
|
2013-09-17 21:25:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_download_strategy
|
|
|
|
strategy = Object.new
|
|
|
|
DownloadStrategyDetector.
|
|
|
|
expects(:detect).with("foo", nil).returns(strategy)
|
|
|
|
@resource.url("foo")
|
|
|
|
assert_equal strategy, @resource.download_strategy
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_verify_download_integrity_missing
|
2015-08-03 13:09:07 +01:00
|
|
|
fn = Pathname.new("test")
|
2013-09-17 21:25:38 -05:00
|
|
|
|
2013-10-30 00:43:10 -05:00
|
|
|
fn.stubs(:file? => true)
|
|
|
|
fn.expects(:verify_checksum).raises(ChecksumMissingError)
|
2015-02-24 23:25:57 +00:00
|
|
|
fn.expects(:sha256)
|
2013-09-17 21:25:38 -05:00
|
|
|
|
|
|
|
shutup { @resource.verify_download_integrity(fn) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_verify_download_integrity_mismatch
|
2013-10-30 00:43:10 -05:00
|
|
|
fn = stub(:file? => true)
|
2016-03-20 14:12:15 +08:00
|
|
|
checksum = @resource.sha256(TEST_SHA256)
|
2013-09-17 21:25:38 -05:00
|
|
|
|
|
|
|
fn.expects(:verify_checksum).with(checksum).
|
2014-02-18 13:27:35 -05:00
|
|
|
raises(ChecksumMismatchError.new(fn, checksum, Object.new))
|
2013-09-17 21:25:38 -05:00
|
|
|
|
|
|
|
shutup do
|
|
|
|
assert_raises(ChecksumMismatchError) do
|
|
|
|
@resource.verify_download_integrity(fn)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|