Merge "Add support for MultiStrOpt"
This commit is contained in:
commit
60486d2995
@ -1,6 +1,6 @@
|
||||
Puppet::Type.type(:magnum_config).provide(
|
||||
:ini_setting,
|
||||
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
|
||||
:openstackconfig,
|
||||
:parent => Puppet::Type.type(:openstack_config).provider(:ruby)
|
||||
) do
|
||||
|
||||
def self.file_path
|
@ -7,14 +7,22 @@ Puppet::Type.newtype(:magnum_config) do
|
||||
newvalues(/\S+\/\S+/)
|
||||
end
|
||||
|
||||
newproperty(:value) do
|
||||
newproperty(:value, :array_matching => :all) do
|
||||
desc 'The value of the setting to be defined.'
|
||||
def insync?(is)
|
||||
return true if @should.empty?
|
||||
return false unless is.is_a? Array
|
||||
return false unless is.length == @should.length
|
||||
return (
|
||||
is & @should == is or
|
||||
is & @should.map(&:to_s) == is
|
||||
)
|
||||
end
|
||||
munge do |value|
|
||||
value = value.to_s.strip
|
||||
value.capitalize! if value =~ /^(true|false)$/i
|
||||
value
|
||||
end
|
||||
newvalues(/^[\S ]*$/)
|
||||
|
||||
def is_to_s( currentvalue )
|
||||
if resource.secret?
|
||||
|
@ -1,5 +1,5 @@
|
||||
require 'spec_helper'
|
||||
provider_class = Puppet::Type.type(:magnum_config).provider(:ini_setting)
|
||||
provider_class = Puppet::Type.type(:magnum_config).provider(:openstackconfig)
|
||||
describe provider_class do
|
||||
|
||||
it 'should default to the default setting when no other one is specified' do
|
@ -30,12 +30,12 @@ describe 'Puppet::Type.type(:magnum_config)' do
|
||||
|
||||
it 'should accept a valid value' do
|
||||
@magnum_config[:value] = 'bar'
|
||||
expect(@magnum_config[:value]).to eq('bar')
|
||||
expect(@magnum_config[:value]).to eq(['bar'])
|
||||
end
|
||||
|
||||
it 'should not accept a value with whitespace' do
|
||||
@magnum_config[:value] = 'b ar'
|
||||
expect(@magnum_config[:value]).to eq('b ar')
|
||||
expect(@magnum_config[:value]).to eq(['b ar'])
|
||||
end
|
||||
|
||||
it 'should accept valid ensure values' do
|
||||
|
Loading…
Reference in New Issue
Block a user