Sha256: e8c59d901b23f26753ed73caf0d759aad9a32caffe9835920de92c35c6e70b67

Contents?: true

Size: 1 KB

Versions: 30

Compression:

Stored size: 1 KB

Contents

require_relative "../../../../base"

describe "VagrantPlugins::GuestRedHat::Cap::Flavor" do
  let(:caps) do
    VagrantPlugins::GuestRedHat::Plugin
      .components
      .guest_capabilities[:redhat]
  end

  let(:machine) { double("machine") }
  let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) }

  before do
    allow(machine).to receive(:communicate).and_return(comm)
  end

  after do
    comm.verify_expectations!
  end

  describe ".flavor" do
    let(:cap) { caps.get(:flavor) }

    {
      "CentOS Linux 2.4 release 7" => :rhel_7,
      "Red Hat Enterprise Linux release 7" => :rhel_7,
      "Scientific Linux release 7" => :rhel_7,
      "CloudLinux release 7.2 (Valeri Kubasov)" => :rhel_7,

      "CentOS" => :rhel,
      "RHEL 6" => :rhel,
      "banana" => :rhel,
    }.each do |str, expected|
      it "returns #{expected} for #{str}" do
        comm.stub_command("cat /etc/redhat-release", stdout: str)
        expect(cap.flavor(machine)).to be(expected)
      end
    end
  end
end

Version data entries

30 entries across 26 versions & 5 rubygems

Version Path
vagrant-unbundled-1.9.5.1 test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-unbundled-1.9.1.1 test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/guests/redhat/cap/flavor_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/guests/redhat/cap/flavor_test.rb