Sha256: 7fe45433ead7d7537744739afc5f9492f5229638216d9485324140739d3cf7ac

Contents?: true

Size: 623 Bytes

Versions: 28

Compression:

Stored size: 623 Bytes

Contents

#!/usr/bin/env rspec
require 'spec_helper'
require 'mcollective/validator/shellsafe_validator'

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

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
mcollective-client-2.12.5 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.12.4 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.12.3 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.12.1 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.12.0 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.10.6 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.11.4 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.11.3 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.11.2 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.11.1 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.11.0 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.10.4 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.10.3 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.10.2 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.10.1 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.10.0 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.8.7 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.8.5 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.8.8 spec/unit/mcollective/validator/shellsafe_validator_spec.rb
mcollective-client-2.8.6 spec/unit/mcollective/validator/shellsafe_validator_spec.rb