Merge pull request #10645 from briancain/expand-paths-on-compare-docker

Expand paths on synced folder compare with docker provider
This commit is contained in:
Brian Cain 2019-02-05 15:15:42 -08:00 committed by GitHub
commit ac6dc0670d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 96 additions and 3 deletions

View File

@ -32,14 +32,18 @@ module VagrantPlugins
fs.each do |_, data|
invalid = false
old = existing.delete(data[:guestpath])
invalid = true if !old
if !old
invalid = true
else
old = File.expand_path(old)
end
if !invalid && old
invalid = true if old != data[:hostpath]
invalid = true if old != File.expand_path(data[:hostpath])
end
if invalid
invalids[data[:guestpath]] = data[:hostpath]
invalids[File.expand_path(data[:guestpath])] = File.expand_path(data[:hostpath])
end
end
end

View File

@ -0,0 +1,89 @@
require_relative "../../../../base"
require_relative "../../../../../../plugins/providers/docker/action/compare_synced_folders"
describe VagrantPlugins::DockerProvider::Action::CompareSyncedFolders do
include_context "unit"
include_context "virtualbox"
let(:sandbox) { isolated_environment }
let(:iso_env) do
# We have to create a Vagrantfile so there is a root path
sandbox.vagrantfile("")
sandbox.create_vagrant_env
end
let(:machine) do
iso_env.machine(iso_env.machine_names[0], :virtualbox).tap do |m|
allow(m.provider).to receive(:driver).and_return(driver)
end
end
let(:env) {{ machine: machine, ui: machine.ui, root_path: Pathname.new(".") }}
let(:app) { lambda { |*args| }}
let(:driver) { double("driver") }
subject { described_class.new(app, env) }
after do
sandbox.close
end
describe "#call" do
let(:cached) { {:docker=>{"/vagrant"=>{:guestpath=>"/vagrant", :hostpath=>"/home/hashicorp/code/vagrant-sandbox", :disabled=>false, :__vagrantfile=>true}}} }
let(:fresh) { {:docker=>{"/vagrant"=>{:guestpath=>"/vagrant", :hostpath=>".", :disabled=>false, :__vagrantfile=>true}}} }
let(:existing) { {"/vagrant"=>"/home/hashicorp/code/vagrant-sandbox"} }
it "calls the next action in the chain" do
allow(machine.provider).to receive(:host_vm?).and_return(false)
called = false
app = ->(*args) { called = true }
action = described_class.new(app, env)
action.call(env)
expect(called).to eq(true)
end
context "invalid or existing entries" do
let(:cached) { {:docker=>{"/vagrant"=>{:guestpath=>"/not-real", :hostpath=>"/home/hashicorp/code/vagrant-sandbox", :disabled=>false, :__vagrantfile=>true}}} }
let(:fresh) { {:docker=>{"/vagrant"=>{:guestpath=>"/vagrant", :hostpath=>".", :disabled=>false, :__vagrantfile=>true}}} }
it "shows a warning" do
allow(machine.provider).to receive(:host_vm?).and_return(false)
called = false
app = ->(*args) { called = true }
action = described_class.new(app, env)
expect(action).to receive(:synced_folders).
with(machine, cached: true).and_return(cached)
expect(action).to receive(:synced_folders).
with(machine).and_return(fresh)
expect(machine.ui).to receive(:warn)
action.call(env)
expect(called).to eq(true)
end
end
it "shows no warning comparing synced folders" do
allow(machine.provider).to receive(:host_vm?).and_return(false)
called = false
app = ->(*args) { called = true }
action = described_class.new(app, env)
expect(action).to receive(:synced_folders).
with(machine, cached: true).and_return(cached)
expect(action).to receive(:synced_folders).
with(machine).and_return(fresh)
action.call(env)
expect(machine.ui).not_to receive(:warn)
expect(called).to eq(true)
end
end
end