Sha256: d7e327393a1dda9883590d49c8ef7e7f6a9d77eabccc0ae0f7360de3f00cd497

Contents?: true

Size: 1.5 KB

Versions: 6

Compression:

Stored size: 1.5 KB

Contents

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

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

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

  before do
    allow(machine).to receive(:communicate).and_return(comm)
    comm.stub_command("ip -o -0 addr | grep -v LOOPBACK | awk '{print $2}' | sed 's/://'",
      stdout: "eth1\neth2")
  end

  after do
    comm.verify_expectations!
  end

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

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

    let(:network_1) 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_0, network_1])

      expect(comm.received_commands[1]).to match("/sbin/ifdown 'eth1' || true")
      expect(comm.received_commands[1]).to match("/sbin/ip addr flush dev 'eth1'")
      expect(comm.received_commands[1]).to match("/sbin/ifdown 'eth2' || true")
      expect(comm.received_commands[1]).to match("/sbin/ip addr flush dev 'eth2'")
      expect(comm.received_commands[1]).to match("/sbin/ifup 'eth1'")
      expect(comm.received_commands[1]).to match("/sbin/ifup 'eth2'")
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/debian/cap/configure_networks_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/debian/cap/configure_networks_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/debian/cap/configure_networks_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/debian/cap/configure_networks_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/guests/debian/cap/configure_networks_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/guests/debian/cap/configure_networks_test.rb