58 lines
2.1 KiB
Ruby
58 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe PortPool do
|
|
describe '.available_port' do
|
|
it 'is synchronized' do
|
|
expect(described_class.instance_variable_get(:@mutex)).to receive(:synchronize)
|
|
described_class.available_port
|
|
end
|
|
|
|
context 'when a port is available' do
|
|
it 'returns the port' do
|
|
expect(described_class.available_port).to be_a(Numeric)
|
|
end
|
|
|
|
it 'removes the port from the list of available ports' do
|
|
port = described_class.available_port
|
|
expect(described_class.instance_variable_get(:@available_ports)).not_to include(port)
|
|
end
|
|
end
|
|
|
|
context 'when no port is available' do
|
|
it 'returns the port' do
|
|
available_ports = described_class.instance_variable_get(:@available_ports)
|
|
described_class.instance_variable_set(:@available_ports, [])
|
|
expect(described_class.available_port).to be nil
|
|
described_class.instance_variable_set(:@available_ports, available_ports)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '.release' do
|
|
context 'when the port has been obtained earlier' do
|
|
it 'adds the port to the list of available ports' do
|
|
port = described_class.available_port
|
|
expect(described_class.instance_variable_get(:@available_ports)).not_to include(port)
|
|
described_class.release(port)
|
|
expect(described_class.instance_variable_get(:@available_ports)).to include(port)
|
|
end
|
|
end
|
|
|
|
context 'when the port has not been obtained earlier' do
|
|
it 'does not add the port to the list of available ports' do
|
|
port = described_class.instance_variable_get(:@available_ports).sample
|
|
expect { described_class.release(port) }.not_to change { described_class.instance_variable_get(:@available_ports).length }
|
|
end
|
|
end
|
|
|
|
context 'when the port is not included in the port range' do
|
|
it 'does not add the port to the list of available ports' do
|
|
port = nil
|
|
expect { described_class.release(port) }.not_to change { described_class.instance_variable_get(:@available_ports).length }
|
|
end
|
|
end
|
|
end
|
|
end
|