Sha256: ab42e8ea429c539931b68f8c49e8a3ca504e30d51025d954a395d94930f53b75
Contents?: true
Size: 1.87 KB
Versions: 21
Compression:
Stored size: 1.87 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 it "should not extraneous && joiners" do cap.configure_networks(machine, [network_1, network_2]) expect(comm.received_commands[0]).not_to match(/^\s*&&\s*$/) end end end
Version data entries
21 entries across 17 versions & 4 rubygems