42 lines
1.1 KiB
Ruby
42 lines
1.1 KiB
Ruby
require 'apache/config'
|
|
|
|
describe Apache::Master, "should provide basic helpers for configuration" do
|
|
let(:apache) { Apache::Config }
|
|
|
|
before { apache.reset! }
|
|
|
|
it "should build the modules with the provided block" do
|
|
apache.modules(:this, :that) do
|
|
my "is here"
|
|
end.should == [
|
|
'',
|
|
'LoadModule "this_module" "modules/mod_this.so"',
|
|
'LoadModule "that_module" "modules/mod_that.so"',
|
|
'LoadModule "my_module" "is here"',
|
|
''
|
|
]
|
|
end
|
|
|
|
it "should set up the runner" do
|
|
apache.runner('test', 'test2')
|
|
apache.to_a.should == [ 'User test', 'Group test2' ]
|
|
end
|
|
|
|
|
|
it "should handle miscellaneous Apache directives" do
|
|
[
|
|
[ [ :apache_include, 'test' ], [ 'Include test' ] ],
|
|
[ [ :apache_alias, 'test', 'test2' ], [ 'Alias "test" "test2"' ] ],
|
|
].each do |call, config|
|
|
apache.reset!
|
|
apache.send(*call)
|
|
apache.to_a.should == config
|
|
end
|
|
end
|
|
|
|
it "should handle rotate logs" do
|
|
apache.rotate_logs_path = "/my/path"
|
|
apache.rotatelogs('/log/path', 12345).should == "|/my/path /log/path 12345"
|
|
end
|
|
end
|