Update trigger unit tests

This commit is contained in:
Brian Cain 2018-03-19 15:02:51 -07:00
parent 42419bbd49
commit 3dec6869bb
No known key found for this signature in database
GPG Key ID: 43D51080D357A001
2 changed files with 110 additions and 3 deletions

View File

@ -35,4 +35,104 @@ describe VagrantPlugins::Kernel_V2::TriggerConfig do
subject.finalize!
assert_valid
end
let (:hash_block) { {info: "hi", run: {inline: "echo 'hi'"}} }
let (:splat) { [:up, :destroy, :halt] }
let (:arr) { [[:up, :destroy, :halt]] }
describe "creating a before trigger" do
it "creates a trigger with the splat syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.before(:up, hash_block)
bf_trigger = subject.instance_variable_get(:@_before_triggers)
expect(bf_trigger.size).to eq(1)
end
it "creates a trigger with the array syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.before([:up], hash_block)
bf_trigger = subject.instance_variable_get(:@_before_triggers)
expect(bf_trigger.size).to eq(1)
end
it "creates a trigger with the block syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.before :up do |trigger|
trigger.name = "rspec"
end
bf_trigger = subject.instance_variable_get(:@_before_triggers)
expect(bf_trigger.size).to eq(1)
end
it "creates multiple triggers with the splat syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.before(splat, hash_block)
bf_trigger = subject.instance_variable_get(:@_before_triggers)
expect(bf_trigger.size).to eq(3)
end
it "creates multiple triggers with the block syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.before splat do |trigger|
trigger.name = "rspec"
end
bf_trigger = subject.instance_variable_get(:@_before_triggers)
expect(bf_trigger.size).to eq(3)
end
it "creates multiple triggers with the array syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.before(arr, hash_block)
bf_trigger = subject.instance_variable_get(:@_before_triggers)
expect(bf_trigger.size).to eq(3)
end
end
describe "creating an after trigger" do
it "creates a trigger with the splat syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.after(:up, hash_block)
af_trigger = subject.instance_variable_get(:@_after_triggers)
expect(af_trigger.size).to eq(1)
end
it "creates a trigger with the array syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.after([:up], hash_block)
af_trigger = subject.instance_variable_get(:@_after_triggers)
expect(af_trigger.size).to eq(1)
end
it "creates a trigger with the block syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.after :up do |trigger|
trigger.name = "rspec"
end
af_trigger = subject.instance_variable_get(:@_after_triggers)
expect(af_trigger.size).to eq(1)
end
it "creates multiple triggers with the splat syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.after(splat, hash_block)
af_trigger = subject.instance_variable_get(:@_after_triggers)
expect(af_trigger.size).to eq(3)
end
it "creates multiple triggers with the block syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.after splat do |trigger|
trigger.name = "rspec"
end
af_trigger = subject.instance_variable_get(:@_after_triggers)
expect(af_trigger.size).to eq(3)
end
it "creates multiple triggers with the array syntax" do
allow(subject).to receive(:create_trigger).and_return([:foo])
subject.after(arr, hash_block)
af_trigger = subject.instance_variable_get(:@_after_triggers)
expect(af_trigger.size).to eq(3)
end
end
end

View File

@ -35,8 +35,15 @@ describe VagrantPlugins::Kernel_V2::VagrantConfigTrigger do
subject.name = "foo"
end
describe "with defaults" do
it "is valid with test defaults" do
subject.finalize!
assert_valid
end
it "sets a command" do
expect(subject.command).to eq(command)
end
end
end