summaryrefslogtreecommitdiff
path: root/tests/spec/validator_spec.rb
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-06 20:18:18 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-06 20:18:18 -0600
commitf7c4db70e541ba11017d8261f0901a13badb7c97 (patch)
treed9f91236542d399d3f89191703cff18e7d048841 /tests/spec/validator_spec.rb
parent903ea15e00039164413e6382ac5eefeeb25876ad (diff)
downloadhorizon-f7c4db70e541ba11017d8261f0901a13badb7c97.tar.gz
horizon-f7c4db70e541ba11017d8261f0901a13badb7c97.tar.bz2
horizon-f7c4db70e541ba11017d8261f0901a13badb7c97.tar.xz
horizon-f7c4db70e541ba11017d8261f0901a13badb7c97.zip
tests: Add more corner case testing
Diffstat (limited to 'tests/spec/validator_spec.rb')
-rw-r--r--tests/spec/validator_spec.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/spec/validator_spec.rb b/tests/spec/validator_spec.rb
index 45bb949..eea3f2a 100644
--- a/tests/spec/validator_spec.rb
+++ b/tests/spec/validator_spec.rb
@@ -568,6 +568,11 @@ RSpec.describe 'HorizonScript validation', :type => :aruba do
run_validate
expect(last_command_started).to have_output(/error: .*netssid.*security/)
end
+ it "fails with missing security type" do
+ use_fixture '0220-netssid-missing-type.installfile'
+ run_validate
+ expect(last_command_started).to have_output(/error: .*netssid.*security type expected/)
+ end
end
context "for 'repository' key" do
it "succeeds with basic repositories" do
@@ -581,6 +586,11 @@ RSpec.describe 'HorizonScript validation', :type => :aruba do
run_validate
expect(last_command_started).to have_output(/error: .*repository/)
end
+ it "fails with too many repositories specified" do
+ use_fixture '0218-repository-max.installfile'
+ run_validate
+ expect(last_command_started).to have_output(/error: .*repository.*too many/)
+ end
end
context "for 'signingkey' key" do
it "succeeds with secure key URL" do
@@ -600,6 +610,11 @@ RSpec.describe 'HorizonScript validation', :type => :aruba do
run_validate
expect(last_command_started).to have_output(/error: .*signingkey/)
end
+ it "fails with too many signing keys specified" do
+ use_fixture '0219-signingkey-max.installfile'
+ run_validate
+ expect(last_command_started).to have_output(/error: .*signingkey.*too many/)
+ end
end
context "for 'pkginstall' key" do
it "warns when a package is listed twice in the same line" do