2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-25 11:12:05 +01:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
describe "patching" do
|
2023-01-26 09:42:57 -08:00
|
|
|
let(:formula_subclass) {
|
2017-02-25 11:12:05 +01:00
|
|
|
Class.new(Formula) {
|
2023-01-26 09:42:57 -08:00
|
|
|
# These are defined within an anonymous class to avoid polluting the global namespace.
|
|
|
|
# rubocop:disable RSpec/LeakyConstantDeclaration
|
|
|
|
TESTBALL_URL = "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz"
|
|
|
|
TESTBALL_PATCHES_URL = "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1-patches.tgz"
|
|
|
|
PATCH_URL_A = "file://#{TEST_FIXTURE_DIR}/patches/noop-a.diff"
|
|
|
|
PATCH_URL_B = "file://#{TEST_FIXTURE_DIR}/patches/noop-b.diff"
|
|
|
|
PATCH_A_CONTENTS = File.read("#{TEST_FIXTURE_DIR}/patches/noop-a.diff").freeze
|
|
|
|
PATCH_B_CONTENTS = File.read("#{TEST_FIXTURE_DIR}/patches/noop-b.diff").freeze
|
|
|
|
APPLY_A = "noop-a.diff"
|
|
|
|
APPLY_B = "noop-b.diff"
|
|
|
|
APPLY_C = "noop-c.diff"
|
|
|
|
# rubocop:enable RSpec/LeakyConstantDeclaration
|
|
|
|
|
2017-02-25 11:12:05 +01:00
|
|
|
url TESTBALL_URL
|
|
|
|
sha256 TESTBALL_SHA256
|
2023-01-26 09:42:57 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def formula(name = "formula_name", path: Formulary.core_path(name), spec: :stable, alias_path: nil, &block)
|
|
|
|
formula_subclass.class_eval(&block)
|
|
|
|
formula_subclass.new(name, path, spec, alias_path: alias_path)
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
matcher :be_patched do
|
|
|
|
match do |formula|
|
2017-07-29 19:55:05 +02:00
|
|
|
formula.brew do
|
|
|
|
formula.patch
|
|
|
|
s = File.read("libexec/NOOP")
|
|
|
|
expect(s).not_to include("NOOP"), "libexec/NOOP was not patched as expected"
|
|
|
|
expect(s).to include("ABCD"), "libexec/NOOP was not patched as expected"
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-21 08:29:38 -08:00
|
|
|
matcher :have_its_resource_patched do
|
|
|
|
match do |formula|
|
|
|
|
formula.brew do
|
|
|
|
formula.resources.first.stage Pathname.pwd/"resource_dir"
|
|
|
|
s = File.read("resource_dir/libexec/NOOP")
|
|
|
|
expect(s).not_to include("NOOP"), "libexec/NOOP was not patched as expected"
|
|
|
|
expect(s).to include("ABCD"), "libexec/NOOP was not patched as expected"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-25 11:12:05 +01:00
|
|
|
matcher :be_sequentially_patched do
|
|
|
|
match do |formula|
|
2017-07-29 19:55:05 +02:00
|
|
|
formula.brew do
|
|
|
|
formula.patch
|
|
|
|
s = File.read("libexec/NOOP")
|
|
|
|
expect(s).not_to include("NOOP"), "libexec/NOOP was not patched as expected"
|
|
|
|
expect(s).not_to include("ABCD"), "libexec/NOOP was not patched as expected"
|
|
|
|
expect(s).to include("1234"), "libexec/NOOP was not patched as expected"
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
matcher :miss_apply do
|
|
|
|
match do |formula|
|
|
|
|
expect {
|
2017-07-29 19:55:05 +02:00
|
|
|
formula.brew do
|
|
|
|
formula.patch
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
}.to raise_error(MissingApplyError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "single_patch_dsl" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
patch do
|
|
|
|
url PATCH_URL_A
|
|
|
|
sha256 PATCH_A_SHA256
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to be_patched
|
|
|
|
end
|
|
|
|
|
2018-01-21 08:29:38 -08:00
|
|
|
specify "single_patch_dsl_for_resource" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
resource "some_resource" do
|
|
|
|
url TESTBALL_URL
|
|
|
|
sha256 TESTBALL_SHA256
|
|
|
|
|
|
|
|
patch do
|
|
|
|
url PATCH_URL_A
|
|
|
|
sha256 PATCH_A_SHA256
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to have_its_resource_patched
|
|
|
|
end
|
|
|
|
|
2017-02-25 11:12:05 +01:00
|
|
|
specify "single_patch_dsl_with_apply" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
patch do
|
|
|
|
url TESTBALL_PATCHES_URL
|
|
|
|
sha256 TESTBALL_PATCHES_SHA256
|
|
|
|
apply APPLY_A
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to be_patched
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "single_patch_dsl_with_sequential_apply" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
patch do
|
|
|
|
url TESTBALL_PATCHES_URL
|
|
|
|
sha256 TESTBALL_PATCHES_SHA256
|
|
|
|
apply APPLY_A, APPLY_C
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to be_sequentially_patched
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "single_patch_dsl_with_strip" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
patch :p1 do
|
|
|
|
url PATCH_URL_A
|
|
|
|
sha256 PATCH_A_SHA256
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to be_patched
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "single_patch_dsl_with_strip_with_apply" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
patch :p1 do
|
|
|
|
url TESTBALL_PATCHES_URL
|
|
|
|
sha256 TESTBALL_PATCHES_SHA256
|
|
|
|
apply APPLY_A
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to be_patched
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "single_patch_dsl_with_incorrect_strip" do
|
|
|
|
expect {
|
2017-07-29 19:55:05 +02:00
|
|
|
f = formula do
|
|
|
|
patch :p0 do
|
|
|
|
url PATCH_URL_A
|
|
|
|
sha256 PATCH_A_SHA256
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
end
|
2017-07-29 19:55:05 +02:00
|
|
|
|
|
|
|
f.brew { |formula, _staging| formula.patch }
|
2020-07-26 11:53:05 +02:00
|
|
|
}.to raise_error(BuildError)
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
specify "single_patch_dsl_with_incorrect_strip_with_apply" do
|
|
|
|
expect {
|
2017-07-29 19:55:05 +02:00
|
|
|
f = formula do
|
|
|
|
patch :p0 do
|
|
|
|
url TESTBALL_PATCHES_URL
|
|
|
|
sha256 TESTBALL_PATCHES_SHA256
|
|
|
|
apply APPLY_A
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
end
|
2017-07-29 19:55:05 +02:00
|
|
|
|
|
|
|
f.brew { |formula, _staging| formula.patch }
|
2020-07-26 11:53:05 +02:00
|
|
|
}.to raise_error(BuildError)
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
specify "patch_p0_dsl" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
patch :p0 do
|
|
|
|
url PATCH_URL_B
|
|
|
|
sha256 PATCH_B_SHA256
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to be_patched
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "patch_p0_dsl_with_apply" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
patch :p0 do
|
|
|
|
url TESTBALL_PATCHES_URL
|
|
|
|
sha256 TESTBALL_PATCHES_SHA256
|
|
|
|
apply APPLY_B
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to be_patched
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "patch_string" do
|
|
|
|
expect(formula { patch PATCH_A_CONTENTS }).to be_patched
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "patch_string_with_strip" do
|
|
|
|
expect(formula { patch :p0, PATCH_B_CONTENTS }).to be_patched
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "single_patch_dsl_missing_apply_fail" do
|
|
|
|
expect(
|
|
|
|
formula do
|
|
|
|
patch do
|
|
|
|
url TESTBALL_PATCHES_URL
|
|
|
|
sha256 TESTBALL_PATCHES_SHA256
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
).to miss_apply
|
|
|
|
end
|
|
|
|
|
|
|
|
specify "single_patch_dsl_with_apply_enoent_fail" do
|
|
|
|
expect {
|
2017-07-29 19:55:05 +02:00
|
|
|
f = formula do
|
|
|
|
patch do
|
|
|
|
url TESTBALL_PATCHES_URL
|
|
|
|
sha256 TESTBALL_PATCHES_SHA256
|
|
|
|
apply "patches/#{APPLY_A}"
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
end
|
2017-07-29 19:55:05 +02:00
|
|
|
|
|
|
|
f.brew { |formula, _staging| formula.patch }
|
2020-07-26 11:53:05 +02:00
|
|
|
}.to raise_error(BuildError)
|
2017-02-25 11:12:05 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/libexec/NOOP b/libexec/NOOP
|
|
|
|
index bfdda4c..e08d8f4 100755
|
|
|
|
--- a/libexec/NOOP
|
|
|
|
+++ b/libexec/NOOP
|
|
|
|
@@ -1,2 +1,2 @@
|
|
|
|
#!/bin/bash
|
|
|
|
-echo NOOP
|
|
|
|
\ No newline at end of file
|
|
|
|
+echo ABCD
|
|
|
|
\ No newline at end of file
|