summaryrefslogtreecommitdiff
path: root/spec/functional/resource
diff options
context:
space:
mode:
authorLamont Granquist <lamont@getchef.com>2014-05-23 00:19:46 +0000
committerLamont Granquist <lamont@scriptkiddie.org>2014-05-29 10:30:28 -0700
commitee54a3788821b70f6e9ad3582e858a8e816551e8 (patch)
treea5bd4c891dcdaa6d7c87eb27ae5f89a6a5b83d60 /spec/functional/resource
parent834cd7d90b9c7934080103c7bb3dbdc0b57a2abd (diff)
downloadchef-ee54a3788821b70f6e9ad3582e858a8e816551e8.tar.gz
fixes and func tests
Diffstat (limited to 'spec/functional/resource')
-rw-r--r--spec/functional/resource/mount_spec.rb25
1 files changed, 14 insertions, 11 deletions
diff --git a/spec/functional/resource/mount_spec.rb b/spec/functional/resource/mount_spec.rb
index 199ccbd37e..caa139d029 100644
--- a/spec/functional/resource/mount_spec.rb
+++ b/spec/functional/resource/mount_spec.rb
@@ -21,7 +21,7 @@ require 'chef/mixin/shell_out'
require 'tmpdir'
# run this test only for following platforms.
-include_flag = !(['ubuntu', 'centos', 'aix'].include?(ohai[:platform]))
+include_flag = !(['ubuntu', 'centos', 'aix', 'solaris2'].include?(ohai[:platform]))
describe Chef::Resource::Mount, :requires_root, :external => include_flag do
@@ -52,6 +52,9 @@ describe Chef::Resource::Mount, :requires_root, :external => include_flag do
end
fstype = "tmpfs"
shell_out!("mkfs -q #{device} 512")
+ when "solaris2"
+ device = "swap"
+ fstype = "tmpfs"
else
end
[device, fstype]
@@ -71,11 +74,10 @@ describe Chef::Resource::Mount, :requires_root, :external => include_flag do
end
# platform specific validations.
- def mount_should_exists(mount_point, device, fstype = nil, options = nil)
+ def mount_should_exist(mount_point, device, fstype = nil, options = nil)
validation_cmd = "mount | grep #{mount_point} | grep #{device} "
validation_cmd << " | grep #{fstype} " unless fstype.nil?
validation_cmd << " | grep #{options.join(',')} " unless options.nil? || options.empty?
- puts "validation_cmd = #{validation_cmd}"
expect(shell_out(validation_cmd).exitstatus).to eq(0)
end
@@ -87,6 +89,8 @@ describe Chef::Resource::Mount, :requires_root, :external => include_flag do
case ohai[:platform]
when 'aix'
mount_config = "/etc/filesystems"
+ when 'solaris2'
+ mount_config = "/etc/vfstab"
else
mount_config = "/etc/fstab"
end
@@ -119,7 +123,7 @@ describe Chef::Resource::Mount, :requires_root, :external => include_flag do
provider
end
- def current_resource
+ let(:current_resource) do
provider.load_current_resource
provider.current_resource
end
@@ -138,7 +142,6 @@ describe Chef::Resource::Mount, :requires_root, :external => include_flag do
end
end
end
-
end
after(:all) do
@@ -156,28 +159,28 @@ describe Chef::Resource::Mount, :requires_root, :external => include_flag do
current_resource.mounted.should be_false
new_resource.run_action(:mount)
new_resource.should be_updated
- mount_should_exists(new_resource.mount_point, new_resource.device)
+ mount_should_exist(new_resource.mount_point, new_resource.device)
end
-
end
- describe "when the filesystem should be remounted and the resource supports remounting" do
+ # don't run the remount tests on solaris2 (tmpfs does not support remount)
+ describe "when the filesystem should be remounted and the resource supports remounting", :external => ohai[:platform] == "solaris2" do
it "should remount the filesystem if it is mounted" do
new_resource.run_action(:mount)
- mount_should_exists(new_resource.mount_point, new_resource.device)
+ mount_should_exist(new_resource.mount_point, new_resource.device)
new_resource.supports[:remount] = true
new_resource.options "rw,log=NULL" if ohai[:platform] == 'aix'
new_resource.run_action(:remount)
- mount_should_exists(new_resource.mount_point, new_resource.device, nil, (ohai[:platform] == 'aix') ? new_resource.options : nil)
+ mount_should_exist(new_resource.mount_point, new_resource.device, nil, (ohai[:platform] == 'aix') ? new_resource.options : nil)
end
end
describe "when the target state is a unmounted filesystem" do
it "should umount the filesystem if it is mounted" do
new_resource.run_action(:mount)
- mount_should_exists(new_resource.mount_point, new_resource.device)
+ mount_should_exist(new_resource.mount_point, new_resource.device)
new_resource.run_action(:umount)
mount_should_not_exists(new_resource.mount_point)