aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cask
diff options
context:
space:
mode:
authorL. E. Segovia2017-10-30 20:47:40 -0300
committerL. E. Segovia2017-10-30 20:47:40 -0300
commit917c138eeb4af0cee212f94edc425512dfbade99 (patch)
tree13b852c4ba609d164628572d73e76b0ab69e4d10 /Library/Homebrew/test/cask
parent9b6b0bfed7f0ebf461d21dba9ba12ad340e20508 (diff)
downloadbrew-917c138eeb4af0cee212f94edc425512dfbade99.tar.bz2
Add tests for uninstall_* and zap stanzas
Diffstat (limited to 'Library/Homebrew/test/cask')
-rw-r--r--Library/Homebrew/test/cask/audit_spec.rb114
1 files changed, 114 insertions, 0 deletions
diff --git a/Library/Homebrew/test/cask/audit_spec.rb b/Library/Homebrew/test/cask/audit_spec.rb
index 7e140acb2..ec051c138 100644
--- a/Library/Homebrew/test/cask/audit_spec.rb
+++ b/Library/Homebrew/test/cask/audit_spec.rb
@@ -91,6 +91,120 @@ describe Hbc::Audit, :cask do
end
end
+ describe "preflight stanza checks" do
+ let(:error_msg) { "only a single preflight stanza is allowed" }
+
+ context "when the cask has no preflight stanza" do
+ let(:cask_token) { "with-zap-rmdir" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has only one preflight stanza" do
+ let(:cask_token) { "with-preflight" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has multiple preflight stanzas" do
+ let(:cask_token) { "with-preflight-multi" }
+ it { is_expected.to warn_with(error_msg) }
+ end
+ end
+
+ describe "uninstall_postflight stanza checks" do
+ let(:error_msg) { "only a single postflight stanza is allowed" }
+
+ context "when the cask has no postflight stanza" do
+ let(:cask_token) { "with-zap-rmdir" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has only one postflight stanza" do
+ let(:cask_token) { "with-postflight" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has multiple postflight stanzas" do
+ let(:cask_token) { "with-postflight-multi" }
+ it { is_expected.to warn_with(error_msg) }
+ end
+ end
+
+ describe "uninstall stanza checks" do
+ let(:error_msg) { "only a single uninstall stanza is allowed" }
+
+ context "when the cask has no uninstall stanza" do
+ let(:cask_token) { "with-zap-rmdir" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has only one uninstall stanza" do
+ let(:cask_token) { "with-uninstall-rmdir" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has multiple uninstall stanzas" do
+ let(:cask_token) { "with-uninstall-multi" }
+ it { is_expected.to warn_with(error_msg) }
+ end
+ end
+
+ describe "uninstall_preflight stanza checks" do
+ let(:error_msg) { "only a single uninstall_preflight stanza is allowed" }
+
+ context "when the cask has no uninstall_preflight stanza" do
+ let(:cask_token) { "with-zap-rmdir" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has only one uninstall_preflight stanza" do
+ let(:cask_token) { "with-uninstall-preflight" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has multiple uninstall_preflight stanzas" do
+ let(:cask_token) { "with-uninstall-preflight-multi" }
+ it { is_expected.to warn_with(error_msg) }
+ end
+ end
+
+ describe "uninstall_postflight stanza checks" do
+ let(:error_msg) { "only a single uninstall_postflight stanza is allowed" }
+
+ context "when the cask has no uninstall_postflight stanza" do
+ let(:cask_token) { "with-zap-rmdir" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has only one uninstall_postflight stanza" do
+ let(:cask_token) { "with-uninstall-postflight" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has multiple uninstall_postflight stanzas" do
+ let(:cask_token) { "with-uninstall-postflight-multi" }
+ it { is_expected.to warn_with(error_msg) }
+ end
+ end
+
+ describe "zap stanza checks" do
+ let(:error_msg) { "only a single zap stanza is allowed" }
+
+ context "when the cask has no zap stanza" do
+ let(:cask_token) { "with-uninstall-rmdir" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has only one zap stanza" do
+ let(:cask_token) { "with-zap-rmdir" }
+ it { should_not warn_with(error_msg) }
+ end
+
+ context "when the cask has multiple zap stanzas" do
+ let(:cask_token) { "with-zap-multi" }
+ it { is_expected.to warn_with(error_msg) }
+ end
+ end
+
describe "version checks" do
let(:error_msg) { "you should use version :latest instead of version 'latest'" }