puppet-tempest/lib/puppet/provider/tempest_neutron_net_id_setter/openstack.rb
Javier Pena 74424c4a4b Enable Keystone v3 support for providers
tempest_glance_id_setter and tempest_neutron_net_id_setter were
previously using Credentialsv2_0, which do not work in a Keystone v3
environment (and that's what we should be using today).

Closes-Bug: #1633864

Change-Id: I95ea682064ff6365622fc31c562b42014fc52303
2016-10-17 17:12:45 +02:00

88 lines
2.2 KiB
Ruby

require File.join(File.dirname(__FILE__), '..','..','..', 'puppet/provider/tempest')
Puppet::Type.type(:tempest_neutron_net_id_setter).provide(
:openstack,
:parent => Puppet::Provider::Tempest
) do
@credentials = Puppet::Provider::Openstack::CredentialsV3.new
def exists?
lines.find do |line|
should_line.chomp == line.chomp
end
end
def file_path
resource[:tempest_conf_path]
end
def create
handle_create_with_match
end
def destroy
handle_create_with_match
end
def get_network_id
if resource[:ensure] == :present or resource[:ensure].nil?
if @network_id.nil?
nets = self.class.request('network', 'list', file_path)
net = nets.detect {|img| img[:name] == resource[:network_name]}
if net.nil?
raise(Puppet::Error, "Network #{resource[:network_name]} not found!")
end
@network_id = net[:id]
end
elsif resource[:ensure] != :absent
raise(Puppet::Error, "Cannot ensure to #{resource[:ensure]}")
end
@network_id
end
def should_line
"#{resource[:name]} = #{get_network_id}"
end
def match
/^\s*#{resource[:name]}\s*=\s*/
end
def handle_create_with_match()
regex = match
match_count = lines.select { |l| regex.match(l) }.count
file = lines
case match_count
when 1
File.open(file_path, 'w') do |fh|
lines.each do |l|
fh.puts(regex.match(l) ? should_line : l)
end
end
when 0
block_pos = lines.find_index { |l| /^\[network\]/ =~ l }
if block_pos.nil?
file += ["[network]\n", "#{should_line}\n"]
else
file.insert(block_pos+1, "#{should_line}\n")
end
File.write(file_path, file.join)
else # cannot be negative.
raise Puppet::Error, "More than one line in file \
'#{file_path}' matches pattern '#{regex}'"
end
end
private
def lines
# If this type is ever used with very large files, we should
# write this in a different way, using a temp
# file; for now assuming that this type is only used on
# small-ish config files that can fit into memory without
# too much trouble.
@lines ||= File.readlines(file_path)
end
end