2015-05-15 16:54:57 +00:00
|
|
|
require_relative "../../../base"
|
|
|
|
|
|
|
|
require "vagrant/util/template_renderer"
|
|
|
|
|
|
|
|
describe "templates/guests/arch/network_static" do
|
|
|
|
let(:template) { "guests/arch/network_static" }
|
|
|
|
|
|
|
|
it "renders the template" do
|
|
|
|
result = Vagrant::Util::TemplateRenderer.render(template, options: {
|
2016-07-19 01:31:25 +00:00
|
|
|
device: "eth1",
|
|
|
|
ip: "1.1.1.1",
|
|
|
|
netmask: "24",
|
2015-05-15 16:54:57 +00:00
|
|
|
})
|
|
|
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
|
|
|
Connection=ethernet
|
|
|
|
Description='A basic static ethernet connection'
|
2016-06-06 16:34:45 +00:00
|
|
|
Interface=eth1
|
2015-05-15 16:54:57 +00:00
|
|
|
IP=static
|
|
|
|
Address=('1.1.1.1/24')
|
|
|
|
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",
|
2016-07-19 01:31:25 +00:00
|
|
|
netmask: "24",
|
2015-05-15 16:54:57 +00:00
|
|
|
})
|
|
|
|
expect(result).to eq <<-EOH.gsub(/^ {6}/, "")
|
|
|
|
Connection=ethernet
|
|
|
|
Description='A basic static ethernet connection'
|
2016-06-06 16:34:45 +00:00
|
|
|
Interface=eth1
|
2015-05-15 16:54:57 +00:00
|
|
|
IP=static
|
|
|
|
Address=('1.1.1.1/24')
|
|
|
|
Gateway='1.2.3.4'
|
|
|
|
EOH
|
|
|
|
end
|
|
|
|
end
|