Sha256: 04e271c241b6ce6aa6a96d44aa7cf2dcd11974ca8a1b06ffcae8f6dcc6d09c31

Contents?: true

Size: 1.05 KB

Versions: 22

Compression:

Stored size: 1.05 KB

Contents

require_relative "../base"

describe VagrantPlugins::ProviderVirtualBox::Action::PrepareNFSValidIds do
  include_context "unit"
  include_context "virtualbox"

  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) do
    iso_env.machine(iso_env.machine_names[0], :dummy).tap do |m|
      m.provider.stub(driver: driver)
    end
  end

  let(:env)    {{ machine: machine }}
  let(:app)    { lambda { |*args| }}
  let(:driver) { double("driver") }

  subject { described_class.new(app, env) }

  before do
    driver.stub(read_vms: {})
  end

  it "calls the next action in the chain" do
    called = false
    app = lambda { |*args| called = true }

    action = described_class.new(app, env)
    action.call(env)

    expect(called).to eq(true)
  end

  it "sets nfs_valid_ids" do
    hash = {"foo" => "1", "bar" => "4"}
    driver.stub(read_vms: hash)

    subject.call(env)

    expect(env[:nfs_valid_ids]).to eql(hash.values)
  end
end

Version data entries

22 entries across 19 versions & 5 rubygems

Version Path
vagrant-unbundled-1.9.7.1 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-unbundled-1.9.5.1 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-unbundled-1.9.1.1 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-unbundled-1.8.1.2 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-unbundled-1.8.1.1 test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-1cf2a8db4ccb/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/test/unit/plugins/providers/virtualbox/action/prepare_nfs_valid_ids_test.rb