summaryrefslogtreecommitdiff
path: root/tests/spec/validator.rb
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-08 23:20:58 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-08 23:20:58 -0500
commitdf3323015005e10f17688bb2b6127884cb2020e4 (patch)
tree7edf1223ebba5daa08c9c3c166d4461c672511d2 /tests/spec/validator.rb
parentee19bcceefbd1c4c604d1afe832e0b6f669d5eae (diff)
downloadhorizon-df3323015005e10f17688bb2b6127884cb2020e4.tar.gz
horizon-df3323015005e10f17688bb2b6127884cb2020e4.tar.bz2
horizon-df3323015005e10f17688bb2b6127884cb2020e4.tar.xz
horizon-df3323015005e10f17688bb2b6127884cb2020e4.zip
tests: Add some more tests, and note reqs for each test
Diffstat (limited to 'tests/spec/validator.rb')
-rw-r--r--tests/spec/validator.rb55
1 files changed, 51 insertions, 4 deletions
diff --git a/tests/spec/validator.rb b/tests/spec/validator.rb
index 1c3657e..4ad5544 100644
--- a/tests/spec/validator.rb
+++ b/tests/spec/validator.rb
@@ -24,6 +24,9 @@ RSpec.describe 'HorizonScript Validation Utility', :type => :aruba do
end
end
context "on invalid keys" do
+ # No requirement - but was noted in the original draft vision doc as
+ # desireable because it allows future expansion while retaining some
+ # compatibility.
it "warns on invalid keys by default" do
use_fixture '0016-invalid-key.installfile'
run_validate
@@ -36,16 +39,19 @@ RSpec.describe 'HorizonScript Validation Utility', :type => :aruba do
end
end
context "parsing" do
+ # obvious...
it "successfully reads a basic installfile" do
use_fixture '0001-basic.installfile'
run_validate
expect(last_command_started).to have_output(SUCCESS_OUTPUT)
end
+ # HorizonScript Specification, ch 3.
it "handles comments" do
use_fixture '0002-basic-commented.installfile'
run_validate
expect(last_command_started).to have_output(SUCCESS_OUTPUT)
end
+ # HorizonScript Specification, ch 3.
it "handles blank lines and indentation" do
use_fixture '0003-basic-whitespace.installfile'
run_validate
@@ -56,32 +62,43 @@ RSpec.describe 'HorizonScript Validation Utility', :type => :aruba do
run_validate ' --keep-going'
expect(last_command_started).to have_output(/2 error\(s\)/)
end
+ # XXX: no requirement.
it "fails on lines over maximum line length" do
use_fixture '0017-line-too-long.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*length/)
end
context "required keys" do
+ # Runner.Validate.Required.
+ # Runner.Validate.network.
it "fails without a 'network' key" do
use_fixture '0006-no-network.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*network.*/)
end
+ # Runner.Validate.Required.
+ # Runner.Validate.hostname.
it "fails without a 'hostname' key" do
use_fixture '0007-no-hostname.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*hostname.*/)
end
+ # Runner.Validate.Required.
+ # Runner.Validate.pkginstall.
it "fails without a 'pkginstall' key" do
use_fixture '0008-no-pkginstall.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*pkginstall.*/)
end
+ # Runner.Validate.Required.
+ # Runner.Validate.rootpw.
it "fails without a 'rootpw' key" do
use_fixture '0009-no-rootpw.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*rootpw.*/)
end
+ # Runner.Validate.Required.
+ # Runner.Validate.mount.
it "fails without a 'mount' key" do
use_fixture '0010-no-mount.installfile'
run_validate
@@ -89,21 +106,47 @@ RSpec.describe 'HorizonScript Validation Utility', :type => :aruba do
end
end
context "values" do
+ # Runner.Validate.network.
it "fails with an invalid 'network' value" do
use_fixture '0011-invalid-network.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*network.*/)
end
- it "fails with an invalid 'hostname' value" do
- use_fixture '0012-invalid-hostname.installfile'
- run_validate
- expect(last_command_started).to have_output(/error: .*hostname.*/)
+ # Runner.Validate.hostname.
+ context "fails with an invalid 'hostname' value" do
+ # Runner.Validate.hostname.Chars.
+ it "with invalid characters" do
+ use_fixture '0012-invalid-hostname.installfile'
+ run_validate
+ expect(last_command_started).to have_output(/error: .*hostname.*/)
+ end
+ # Runner.Validate.hostname.Begin.
+ it "with non-alphabetical first character" do
+ use_fixture '0024-numeric-hostname.installfile'
+ run_validate
+ expect(last_command_started).to have_output(/error: .*hostname.*/)
+ end
+ # Runner.Validate.hostname.Length
+ it "with >320 characters" do
+ use_fixture '0025-jumbo-hostname.installfile'
+ run_validate
+ expect(last_command_started).to have_output(/error: .*hostname.*/)
+ end
+ # Runner.Validate.hostname.PartLength
+ it "with >64 characters in a single part" do
+ use_fixture '0026-jumbo-part-hostname.installfile'
+ run_validate
+ expect(last_command_started).to have_output(/error: .*hostname.*/)
+ end
end
+ # Runner.Validate.rootpw.
+ # Runner.Validate.rootpw.Crypt.
it "fails with an invalid 'rootpw' value" do
use_fixture '0013-invalid-rootpw.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*rootpw.*/)
end
+ # Runner.Validate.mount.
it "fails with an invalid 'mount' value" do
use_fixture '0014-invalid-mount.installfile'
run_validate
@@ -111,16 +154,19 @@ RSpec.describe 'HorizonScript Validation Utility', :type => :aruba do
end
end
context "unique keys" do
+ # Runner.Validate.network.
it "fails with a duplicate 'network' key" do
use_fixture '0018-duplicate-network.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*duplicate.*network/)
end
+ # Runner.Validate.hostname.
it "fails with a duplicate 'hostname' key" do
use_fixture '0019-duplicate-hostname.installfile'
run_validate
expect(last_command_started).to have_output(/error: .*duplicate.*hostname/)
end
+ # Runner.Validate.rootpw.
it "fails with a duplicate 'rootpw' key" do
use_fixture '0020-duplicate-rootpw.installfile'
run_validate
@@ -128,6 +174,7 @@ RSpec.describe 'HorizonScript Validation Utility', :type => :aruba do
end
end
context "package specifications" do
+ # no requirements for these, but I think obvious.
it "works with all types of package atoms" do
use_fixture '0022-all-kinds-of-atoms.installfile'
run_validate