Initial work commands/up: make sure all names to with_target_vms are strings providers/docker: create a docker host VM if needed providers/docker: executor abstraction for driver to eventually support remote providers/docker: vagrant executor providers/docker: support creating the machine providers/docker: status works if host VM is gone providers/docker: use start fence to get real docker output core: Call preserves stack ordering core: support Message post option providers/docker: Guard some features with HasSSH checks providers/docker: much better messaging around create/destroy providers/docker: output the container ID on create providers/docker: copy the hostmachine Vagrantfile to the data dir providers/docker: should make host machine before any up action providers/docker: HandleBox before the host machine providers/virtualbox: functional_vboxsf to disable vboxsf providers/virtualbox: synced folder usable method should take 2 args providers/docker: default machine name to :default
31 lines
868 B
Ruby
31 lines
868 B
Ruby
require_relative "../../../base"
|
|
|
|
require Vagrant.source_root.join("plugins/providers/virtualbox/config")
|
|
|
|
describe VagrantPlugins::ProviderVirtualBox::Config do
|
|
context "defaults" do
|
|
subject { VagrantPlugins::ProviderVirtualBox::Config.new }
|
|
|
|
before { subject.finalize! }
|
|
|
|
it { expect(subject.check_guest_additions).to be_true }
|
|
it { expect(subject.gui).to be_false }
|
|
it { expect(subject.name).to be_nil }
|
|
it { expect(subject.functional_vboxsf).to be_true }
|
|
|
|
it "should have one NAT adapter" do
|
|
expect(subject.network_adapters).to eql({
|
|
1 => [:nat, {}],
|
|
})
|
|
end
|
|
end
|
|
|
|
describe "#network_adapter" do
|
|
it "configures additional adapters" do
|
|
subject.network_adapter(2, :bridged, auto_config: true)
|
|
expect(subject.network_adapters[2]).to eql(
|
|
[:bridged, auto_config: true])
|
|
end
|
|
end
|
|
end
|