Sha256: d7fbdd02810cea42f7d77679b5d9e4b3e354acaf524f1d535c073951a184b09b

Contents?: true

Size: 1.18 KB

Versions: 34

Compression:

Stored size: 1.18 KB

Contents

require File.expand_path("../../../../../base", __FILE__)

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

describe VagrantPlugins::CommandSnapshot::Command::Push 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
    it "calls snapshot_save with a random snapshot name" do
      machine.id = "foo"

      expect(machine).to receive(:action) do |name, opts|
        expect(name).to eq(:snapshot_save)
        expect(opts[:snapshot_name]).to match(/^push_/)
      end

      expect(subject.execute).to eq(0)
    end

    it "doesn't snapshot a non-existent machine" do
      machine.id = nil

      expect(machine).to_not receive(:action)
      expect(subject.execute).to eq(0)
    end
  end
end

Version data entries

34 entries across 30 versions & 6 rubygems

Version Path
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-unbundled-1.9.5.1 test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-unbundled-1.9.1.1 test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-unbundled-1.8.1.2 test/unit/plugins/commands/snapshot/command/push_test.rb
vagrant-unbundled-1.8.1.1 test/unit/plugins/commands/snapshot/command/push_test.rb