File: command_test.rb

package info (click to toggle)
vagrant 2.2.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,072 kB
  • sloc: ruby: 80,731; sh: 369; makefile: 9; lisp: 1
file content (51 lines) | stat: -rw-r--r-- 1,264 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
require File.expand_path("../../../../base", __FILE__)

require Vagrant.source_root.join("plugins/commands/cap/command")

describe VagrantPlugins::CommandCap::Command do
  include_context "unit"

  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(:guest)   { double("guest") }
  let(:host)    { double("host") }
  let(:machine) { iso_env.machine(iso_env.machine_names[0], :dummy) }

  let(:argv)     { [] }

  subject { described_class.new(argv, iso_env) }

  before do
    allow(subject).to receive(:with_target_vms) { |&block| block.call machine }
  end

  describe "execute" do
    context "--check provider foo (exists)" do
      let(:argv) { ["--check", "provider", "foo"] }
      let(:cap) { Class.new }

      before do
        register_plugin do |p|
          p.provider_capability(:dummy, :foo) { cap }
        end
      end

      it "exits with 0 if it exists" do
        expect(subject.execute).to eq(0)
      end
    end

    context "--check provider foo (doesn't exists)" do
      let(:argv) { ["--check", "provider", "foo"] }

      it "exits with 1" do
        expect(subject.execute).to eq(1)
      end
    end
  end
end