Include test coverage on linux host nfs plugin
This commit is contained in:
parent
90db9c95b8
commit
d89924afef
|
@ -0,0 +1,144 @@
|
|||
require_relative "../../../../base"
|
||||
require_relative "../../../../../../plugins/hosts/linux/cap/nfs"
|
||||
require_relative "../../../../../../lib/vagrant/util"
|
||||
|
||||
describe VagrantPlugins::HostLinux::Cap::NFS do
|
||||
|
||||
include_context "unit"
|
||||
|
||||
let(:caps) do
|
||||
VagrantPlugins::HostLinux::Plugin
|
||||
.components
|
||||
.host_capabilities[:linux]
|
||||
end
|
||||
|
||||
let(:tmp_exports_path) do
|
||||
@tmp_exports ||= temporary_file
|
||||
end
|
||||
let(:exports_path){ VagrantPlugins::HostLinux::Cap::NFS::NFS_EXPORTS_PATH }
|
||||
let(:env){ double(:env) }
|
||||
let(:ui){ double(:ui) }
|
||||
let(:host){ double(:host) }
|
||||
|
||||
before do
|
||||
@original_exports_path = VagrantPlugins::HostLinux::Cap::NFS::NFS_EXPORTS_PATH
|
||||
VagrantPlugins::HostLinux::Cap::NFS.send(:remove_const, :NFS_EXPORTS_PATH)
|
||||
VagrantPlugins::HostLinux::Cap::NFS.const_set(:NFS_EXPORTS_PATH, tmp_exports_path.to_s)
|
||||
end
|
||||
|
||||
after do
|
||||
VagrantPlugins::HostLinux::Cap::NFS.send(:remove_const, :NFS_EXPORTS_PATH)
|
||||
VagrantPlugins::HostLinux::Cap::NFS.const_set(:NFS_EXPORTS_PATH, @original_exports_path)
|
||||
File.unlink(tmp_exports_path.to_s) if File.exist?(tmp_exports_path.to_s)
|
||||
@tmp_exports = nil
|
||||
@env = nil
|
||||
end
|
||||
|
||||
describe ".nfs_export" do
|
||||
before do
|
||||
allow(env).to receive(:host).and_return(host)
|
||||
allow(host).to receive(:capability).with(:nfs_apply_command).and_return("/bin/true")
|
||||
allow(host).to receive(:capability).with(:nfs_check_command).and_return("/bin/true")
|
||||
allow(host).to receive(:capability).with(:nfs_start_command).and_return("/bin/true")
|
||||
allow(ui).to receive(:info)
|
||||
end
|
||||
|
||||
let(:cap){ caps.get(:nfs_export) }
|
||||
|
||||
it "should export new entries" do
|
||||
cap.nfs_export(env, ui, SecureRandom.uuid, ["127.0.0.1"], "tmp" => {:hostpath => "/tmp"})
|
||||
exports_content = File.read(exports_path)
|
||||
expect(exports_content).to match(/\/tmp.*127\.0\.0\.1/)
|
||||
end
|
||||
|
||||
it "should not remove existing entries" do
|
||||
File.write(exports_path, "/custom/directory hostname1(rw,sync,no_subtree_check)")
|
||||
cap.nfs_export(env, ui, SecureRandom.uuid, ["127.0.0.1"], "tmp" => {:hostpath => "/tmp"})
|
||||
exports_content = File.read(exports_path)
|
||||
expect(exports_content).to match(/\/tmp.*127\.0\.0\.1/)
|
||||
expect(exports_content).to match(/\/custom\/directory.*hostname1/)
|
||||
end
|
||||
|
||||
it "should remove entries no longer valid" do
|
||||
valid_id = SecureRandom.uuid
|
||||
other_id = SecureRandom.uuid
|
||||
content =<<-EOH
|
||||
# VAGRANT-BEGIN: #{Process.uid} #{other_id}
|
||||
"/tmp" 127.0.0.1(rw,no_subtree_check,all_squash,anonuid=,anongid=,fsid=)
|
||||
# VAGRANT-END: #{Process.uid} #{other_id}
|
||||
# VAGRANT-BEGIN: #{Process.uid} #{valid_id}
|
||||
"/var" 127.0.0.1(rw,no_subtree_check,all_squash,anonuid=,anongid=,fsid=)
|
||||
# VAGRANT-END: #{Process.uid} #{valid_id}
|
||||
EOH
|
||||
File.write(exports_path, content)
|
||||
cap.nfs_export(env, ui, valid_id, ["127.0.0.1"], "home" => {:hostpath => "/home"})
|
||||
exports_content = File.read(exports_path)
|
||||
expect(exports_content).to include("/home")
|
||||
expect(exports_content).to include("/tmp")
|
||||
expect(exports_content).not_to include("/var")
|
||||
end
|
||||
end
|
||||
|
||||
describe ".nfs_prune" do
|
||||
|
||||
let(:cap){ caps.get(:nfs_prune) }
|
||||
|
||||
before do
|
||||
allow(ui).to receive(:info)
|
||||
end
|
||||
|
||||
it "should remove entries no longer valid" do
|
||||
invalid_id = SecureRandom.uuid
|
||||
valid_id = SecureRandom.uuid
|
||||
content =<<-EOH
|
||||
# VAGRANT-BEGIN: #{Process.uid} #{invalid_id}
|
||||
"/tmp" 127.0.0.1(rw,no_subtree_check,all_squash,anonuid=,anongid=,fsid=)
|
||||
# VAGRANT-END: #{Process.uid} #{invalid_id}
|
||||
# VAGRANT-BEGIN: #{Process.uid} #{valid_id}
|
||||
"/var" 127.0.0.1(rw,no_subtree_check,all_squash,anonuid=,anongid=,fsid=)
|
||||
# VAGRANT-END: #{Process.uid} #{valid_id}
|
||||
EOH
|
||||
File.write(exports_path, content)
|
||||
cap.nfs_prune(env, ui, [valid_id])
|
||||
exports_content = File.read(exports_path)
|
||||
expect(exports_content).to include(valid_id)
|
||||
expect(exports_content).not_to include(invalid_id)
|
||||
expect(exports_content).to include("/var")
|
||||
expect(exports_content).not_to include("/tmp")
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
describe ".nfs_write_exports" do
|
||||
|
||||
before do
|
||||
File.write(tmp_exports_path, "original content")
|
||||
end
|
||||
|
||||
it "should write updated contents to file" do
|
||||
described_class.nfs_write_exports("new content")
|
||||
exports_content = File.read(exports_path)
|
||||
expect(exports_content).to include("new content")
|
||||
expect(exports_content).not_to include("original content")
|
||||
end
|
||||
|
||||
it "should only update contents if different" do
|
||||
original_stat = File.stat(exports_path)
|
||||
described_class.nfs_write_exports("original content")
|
||||
updated_stat = File.stat(exports_path)
|
||||
expect(original_stat).to eq(updated_stat)
|
||||
end
|
||||
|
||||
it "should retain existing file permissions" do
|
||||
File.chmod(0600, exports_path)
|
||||
original_stat = File.stat(exports_path)
|
||||
described_class.nfs_write_exports("original content")
|
||||
updated_stat = File.stat(exports_path)
|
||||
expect(original_stat.mode).to eq(updated_stat.mode)
|
||||
end
|
||||
|
||||
it "should retain existing file owner and group IDs" do
|
||||
pending("investigate using a simulated FS to test")
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue