X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Funit%2Fplugins%2Fmcollective%2Fvalidator%2Fshellsafe_validator_spec.rb;fp=spec%2Funit%2Fplugins%2Fmcollective%2Fvalidator%2Fshellsafe_validator_spec.rb;h=1f804c192c89a300aae6d40c74d297fcc341a1f5;hb=b87d2f4e68281062df1913440ca5753ae63314a9;hp=0000000000000000000000000000000000000000;hpb=ab0ea530b8ac956091f17b104ab2311336cfc250;p=packages%2Fprecise%2Fmcollective.git diff --git a/spec/unit/plugins/mcollective/validator/shellsafe_validator_spec.rb b/spec/unit/plugins/mcollective/validator/shellsafe_validator_spec.rb new file mode 100644 index 0000000..1f804c1 --- /dev/null +++ b/spec/unit/plugins/mcollective/validator/shellsafe_validator_spec.rb @@ -0,0 +1,21 @@ +#!/usr/bin/env rspec +require 'spec_helper' +require File.dirname(__FILE__) + '/../../../../../plugins/mcollective/validator/shellsafe_validator.rb' + +module MCollective + module Validator + describe "#validate" do + it "should raise an exception if the given string is not shellsafe" do + ['`', '$', ';', '|', '&&', '>', '<'].each do |chr| + expect{ + ShellsafeValidator.validate("#{chr}test") + }.to raise_error(ValidatorError, "value should not have #{chr} in it") + end + end + + it "should not raise an exception if the given string is shellsafe" do + ShellsafeValidator.validate("test") + end + end + end +end