Sha256: dd1ac77912a89aa6202b015229521dd93dfddef1f887cef8ba337ba2200777b4

Contents?: true

Size: 1.3 KB

Versions: 3

Compression:

Stored size: 1.3 KB

Contents

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: {
      interface: "en0",
      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'
      DEVICE='ethen0'
      PEERDNS='no'
      STARTMODE='auto'
      USERCONTROL='no'
      #VAGRANT-END
    EOH
  end

  it "includes the gateway" do
    result = Vagrant::Util::TemplateRenderer.render(template, options: {
      interface:  "en0",
      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'
      DEVICE='ethen0'
      GATEWAY='1.2.3.4'
      PEERDNS='no'
      STARTMODE='auto'
      USERCONTROL='no'
      #VAGRANT-END
    EOH
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
vagrant-unbundled-1.8.1.2 test/unit/templates/guests/suse/network_static_test.rb
vagrant-unbundled-1.8.1.1 test/unit/templates/guests/suse/network_static_test.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/test/unit/templates/guests/suse/network_static_test.rb