2e2c2fad56
This conversion is done by Transpec 1.10.2 with the following command: transpec * 46 conversions from: obj.should to: expect(obj).to * 20 conversions from: obj.stub(:message) to: allow(obj).to receive(:message) * 10 conversions from: == expected to: eq(expected) * 6 conversions from: obj.should_receive(:message) to: expect(obj).to receive(:message) * 5 conversions from: obj.should_not to: expect(obj).not_to * 5 conversions from: Klass.any_instance.stub(:message) { |arg| } to: Klass.any_instance.stub(:message) { |instance, arg| } * 5 conversions from: Klass.any_instance.stub(:message) to: allow_any_instance_of(Klass).to receive(:message) * 1 conversion from: lambda { }.should to: expect { }.to
43 lines
1.2 KiB
Ruby
43 lines
1.2 KiB
Ruby
require 'unit_helper'
|
|
|
|
require 'tmpdir'
|
|
require 'vagrant-lxc/action/clear_forwarded_ports'
|
|
|
|
describe Vagrant::LXC::Action::ClearForwardedPorts do
|
|
let(:app) { double(:app, call: true) }
|
|
let(:env) { {machine: machine, ui: double(info: true)} }
|
|
let(:machine) { double(:machine, data_dir: data_dir) }
|
|
let!(:data_dir) { Pathname.new(Dir.mktmpdir) }
|
|
let(:pids_dir) { data_dir.join('pids') }
|
|
let(:pid) { 'a-pid' }
|
|
let(:pid_cmd) { 'redir' }
|
|
|
|
subject { described_class.new(app, env) }
|
|
|
|
before do
|
|
pids_dir.mkdir
|
|
pids_dir.join('redir_1234.pid').open('w') { |f| f.write(pid) }
|
|
subject.stub(system: true, :` => pid_cmd)
|
|
subject.call(env)
|
|
end
|
|
|
|
after { FileUtils.rm_rf data_dir.to_s }
|
|
|
|
it 'removes all files under pid directory' do
|
|
expect(Dir[pids_dir.to_s + "/redir_*.pid"]).to be_empty
|
|
end
|
|
|
|
context 'with a valid redir pid' do
|
|
it 'kills known processes' do
|
|
expect(subject).to have_received(:system).with("pkill -TERM -P #{pid}")
|
|
end
|
|
end
|
|
|
|
context 'with an invalid pid' do
|
|
let(:pid_cmd) { 'sudo ls' }
|
|
|
|
it 'does not kill the process' do
|
|
expect(subject).not_to have_received(:system).with("pkill -TERM -P #{pid}")
|
|
end
|
|
end
|
|
end
|