summaryrefslogtreecommitdiff
path: root/spec/unit/provider/mount/windows_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/provider/mount/windows_spec.rb')
-rw-r--r--spec/unit/provider/mount/windows_spec.rb134
1 files changed, 134 insertions, 0 deletions
diff --git a/spec/unit/provider/mount/windows_spec.rb b/spec/unit/provider/mount/windows_spec.rb
new file mode 100644
index 0000000000..f173ebba22
--- /dev/null
+++ b/spec/unit/provider/mount/windows_spec.rb
@@ -0,0 +1,134 @@
+#
+# Author:: Doug MacEachern (<dougm@vmware.com>)
+# Copyright:: Copyright (c) 2010 VMware, Inc.
+# License:: Apache License, Version 2.0
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+require 'spec_helper'
+
+class Chef
+ class Util
+ class Windows
+ class NetUse
+ end
+ class Volume
+ end
+ end
+ end
+end
+
+GUID = "\\\\?\\Volume{578e72b5-6e70-11df-b5c5-000c29d4a7d9}\\"
+REMOTE = "\\\\server-name\\path"
+
+describe Chef::Provider::Mount::Windows do
+ before(:each) do
+ @node = Chef::Node.new
+ @events = Chef::EventDispatch::Dispatcher.new
+ @run_context = Chef::RunContext.new(@node, {}, @events)
+ @new_resource = Chef::Resource::Mount.new("X:")
+ @new_resource.device GUID
+ @current_resource = Chef::Resource::Mount.new("X:")
+ Chef::Resource::Mount.stub!(:new).and_return(@current_resource)
+
+ @net_use = mock("Chef::Util::Windows::NetUse")
+ Chef::Util::Windows::NetUse.stub!(:new).and_return(@net_use)
+ @vol = mock("Chef::Util::Windows::Volume")
+ Chef::Util::Windows::Volume.stub!(:new).and_return(@vol)
+
+ @provider = Chef::Provider::Mount::Windows.new(@new_resource, @run_context)
+ @provider.current_resource = @current_resource
+ end
+
+ describe "when loading the current resource" do
+ it "should set mounted true if the mount point is found" do
+ @vol.stub!(:device).and_return(@new_resource.device)
+ @current_resource.should_receive(:mounted).with(true)
+ @provider.load_current_resource
+ end
+
+ it "should set mounted false if the mount point is not found" do
+ @vol.stub!(:device).and_raise(ArgumentError)
+ @current_resource.should_receive(:mounted).with(false)
+ @provider.load_current_resource
+ end
+
+ describe "with a local device" do
+ before do
+ @new_resource.device GUID
+ @vol.stub!(:device).and_return(@new_resource.device)
+ @net_use.stub!(:device).and_raise(ArgumentError)
+ end
+
+ it "should determine the device is a volume GUID" do
+ @provider.should_receive(:is_volume).with(@new_resource.device).and_return(true)
+ @provider.load_current_resource
+ end
+ end
+
+ describe "with a remote device" do
+ before do
+ @new_resource.device REMOTE
+ @net_use.stub!(:device).and_return(@new_resource.device)
+ @vol.stub!(:device).and_raise(ArgumentError)
+ end
+
+ it "should determine the device is remote" do
+ @provider.should_receive(:is_volume).with(@new_resource.device).and_return(false)
+ @provider.load_current_resource
+ end
+ end
+
+ describe "when mounting a file system" do
+ before do
+ @new_resource.device GUID
+ @vol.stub!(:add)
+ @vol.stub!(:device).and_raise(ArgumentError)
+ @provider.load_current_resource
+ end
+
+ it "should mount the filesystem if it is not mounted" do
+ @vol.should_receive(:add).with(@new_resource.device)
+ @provider.mount_fs
+ end
+
+ it "should not mount the filesystem if it is mounted" do
+ @vol.should_not_receive(:add)
+ @current_resource.stub!(:mounted).and_return(true)
+ @provider.mount_fs
+ end
+ end
+
+ describe "when unmounting a file system" do
+ before do
+ @new_resource.device GUID
+ @vol.stub!(:delete)
+ @vol.stub!(:device).and_raise(ArgumentError)
+ @provider.load_current_resource
+ end
+
+ it "should umount the filesystem if it is mounted" do
+ @current_resource.stub!(:mounted).and_return(true)
+ @vol.should_receive(:delete)
+ @provider.umount_fs
+ end
+
+ it "should not umount the filesystem if it is not mounted" do
+ @current_resource.stub!(:mounted).and_return(false)
+ @vol.should_not_receive(:delete)
+ @provider.umount_fs
+ end
+ end
+ end
+end