
This commit performs a refactor of the swift::storage::config to use fragments. Updates server templates - makes workers,user, and mount_checks configurable - adds a default for concurrency - makes the pipeline configurable - remove vm_test_mode flag Updates swift::storage::server to use fragments for the config file. This has been refactored to allow the end user a greater level of flexibility over how they can configure custom plugins for swift. Also adds additional class params: pipeline, mount_check, user, workers, concurrency. Update the unit tests for swift::storage:server
19 lines
671 B
Ruby
19 lines
671 B
Ruby
require 'puppet'
|
|
require 'rubygems'
|
|
require 'rspec-puppet'
|
|
|
|
def param_value(subject, type, title, param)
|
|
subject.resource(type, title).send(:parameters)[param.to_sym]
|
|
end
|
|
|
|
def verify_contents(subject, title, expected_lines)
|
|
content = subject.resource('file', title).send(:parameters)[:content]
|
|
(content.split("\n") & expected_lines).should == expected_lines
|
|
end
|
|
|
|
RSpec.configure do |c|
|
|
c.module_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/modules'))
|
|
# Using an empty site.pp file to avoid: https://github.com/rodjek/rspec-puppet/issues/15
|
|
c.manifest_dir = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/manifests'))
|
|
end
|