2015-05-15 16:54:57 +00:00
|
|
|
require_relative "../../../base"
|
|
|
|
|
|
|
|
require "vagrant/util/template_renderer"
|
|
|
|
|
|
|
|
describe "templates/guests/suse/network_static" do
|
|
|
|
let(:template) { "guests/suse/network_static" }
|
|
|
|
|
|
|
|
it "renders the template" do
|
|
|
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
2016-06-06 16:34:45 +00:00
|
|
|
device: "eth1",
|
2015-05-15 16:54:57 +00:00
|
|
|
ip: "1.1.1.1",
|
|
|
|
netmask: "255.255.0.0",
|
|
|
|
})
|
|
|
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
|
|
|
#VAGRANT-BEGIN
|
|
|
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
|
|
|
BOOTPROTO='static'
|
|
|
|
IPADDR='1.1.1.1'
|
|
|
|
NETMASK='255.255.0.0'
|
2016-06-06 16:34:45 +00:00
|
|
|
DEVICE='eth1'
|
2015-05-15 16:54:57 +00:00
|
|
|
PEERDNS='no'
|
|
|
|
STARTMODE='auto'
|
|
|
|
USERCONTROL='no'
|
|
|
|
#VAGRANT-END
|
|
|
|
EOH
|
|
|
|
end
|
|
|
|
|
|
|
|
it "includes the gateway" do
|
|
|
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
2016-06-06 16:34:45 +00:00
|
|
|
device: "eth1",
|
2015-05-15 16:54:57 +00:00
|
|
|
ip: "1.1.1.1",
|
|
|
|
gateway: "1.2.3.4",
|
|
|
|
netmask: "255.255.0.0",
|
|
|
|
})
|
|
|
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
|
|
|
#VAGRANT-BEGIN
|
|
|
|
# The contents below are automatically generated by Vagrant. Do not modify.
|
|
|
|
BOOTPROTO='static'
|
|
|
|
IPADDR='1.1.1.1'
|
|
|
|
NETMASK='255.255.0.0'
|
2016-06-06 16:34:45 +00:00
|
|
|
DEVICE='eth1'
|
2015-05-15 16:54:57 +00:00
|
|
|
GATEWAY='1.2.3.4'
|
|
|
|
PEERDNS='no'
|
|
|
|
STARTMODE='auto'
|
|
|
|
USERCONTROL='no'
|
|
|
|
#VAGRANT-END
|
|
|
|
EOH
|
|
|
|
end
|
|
|
|
end
|