Files
vagrant-libvirt/spec/unit/action/clean_machine_folder_spec.rb
Darragh Bailey 18ebb9d9ed Enable frozen string across project (#1319)
Turn on frozen string support in all files by using a comment to avoid
enabling across dependencies where it may not work.

Fixes: #1177
2021-06-30 13:27:03 +01:00

61 lines
1.7 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
require 'support/sharedcontext'
require 'vagrant-libvirt/action/clean_machine_folder'
describe VagrantPlugins::ProviderLibvirt::Action::CleanMachineFolder do
subject { described_class.new(app, env) }
include_context 'unit'
describe '#call' do
before do
FileUtils.touch(File.join(machine.data_dir, "box.meta"))
end
context 'with default options' do
it 'should verbosely remove the folder' do
expect(ui).to receive(:info).with('Deleting the machine folder')
expect(subject.call(env)).to be_nil
expect(File.exists?(machine.data_dir)).to eq(true)
expect(Dir.entries(machine.data_dir)).to match_array([".", ".."])
end
end
context 'when the data dir doesn\'t exist' do
before do
Dir.mktmpdir do |d|
# returns a temporary directory that has been already deleted when running
expect(machine).to receive(:data_dir).and_return(d.to_s).exactly(3).times
end
end
it 'should remove the folder' do
expect(ui).to receive(:info).with('Deleting the machine folder')
expect(subject.call(env)).to be_nil
expect(File.exists?(machine.data_dir)).to eq(true)
expect(Dir.entries(machine.data_dir)).to match_array([".", ".."])
end
end
context 'with quiet option enabled' do
subject { described_class.new(app, env, {:quiet => true}) }
it 'should quietly remove the folder' do
expect(ui).to_not receive(:info).with('Deleting the machine folder')
expect(subject.call(env)).to be_nil
expect(File.exists?(machine.data_dir)).to eq(true)
expect(Dir.entries(machine.data_dir)).to match_array([".", ".."])
end
end
end
end