2014-02-03 15:40:02 +00:00
|
|
|
require File.expand_path("../../../../base", __FILE__)
|
|
|
|
|
|
|
|
require Vagrant.source_root.join("plugins/kernel_v2/config/vm")
|
|
|
|
|
|
|
|
describe VagrantPlugins::Kernel_V2::VMConfig do
|
|
|
|
subject { described_class.new }
|
|
|
|
|
2014-01-24 17:16:37 +00:00
|
|
|
let(:machine) { double("machine") }
|
|
|
|
|
|
|
|
def assert_valid
|
|
|
|
errors = subject.validate(machine)
|
|
|
|
if !errors.values.all? { |v| v.empty? }
|
|
|
|
raise "Errors: #{errors.inspect}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
machine.stub(provider_config: nil)
|
|
|
|
|
|
|
|
subject.box = "foo"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is valid with test defaults" do
|
|
|
|
subject.finalize!
|
|
|
|
assert_valid
|
|
|
|
end
|
|
|
|
|
2014-02-05 23:35:37 +00:00
|
|
|
describe "#base_mac" do
|
|
|
|
it "defaults properly" do
|
|
|
|
subject.finalize!
|
|
|
|
expect(subject.base_mac).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-24 23:27:01 +00:00
|
|
|
context "#box_check_update" do
|
|
|
|
it "defaults to nil" do
|
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
expect(subject.box_check_update).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-05 23:35:37 +00:00
|
|
|
describe "#box_url" do
|
2014-01-24 20:58:01 +00:00
|
|
|
it "defaults to nil" do
|
2014-02-05 23:35:37 +00:00
|
|
|
subject.finalize!
|
2014-01-24 20:58:01 +00:00
|
|
|
|
2014-02-05 23:35:37 +00:00
|
|
|
expect(subject.box_url).to be_nil
|
|
|
|
end
|
2014-01-24 20:58:01 +00:00
|
|
|
|
|
|
|
it "turns into an array" do
|
|
|
|
subject.box_url = "foo"
|
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
expect(subject.box_url).to eq(
|
|
|
|
["foo"])
|
|
|
|
end
|
|
|
|
|
|
|
|
it "keeps in array" do
|
|
|
|
subject.box_url = ["foo", "bar"]
|
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
expect(subject.box_url).to eq(
|
|
|
|
["foo", "bar"])
|
|
|
|
end
|
2014-02-05 23:35:37 +00:00
|
|
|
end
|
|
|
|
|
2014-01-24 17:16:37 +00:00
|
|
|
context "#box_version" do
|
|
|
|
it "defaults to >= 0" do
|
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
expect(subject.box_version).to eq(">= 0")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "errors if invalid version" do
|
|
|
|
subject.box_version = "nope"
|
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
expect { assert_valid }.to raise_error(RuntimeError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can have complex constraints" do
|
|
|
|
subject.box_version = ">= 0, ~> 1.0"
|
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
assert_valid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-05 23:35:37 +00:00
|
|
|
describe "#network(s)" do
|
|
|
|
it "defaults to forwarding SSH" do
|
|
|
|
subject.finalize!
|
|
|
|
n = subject.networks
|
|
|
|
expect(n.length).to eq(1)
|
|
|
|
expect(n[0][0]).to eq(:forwarded_port)
|
|
|
|
expect(n[0][1][:guest]).to eq(22)
|
|
|
|
expect(n[0][1][:host]).to eq(2222)
|
|
|
|
expect(n[0][1][:host_ip]).to eq("127.0.0.1")
|
|
|
|
expect(n[0][1][:id]).to eq("ssh")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "turns all forwarded port ports to ints" do
|
|
|
|
subject.network "forwarded_port",
|
|
|
|
guest: "45", host: "4545", id: "test"
|
|
|
|
subject.finalize!
|
|
|
|
n = subject.networks.find do |type, data|
|
|
|
|
type == :forwarded_port && data[:id] == "test"
|
|
|
|
end
|
|
|
|
expect(n).to_not be_nil
|
|
|
|
expect(n[1][:guest]).to eq(45)
|
|
|
|
expect(n[1][:host]).to eq(4545)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-03 15:40:02 +00:00
|
|
|
describe "#provision" do
|
|
|
|
it "stores the provisioners" do
|
|
|
|
subject.provision("shell", inline: "foo")
|
2014-02-04 03:41:11 +00:00
|
|
|
subject.provision("shell", inline: "bar") { |s| s.path = "baz" }
|
2014-02-03 15:40:02 +00:00
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
r = subject.provisioners
|
|
|
|
expect(r.length).to eql(2)
|
|
|
|
expect(r[0].config.inline).to eql("foo")
|
|
|
|
expect(r[1].config.inline).to eql("bar")
|
2014-02-04 03:41:11 +00:00
|
|
|
expect(r[1].config.path).to eql("baz")
|
2014-02-03 15:40:02 +00:00
|
|
|
end
|
2014-02-03 15:42:47 +00:00
|
|
|
|
2014-02-03 15:56:39 +00:00
|
|
|
it "allows provisioner settings to be overriden" do
|
2014-02-04 03:41:11 +00:00
|
|
|
subject.provision("shell", path: "foo", id: "s") { |s| s.inline = "foo" }
|
|
|
|
subject.provision("shell", inline: "bar", id: "s") { |s| s.args = "bar" }
|
2014-02-03 15:56:39 +00:00
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
r = subject.provisioners
|
|
|
|
expect(r.length).to eql(1)
|
2014-02-04 03:41:11 +00:00
|
|
|
expect(r[0].config.args).to eql("bar")
|
2014-02-03 15:56:39 +00:00
|
|
|
expect(r[0].config.inline).to eql("bar")
|
|
|
|
expect(r[0].config.path).to eql("foo")
|
|
|
|
end
|
|
|
|
|
2014-02-03 15:42:47 +00:00
|
|
|
it "marks as invalid if a bad name" do
|
|
|
|
subject.provision("nope", inline: "foo")
|
|
|
|
subject.finalize!
|
|
|
|
|
|
|
|
r = subject.provisioners
|
|
|
|
expect(r.length).to eql(1)
|
|
|
|
expect(r[0]).to be_invalid
|
|
|
|
end
|
2014-02-03 20:30:01 +00:00
|
|
|
|
|
|
|
describe "merging" do
|
|
|
|
it "copies the configs" do
|
|
|
|
subject.provision("shell", inline: "foo")
|
|
|
|
subject_provs = subject.provisioners
|
|
|
|
|
|
|
|
other = described_class.new
|
|
|
|
other.provision("shell", inline: "bar")
|
|
|
|
|
|
|
|
merged = subject.merge(other)
|
|
|
|
merged_provs = merged.provisioners
|
|
|
|
|
|
|
|
expect(merged_provs.length).to eql(2)
|
|
|
|
expect(merged_provs[0].config.inline).
|
|
|
|
to eq(subject_provs[0].config.inline)
|
|
|
|
expect(merged_provs[0].config.object_id).
|
|
|
|
to_not eq(subject_provs[0].config.object_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "uses the proper order when merging overrides" do
|
|
|
|
subject.provision("shell", inline: "foo", id: "original")
|
|
|
|
subject.provision("shell", inline: "other", id: "other")
|
|
|
|
|
|
|
|
other = described_class.new
|
|
|
|
other.provision("shell", inline: "bar")
|
|
|
|
other.provision("shell", inline: "foo-overload", id: "original")
|
|
|
|
|
|
|
|
merged = subject.merge(other)
|
|
|
|
merged_provs = merged.provisioners
|
|
|
|
|
|
|
|
expect(merged_provs.length).to eql(3)
|
|
|
|
expect(merged_provs[0].config.inline).
|
|
|
|
to eq("other")
|
|
|
|
expect(merged_provs[1].config.inline).
|
|
|
|
to eq("bar")
|
|
|
|
expect(merged_provs[2].config.inline).
|
|
|
|
to eq("foo-overload")
|
|
|
|
end
|
2014-02-03 21:03:20 +00:00
|
|
|
|
|
|
|
it "can preserve order for overrides" do
|
|
|
|
subject.provision("shell", inline: "foo", id: "original")
|
|
|
|
subject.provision("shell", inline: "other", id: "other")
|
|
|
|
|
|
|
|
other = described_class.new
|
|
|
|
other.provision("shell", inline: "bar")
|
|
|
|
other.provision(
|
|
|
|
"shell", inline: "foo-overload", id: "original",
|
|
|
|
preserve_order: true)
|
|
|
|
|
|
|
|
merged = subject.merge(other)
|
|
|
|
merged_provs = merged.provisioners
|
|
|
|
|
|
|
|
expect(merged_provs.length).to eql(3)
|
|
|
|
expect(merged_provs[0].config.inline).
|
|
|
|
to eq("foo-overload")
|
|
|
|
expect(merged_provs[1].config.inline).
|
|
|
|
to eq("other")
|
|
|
|
expect(merged_provs[2].config.inline).
|
|
|
|
to eq("bar")
|
|
|
|
end
|
2014-02-03 20:30:01 +00:00
|
|
|
end
|
2014-02-03 15:40:02 +00:00
|
|
|
end
|
2014-02-05 23:35:37 +00:00
|
|
|
|
|
|
|
describe "#synced_folder(s)" do
|
|
|
|
it "defaults to sharing the current directory" do
|
|
|
|
subject.finalize!
|
|
|
|
sf = subject.synced_folders
|
|
|
|
expect(sf.length).to eq(1)
|
|
|
|
expect(sf).to have_key("/vagrant")
|
|
|
|
expect(sf["/vagrant"][:disabled]).to_not be
|
|
|
|
end
|
|
|
|
|
|
|
|
it "allows overriding settings on the /vagrant sf" do
|
|
|
|
subject.synced_folder(".", "/vagrant", disabled: true)
|
|
|
|
subject.finalize!
|
|
|
|
sf = subject.synced_folders
|
|
|
|
expect(sf.length).to eq(1)
|
|
|
|
expect(sf).to have_key("/vagrant")
|
|
|
|
expect(sf["/vagrant"][:disabled]).to be_true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "#usable_port_range" do
|
|
|
|
it "defaults properly" do
|
|
|
|
subject.finalize!
|
|
|
|
expect(subject.usable_port_range).to eq(
|
|
|
|
Range.new(2200, 2250))
|
|
|
|
end
|
|
|
|
end
|
2014-02-03 15:40:02 +00:00
|
|
|
end
|