Stub #is_port_open?

Stub #is_port_open? so we don't need to worry about tests colliding with
real services.
This commit is contained in:
Jeff Bonhag 2019-12-09 16:18:04 -05:00
parent dffded5b17
commit eec60d7bdd
No known key found for this signature in database
GPG Key ID: 32966F3FB5AC1129
1 changed files with 5 additions and 4 deletions

View File

@ -69,18 +69,19 @@ describe Vagrant::Action::Builtin::HandleForwardedPortCollisions do
end
context "with forwarded port defined" do
let(:port_options){ {guest: 80, host: 52811} }
let(:port_options){ {guest: 80, host: 8080} }
before do
expect(vm_config).to receive(:networks).and_return([[:forwarded_port, port_options]]).twice
end
it "should check if host port is in use" do
expect(instance).to receive(:is_forwarded_already).and_return false
expect(instance).to receive(:is_port_open?).and_return false
instance.call(env)
end
context "with forwarded port already in use" do
let(:extra_in_use){ [52811] }
let(:extra_in_use){ [8080] }
it "should raise a port collision error" do
expect{ instance.call(env) }.to raise_error(Vagrant::Errors::ForwardPortCollision)
@ -105,7 +106,7 @@ describe Vagrant::Action::Builtin::HandleForwardedPortCollisions do
context "with custom port_check method" do
let(:check_result){ [] }
let(:port_options){ {guest: 80, host: 52811, host_ip: "127.0.1.1"} }
let(:port_options){ {guest: 80, host: 8080, host_ip: "127.0.1.1"} }
context "that accepts two parameters" do
let(:collision_port_check) do
@ -145,7 +146,7 @@ describe Vagrant::Action::Builtin::HandleForwardedPortCollisions do
describe "#port_check" do
let(:host_ip){ "127.0.0.1" }
let(:host_port){ 52811 }
let(:host_port){ 8080 }
it "should check if the port is open" do
expect(instance).to receive(:is_port_open?).with(host_ip, host_port).and_return true