44 lines
1.4 KiB
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require File.expand_path("../../../../base", __FILE__)
require Vagrant.source_root.join("plugins/provisioners/podman/provisioner")
describe VagrantPlugins::PodmanProvisioner::Installer do
include_context "unit"
subject { described_class.new(machine) }
let(:iso_env) do
# We have to create a Vagrantfile so there is a root path
env = isolated_environment
env.vagrantfile("")
env.create_vagrant_env
end
let(:machine) { iso_env.machine(iso_env.machine_names[0], :dummy) }
let(:communicator) { double("comm") }
let(:install_mode) { :kubic }
before do
allow(machine).to receive(:communicate).and_return(communicator)
allow(communicator).to receive(:ready?).and_return(true)
allow(communicator).to receive(:test).with(/Linux/).and_return(true)
end
describe "#ensure_installed" do
it "returns if podman capability not present" do
allow(machine).to receive_message_chain(:guest, :capability?).with(:podman_installed).and_return(false)
expect(subject.ensure_installed(install_mode)).to eq(false)
end
it "does not install podman if already present" do
expect(communicator).to receive(:test).with(/podman/).and_return(true)
allow(communicator).to receive(:test).and_return(true)
expect(subject.ensure_installed(install_mode)).to eq(true)
end
end
end