Sha256: 87dc36810f0338d2400a0e89eb493236f74735f03da7afb7a01daa2c70ab5f21

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

require_relative '../../spec_helper'

require 'vagrant-libvirt/action/remove_libvirt_image'

describe VagrantPlugins::ProviderLibvirt::Action::RemoveLibvirtImage do
  subject { described_class.new(app, env) }

  include_context 'unit'

  let(:box) { instance_double(::Vagrant::Box) }

  describe '#call' do
    before do
      env[:box_removed] = box
      allow(ui).to receive(:info)
    end

    context 'when called with libvirt box removed' do
      before do
        expect(box).to receive(:provider).and_return(:libvirt)
      end

      it 'should notify the user about limited removal' do
        expect(ui).to receive(:info).with(/Vagrant-libvirt plugin removed box/)
        expect(subject.call(env)).to be_nil
      end
    end

    context 'when called with any other provider box' do
      before do
        expect(box).to receive(:provider).and_return(:virtualbox)
      end

      it 'call the next middle ware immediately' do
        expect(ui).to_not receive(:info).with(/Vagrant-libvirt plugin removed box/)
        expect(subject.call(env)).to be_nil
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
vagrant-libvirt-0.12.2 spec/unit/action/remove_libvirt_image_spec.rb
vagrant-libvirt-0.12.1 spec/unit/action/remove_libvirt_image_spec.rb
vagrant-libvirt-0.12.0 spec/unit/action/remove_libvirt_image_spec.rb
vagrant-libvirt-0.11.2 spec/unit/action/remove_libvirt_image_spec.rb
vagrant-libvirt-0.11.1 spec/unit/action/remove_libvirt_image_spec.rb