forked from redhat-openstack/openstack-puppet-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1097 from mrgum/master
unify log_level checking and allow trace1-8 levels
- Loading branch information
Showing
4 changed files
with
68 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module Puppet::Parser::Functions | ||
newfunction(:validate_apache_log_level, :doc => <<-'ENDHEREDOC') do |args| | ||
Perform simple validation of a string against the list of known log | ||
levels as per http://httpd.apache.org/docs/current/mod/core.html#loglevel | ||
validate_apache_loglevel('info') | ||
Modules maybe specified with their own levels like these: | ||
validate_apache_loglevel('warn ssl:info') | ||
validate_apache_loglevel('warn mod_ssl.c:info') | ||
validate_apache_loglevel('warn ssl_module:info') | ||
Expected to be used from the main or vhost. | ||
Might be used from directory too later as apaceh supports that | ||
ENDHEREDOC | ||
if (args.size != 1) then | ||
raise Puppet::ParseError, ("validate_apache_loglevel(): wrong number of arguments (#{args.length}; must be 1)") | ||
end | ||
|
||
log_level = args[0] | ||
msg = "Log level '${log_level}' is not one of the supported Apache HTTP Server log levels." | ||
|
||
raise Puppet::ParseError, (msg) unless log_level =~ Regexp.compile('(emerg|alert|crit|error|warn|notice|info|debug|trace[1-8])') | ||
|
||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
spec/unit/puppet/parser/functions/validate_apache_log_level.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#! /usr/bin/env ruby -S rspec | ||
require 'spec_helper' | ||
|
||
describe "the validate_apache_log_level function" do | ||
let(:scope) { PuppetlabsSpec::PuppetInternals.scope } | ||
|
||
it "should exist" do | ||
expect(Puppet::Parser::Functions.function("validate_apache_log_level")).to eq("function_validate_apache_log_level") | ||
end | ||
|
||
it "should raise a ParseError if there is less than 1 arguments" do | ||
expect { scope.function_validate_apache_log_level([]) }.to( raise_error(Puppet::ParseError) ) | ||
end | ||
|
||
it "should raise a ParseError when given garbage" do | ||
expect { scope.function_validate_apache_log_level(['garbage']) }.to( raise_error(Puppet::ParseError) ) | ||
end | ||
|
||
it "should not raise a ParseError when given a plain log level" do | ||
expect { scope.function_validate_apache_log_level(['info']) }.to_not raise_error | ||
end | ||
|
||
it "should not raise a ParseError when given a log level and module log level" do | ||
expect { scope.function_validate_apache_log_level(['warn ssl:info']) }.to_not raise_error | ||
end | ||
|
||
it "should not raise a ParseError when given a log level and module log level" do | ||
expect { scope.function_validate_apache_log_level(['warn mod_ssl.c:info']) }.to_not raise_error | ||
end | ||
|
||
it "should not raise a ParseError when given a log level and module log level" do | ||
expect { scope.function_validate_apache_log_level(['warn ssl_module:info']) }.to_not raise_error | ||
end | ||
|
||
it "should not raise a ParseError when given a trace level" do | ||
expect { scope.function_validate_apache_log_level(['trace4']) }.to_not raise_error | ||
end | ||
|
||
end |