4a61da58d6
Switch tempest_glance_id_setter and tempest_neutron_id_setter to use openstack client with credentials provided in tempest config. This will allow to run puppet-tempest on standalone node but adds dependancy to openstacklib. Change-Id: I27215a9b0f94db39774e20515eddce4cffd7cadf
88 lines
2.2 KiB
Ruby
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::CredentialsV2_0.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
|