Sha256: 01ed6affcb118a3d3c01fd95110b3337296d58cf29ba8a2a5ca099ea6fe4f8de

Contents?: true

Size: 1.69 KB

Versions: 3

Compression:

Stored size: 1.69 KB

Contents

require_relative "../../../../base"

describe "VagrantPlugins::GuestArch::Cap::ConfigureNetworks" do
  let(:caps) do
    VagrantPlugins::GuestArch::Plugin
      .components
      .guest_capabilities[:arch]
  end

  let(:guest) { double("guest") }
  let(:machine) { double("machine", guest: guest) }
  let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }

  before do
    allow(machine).to receive(:communicate).and_return(comm)
  end

  after do
    comm.verify_expectations!
  end

  describe ".configure_networks" do
    let(:cap) { caps.get(:configure_networks) }

    before do
      allow(guest).to receive(:capability).with(:network_interfaces)
        .and_return(["eth1", "eth2"])
    end

    let(:network_1) do
      {
        interface: 0,
        type: "dhcp",
      }
    end

    let(:network_2) do
      {
        interface: 1,
        type: "static",
        ip: "33.33.33.10",
        netmask: "255.255.0.0",
        gateway: "33.33.0.1",
      }
    end

    it "creates and starts the networks" do
      cap.configure_networks(machine, [network_1, network_2])
      expect(comm.received_commands[0]).to match(/mv (.+) '\/etc\/netctl\/eth1'/)
      expect(comm.received_commands[0]).to match(/ip link set 'eth1' down/)
      expect(comm.received_commands[0]).to match(/netctl restart 'eth1'/)
      expect(comm.received_commands[0]).to match(/netctl enable 'eth1'/)

      expect(comm.received_commands[0]).to match(/mv (.+) '\/etc\/netctl\/eth2'/)
      expect(comm.received_commands[0]).to match(/ip link set 'eth2' down/)
      expect(comm.received_commands[0]).to match(/netctl restart 'eth2'/)
      expect(comm.received_commands[0]).to match(/netctl enable 'eth2'/)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-unbundled-1.9.1.1 test/unit/plugins/guests/arch/cap/configure_networks_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/guests/arch/cap/configure_networks_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/guests/arch/cap/configure_networks_test.rb