fix brew tests
Fix the `brew tests` problem caused by core/formula separation.
This commit is contained in:
parent
2bb30fc5f0
commit
deea4c82a4
4
Library/Homebrew/test/fixtures/receipt.json
vendored
4
Library/Homebrew/test/fixtures/receipt.json
vendored
@ -14,8 +14,8 @@
|
|||||||
"stdlib": "libcxx",
|
"stdlib": "libcxx",
|
||||||
"compiler": "clang",
|
"compiler": "clang",
|
||||||
"source": {
|
"source": {
|
||||||
"path": "/usr/local/Library/Formula/foo.rb",
|
"path": "/usr/local/Library/Taps/hombrew/homebrew-core/Formula/foo.rb",
|
||||||
"tap": "Homebrew/homebrew",
|
"tap": "homebrew/core",
|
||||||
"spec": "stable"
|
"spec": "stable"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,13 +7,13 @@ update_git_diff_output_without_formulae_changes: |
|
|||||||
M bin/brew
|
M bin/brew
|
||||||
update_git_diff_output_with_formulae_changes: |
|
update_git_diff_output_with_formulae_changes: |
|
||||||
M Library/Contributions/brew_bash_completion.sh
|
M Library/Contributions/brew_bash_completion.sh
|
||||||
A Library/Formula/antiword.rb
|
A Formula/antiword.rb
|
||||||
A Library/Formula/bash-completion.rb
|
A Formula/bash-completion.rb
|
||||||
A Library/Formula/ddrescue.rb
|
A Formula/ddrescue.rb
|
||||||
A Library/Formula/dict.rb
|
A Formula/dict.rb
|
||||||
A Library/Formula/lua.rb
|
A Formula/lua.rb
|
||||||
M Library/Formula/xar.rb
|
M Formula/xar.rb
|
||||||
M Library/Formula/yajl.rb
|
M Formula/yajl.rb
|
||||||
M Library/Homebrew/ARGV+yeast.rb
|
M Library/Homebrew/ARGV+yeast.rb
|
||||||
M Library/Homebrew/beer_events.rb
|
M Library/Homebrew/beer_events.rb
|
||||||
M Library/Homebrew/hardware.rb
|
M Library/Homebrew/hardware.rb
|
||||||
@ -25,23 +25,23 @@ update_git_diff_output_with_formulae_changes: |
|
|||||||
M README
|
M README
|
||||||
M bin/brew
|
M bin/brew
|
||||||
update_git_diff_output_with_removed_formulae: |
|
update_git_diff_output_with_removed_formulae: |
|
||||||
A Library/Formula/flac123.rb
|
A Formula/flac123.rb
|
||||||
M Library/Formula/gdal.rb
|
M Formula/gdal.rb
|
||||||
M Library/Formula/grass.rb
|
M Formula/grass.rb
|
||||||
M Library/Formula/json_spirit.rb
|
M Formula/json_spirit.rb
|
||||||
A Library/Formula/libbson.rb
|
A Formula/libbson.rb
|
||||||
D Library/Formula/libgsasl.rb
|
D Formula/libgsasl.rb
|
||||||
update_git_diff_output_with_changed_filetype: |
|
update_git_diff_output_with_changed_filetype: |
|
||||||
A Library/ENV/4.3/ant
|
A Library/ENV/4.3/ant
|
||||||
T Library/ENV/4.3/bsdmake
|
T Library/ENV/4.3/bsdmake
|
||||||
M Library/ENV/4.3/make
|
M Library/ENV/4.3/make
|
||||||
M Library/Formula/elixir.rb
|
M Formula/elixir.rb
|
||||||
A Library/Formula/libbson.rb
|
A Formula/libbson.rb
|
||||||
D Library/Formula/libgsasl.rb
|
D Formula/libgsasl.rb
|
||||||
M Library/Homebrew/cmd/update.rb
|
M Library/Homebrew/cmd/update.rb
|
||||||
M SUPPORTERS.md
|
M SUPPORTERS.md
|
||||||
update_git_diff_output_with_formula_rename: |
|
update_git_diff_output_with_formula_rename: |
|
||||||
R100 Library/Formula/cv.rb Library/Formula/progress.rb
|
R100 Formula/cv.rb Formula/progress.rb
|
||||||
update_git_diff_output_with_restructured_tap: |
|
update_git_diff_output_with_restructured_tap: |
|
||||||
R100 git.rb Formula/git.rb
|
R100 git.rb Formula/git.rb
|
||||||
R100 lua.rb Formula/lua.rb
|
R100 lua.rb Formula/lua.rb
|
||||||
|
@ -202,7 +202,7 @@ class FormulaTests < Homebrew::TestCase
|
|||||||
|
|
||||||
def test_path
|
def test_path
|
||||||
name = "foo-bar"
|
name = "foo-bar"
|
||||||
assert_equal Pathname.new("#{HOMEBREW_LIBRARY}/Formula/#{name}.rb"), Formulary.core_path(name)
|
assert_equal Pathname.new("#{HOMEBREW_LIBRARY}/Taps/homebrew/homebrew-core/Formula/#{name}.rb"), Formulary.core_path(name)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_class_specs_are_always_initialized
|
def test_class_specs_are_always_initialized
|
||||||
|
@ -112,7 +112,7 @@ class FormularyTapFactoryTest < Homebrew::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
def teardown
|
def teardown
|
||||||
@tap.path.parent.parent.rmtree
|
@tap.path.rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_factory_tap_formula
|
def test_factory_tap_formula
|
||||||
@ -138,6 +138,8 @@ class FormularyTapFactoryTest < Homebrew::TestCase
|
|||||||
another_tap = Tap.new "homebrew", "bar"
|
another_tap = Tap.new "homebrew", "bar"
|
||||||
(another_tap.path/"#{@name}.rb").write @code
|
(another_tap.path/"#{@name}.rb").write @code
|
||||||
assert_raises(TapFormulaAmbiguityError) { Formulary.factory(@name) }
|
assert_raises(TapFormulaAmbiguityError) { Formulary.factory(@name) }
|
||||||
|
ensure
|
||||||
|
another_tap.path.rmtree
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -158,7 +160,7 @@ class FormularyTapPriorityTest < Homebrew::TestCase
|
|||||||
|
|
||||||
def teardown
|
def teardown
|
||||||
@core_path.unlink
|
@core_path.unlink
|
||||||
@tap.path.parent.parent.rmtree
|
@tap.path.rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_find_with_priority_core_formula
|
def test_find_with_priority_core_formula
|
||||||
|
@ -217,7 +217,7 @@ class IntegrationCommandTests < Homebrew::TestCase
|
|||||||
|
|
||||||
assert_match "homebrew/foo", cmd("tap")
|
assert_match "homebrew/foo", cmd("tap")
|
||||||
assert_match "homebrew/versions", cmd("tap", "--list-official")
|
assert_match "homebrew/versions", cmd("tap", "--list-official")
|
||||||
assert_match "1 tap", cmd("tap-info")
|
assert_match "2 taps", cmd("tap-info")
|
||||||
assert_match "https://github.com/Homebrew/homebrew-foo", cmd("tap-info", "homebrew/foo")
|
assert_match "https://github.com/Homebrew/homebrew-foo", cmd("tap-info", "homebrew/foo")
|
||||||
assert_match "https://github.com/Homebrew/homebrew-foo", cmd("tap-info", "--json=v1", "--installed")
|
assert_match "https://github.com/Homebrew/homebrew-foo", cmd("tap-info", "--json=v1", "--installed")
|
||||||
assert_match "Pinned homebrew/foo", cmd("tap-pin", "homebrew/foo")
|
assert_match "Pinned homebrew/foo", cmd("tap-pin", "homebrew/foo")
|
||||||
@ -228,7 +228,7 @@ class IntegrationCommandTests < Homebrew::TestCase
|
|||||||
assert_equal "", cmd("tap", "homebrew/bar", path/".git", "-q", "--full")
|
assert_equal "", cmd("tap", "homebrew/bar", path/".git", "-q", "--full")
|
||||||
assert_match "Untapped", cmd("untap", "homebrew/bar")
|
assert_match "Untapped", cmd("untap", "homebrew/bar")
|
||||||
ensure
|
ensure
|
||||||
Tap::TAP_DIRECTORY.rmtree
|
path.rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_missing
|
def test_missing
|
||||||
@ -339,13 +339,12 @@ class IntegrationCommandTests < Homebrew::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_tap_readme
|
def test_tap_readme
|
||||||
(HOMEBREW_LIBRARY/"Taps").mkpath
|
|
||||||
assert_match "brew install homebrew/foo/<formula>",
|
assert_match "brew install homebrew/foo/<formula>",
|
||||||
cmd("tap-readme", "foo", "--verbose")
|
cmd("tap-readme", "foo", "--verbose")
|
||||||
readme = HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-foo/README.md"
|
readme = HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-foo/README.md"
|
||||||
assert readme.exist?, "The README should be created"
|
assert readme.exist?, "The README should be created"
|
||||||
ensure
|
ensure
|
||||||
(HOMEBREW_LIBRARY/"Taps").rmtree
|
(HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-foo").rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_unpack
|
def test_unpack
|
||||||
|
@ -17,7 +17,7 @@ class TabTests < Homebrew::TestCase
|
|||||||
"compiler" => "clang",
|
"compiler" => "clang",
|
||||||
"stdlib" => "libcxx",
|
"stdlib" => "libcxx",
|
||||||
"source" => {
|
"source" => {
|
||||||
"tap" => "Homebrew/homebrew",
|
"tap" => "homebrew/core",
|
||||||
"path" => nil,
|
"path" => nil,
|
||||||
"spec" => "stable"
|
"spec" => "stable"
|
||||||
})
|
})
|
||||||
@ -60,7 +60,7 @@ class TabTests < Homebrew::TestCase
|
|||||||
|
|
||||||
def test_other_attributes
|
def test_other_attributes
|
||||||
assert_equal TEST_SHA1, @tab.HEAD
|
assert_equal TEST_SHA1, @tab.HEAD
|
||||||
assert_equal "Homebrew/homebrew", @tab.tap.name
|
assert_equal "homebrew/core", @tab.tap.name
|
||||||
assert_nil @tab.time
|
assert_nil @tab.time
|
||||||
refute_predicate @tab, :built_as_bottle
|
refute_predicate @tab, :built_as_bottle
|
||||||
assert_predicate @tab, :poured_from_bottle
|
assert_predicate @tab, :poured_from_bottle
|
||||||
@ -74,7 +74,7 @@ class TabTests < Homebrew::TestCase
|
|||||||
assert_equal @unused.sort, tab.unused_options.sort
|
assert_equal @unused.sort, tab.unused_options.sort
|
||||||
refute_predicate tab, :built_as_bottle
|
refute_predicate tab, :built_as_bottle
|
||||||
assert_predicate tab, :poured_from_bottle
|
assert_predicate tab, :poured_from_bottle
|
||||||
assert_equal "Homebrew/homebrew", tab.tap.name
|
assert_equal "homebrew/core", tab.tap.name
|
||||||
assert_equal :stable, tab.spec
|
assert_equal :stable, tab.spec
|
||||||
refute_nil tab.time
|
refute_nil tab.time
|
||||||
assert_equal TEST_SHA1, tab.HEAD
|
assert_equal TEST_SHA1, tab.HEAD
|
||||||
@ -90,7 +90,7 @@ class TabTests < Homebrew::TestCase
|
|||||||
assert_equal @unused.sort, tab.unused_options.sort
|
assert_equal @unused.sort, tab.unused_options.sort
|
||||||
refute_predicate tab, :built_as_bottle
|
refute_predicate tab, :built_as_bottle
|
||||||
assert_predicate tab, :poured_from_bottle
|
assert_predicate tab, :poured_from_bottle
|
||||||
assert_equal "Homebrew/homebrew", tab.tap.name
|
assert_equal "homebrew/core", tab.tap.name
|
||||||
assert_equal :stable, tab.spec
|
assert_equal :stable, tab.spec
|
||||||
refute_nil tab.time
|
refute_nil tab.time
|
||||||
assert_equal TEST_SHA1, tab.HEAD
|
assert_equal TEST_SHA1, tab.HEAD
|
||||||
|
@ -55,7 +55,7 @@ class TapTest < Homebrew::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
def teardown
|
def teardown
|
||||||
Tap::TAP_DIRECTORY.rmtree
|
@path.rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_fetch
|
def test_fetch
|
||||||
@ -68,7 +68,7 @@ class TapTest < Homebrew::TestCase
|
|||||||
end
|
end
|
||||||
|
|
||||||
def test_names
|
def test_names
|
||||||
assert_equal ["homebrew/foo"], Tap.names
|
assert_equal ["homebrew/core", "homebrew/foo"], Tap.names
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_attributes
|
def test_attributes
|
||||||
@ -95,6 +95,8 @@ class TapTest < Homebrew::TestCase
|
|||||||
|
|
||||||
(Tap::TAP_DIRECTORY/"someone/homebrew-no-git").mkpath
|
(Tap::TAP_DIRECTORY/"someone/homebrew-no-git").mkpath
|
||||||
assert_nil Tap.new("someone", "no-git").issues_url
|
assert_nil Tap.new("someone", "no-git").issues_url
|
||||||
|
ensure
|
||||||
|
path.parent.rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_files
|
def test_files
|
||||||
@ -132,6 +134,8 @@ class TapTest < Homebrew::TestCase
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
refute_predicate version_tap, :private?
|
refute_predicate version_tap, :private?
|
||||||
|
ensure
|
||||||
|
version_tap.path.rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_remote_not_git_repo
|
def test_remote_not_git_repo
|
||||||
@ -213,8 +217,8 @@ class CoreTapTest < Homebrew::TestCase
|
|||||||
|
|
||||||
def test_attributes
|
def test_attributes
|
||||||
assert_equal "Homebrew", @repo.user
|
assert_equal "Homebrew", @repo.user
|
||||||
assert_equal "homebrew", @repo.repo
|
assert_equal "core", @repo.repo
|
||||||
assert_equal "Homebrew/homebrew", @repo.name
|
assert_equal "homebrew/core", @repo.name
|
||||||
assert_equal [], @repo.command_files
|
assert_equal [], @repo.command_files
|
||||||
assert_predicate @repo, :installed?
|
assert_predicate @repo, :installed?
|
||||||
refute_predicate @repo, :pinned?
|
refute_predicate @repo, :pinned?
|
||||||
|
@ -29,10 +29,6 @@ class ReportTests < Homebrew::TestCase
|
|||||||
@hub = ReporterHub.new
|
@hub = ReporterHub.new
|
||||||
end
|
end
|
||||||
|
|
||||||
def teardown
|
|
||||||
FileUtils.rm_rf HOMEBREW_LIBRARY.join("Taps")
|
|
||||||
end
|
|
||||||
|
|
||||||
def perform_update(fixture_name = "")
|
def perform_update(fixture_name = "")
|
||||||
Formulary.stubs(:factory).returns(stub(:pkg_version => "1.0"))
|
Formulary.stubs(:factory).returns(stub(:pkg_version => "1.0"))
|
||||||
FormulaVersions.stubs(:new).returns(stub(:formula_at_revision => "2.0"))
|
FormulaVersions.stubs(:new).returns(stub(:formula_at_revision => "2.0"))
|
||||||
@ -91,6 +87,8 @@ class ReportTests < Homebrew::TestCase
|
|||||||
perform_update("update_git_diff_output_with_restructured_tap")
|
perform_update("update_git_diff_output_with_restructured_tap")
|
||||||
assert_equal %w[foo/bar/git foo/bar/lua], @hub.select_formula(:A)
|
assert_equal %w[foo/bar/git foo/bar/lua], @hub.select_formula(:A)
|
||||||
assert_empty @hub.select_formula(:D)
|
assert_empty @hub.select_formula(:D)
|
||||||
|
ensure
|
||||||
|
tap.path.parent.rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_update_homebrew_simulate_homebrew_php_restructuring
|
def test_update_homebrew_simulate_homebrew_php_restructuring
|
||||||
@ -101,6 +99,8 @@ class ReportTests < Homebrew::TestCase
|
|||||||
perform_update("update_git_diff_simulate_homebrew_php_restructuring")
|
perform_update("update_git_diff_simulate_homebrew_php_restructuring")
|
||||||
assert_empty @hub.select_formula(:A)
|
assert_empty @hub.select_formula(:A)
|
||||||
assert_equal %w[foo/bar/git foo/bar/lua], @hub.select_formula(:D)
|
assert_equal %w[foo/bar/git foo/bar/lua], @hub.select_formula(:D)
|
||||||
|
ensure
|
||||||
|
tap.path.parent.rmtree
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_update_homebrew_with_tap_formulae_changes
|
def test_update_homebrew_with_tap_formulae_changes
|
||||||
@ -112,5 +112,7 @@ class ReportTests < Homebrew::TestCase
|
|||||||
assert_equal %w[foo/bar/lua], @hub.select_formula(:A)
|
assert_equal %w[foo/bar/lua], @hub.select_formula(:A)
|
||||||
assert_equal %w[foo/bar/git], @hub.select_formula(:M)
|
assert_equal %w[foo/bar/git], @hub.select_formula(:M)
|
||||||
assert_empty @hub.select_formula(:D)
|
assert_empty @hub.select_formula(:D)
|
||||||
|
ensure
|
||||||
|
tap.path.parent.rmtree
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -6,7 +6,7 @@ require "global"
|
|||||||
require "formulary"
|
require "formulary"
|
||||||
|
|
||||||
# Test environment setup
|
# Test environment setup
|
||||||
HOMEBREW_LIBRARY.join("Formula").mkpath
|
(HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-core/Formula").mkpath
|
||||||
%w[cache formula_cache cellar logs].each { |d| HOMEBREW_PREFIX.parent.join(d).mkpath }
|
%w[cache formula_cache cellar logs].each { |d| HOMEBREW_PREFIX.parent.join(d).mkpath }
|
||||||
|
|
||||||
# Test fixtures and files can be found relative to this path
|
# Test fixtures and files can be found relative to this path
|
||||||
|
Loading…
x
Reference in New Issue
Block a user