logging spec
This commit is contained in:
parent
533b79a56f
commit
378cd7ce29
@ -3,7 +3,7 @@ module Apache
|
|||||||
[ :custom, :error, :script, :rewrite ].each do |type|
|
[ :custom, :error, :script, :rewrite ].each do |type|
|
||||||
class_eval <<-EOT
|
class_eval <<-EOT
|
||||||
def #{type}_log(*opts)
|
def #{type}_log(*opts)
|
||||||
handle_log '#{type.to_s.capitalize}Log', opts.first, opts.first, opts[1..-1]
|
handle_log '#{type.to_s.capitalize}Log', opts.first, quoteize(opts.first), opts[1..-1]
|
||||||
end
|
end
|
||||||
|
|
||||||
def rotate_#{type}_log(*opts)
|
def rotate_#{type}_log(*opts)
|
||||||
|
25
spec/logging_spec.rb
Normal file
25
spec/logging_spec.rb
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe Apache::Config, "logging directives" do
|
||||||
|
let(:apache) { Apache::Config }
|
||||||
|
before { apache.reset! }
|
||||||
|
|
||||||
|
it "should handle a defined log type" do
|
||||||
|
apache.rotate_logs_path = '/path/to/rotatelogs'
|
||||||
|
|
||||||
|
[ :custom, :error, :script, :rewrite ].each do |type|
|
||||||
|
apache.reset!
|
||||||
|
apache.send("#{type}_log".to_sym, 'test', 'test2')
|
||||||
|
apache.to_a.should == [ %{#{type.to_s.capitalize}Log "test" test2} ]
|
||||||
|
|
||||||
|
apache.reset!
|
||||||
|
apache.send("rotate_#{type}_log".to_sym, 'test', 86400, 'test2')
|
||||||
|
apache.to_a.should == [ %{#{type.to_s.capitalize}Log "|/path/to/rotatelogs test 86400" test2} ]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
it "should give log formats" do
|
||||||
|
apache.combined_log_format
|
||||||
|
apache.common_log_format
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user