You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ao...@apache.org on 2014/01/02 18:26:29 UTC

git commit: AMARI-4210. Unittests for Link resource and all it's attributes (aonishuk)

Updated Branches:
  refs/heads/trunk 67bc85546 -> b4ad188e1


AMARI-4210. Unittests for Link resource and all it's attributes
(aonishuk)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/b4ad188e
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/b4ad188e
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/b4ad188e

Branch: refs/heads/trunk
Commit: b4ad188e14dff92670cabea0a2768927118cea78
Parents: 67bc855
Author: Andrew Onischuk <ao...@hortonworks.com>
Authored: Thu Jan 2 09:25:37 2014 -0800
Committer: Andrew Onischuk <ao...@hortonworks.com>
Committed: Thu Jan 2 09:25:37 2014 -0800

----------------------------------------------------------------------
 .../resource_management/TestLinkResource.py     | 148 +++++++++++++++++++
 1 file changed, 148 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/b4ad188e/ambari-agent/src/test/python/resource_management/TestLinkResource.py
----------------------------------------------------------------------
diff --git a/ambari-agent/src/test/python/resource_management/TestLinkResource.py b/ambari-agent/src/test/python/resource_management/TestLinkResource.py
new file mode 100644
index 0000000..c3a1a31
--- /dev/null
+++ b/ambari-agent/src/test/python/resource_management/TestLinkResource.py
@@ -0,0 +1,148 @@
+'''
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you 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.
+'''
+
+from unittest import TestCase
+from mock.mock import patch, MagicMock
+
+from resource_management.core import Environment, Fail
+from resource_management.core.system import System
+from resource_management.core.resources.system import Link
+
+import os
+
+@patch.object(System, "platform", new = 'redhat')
+class TestLinkResource(TestCase):
+
+  @patch.object(os.path, "realpath")
+  @patch.object(os.path, "lexists")
+  @patch.object(os.path, "islink")
+  @patch.object(os, "unlink")
+  @patch.object(os, "symlink")
+  def test_action_create_relink(self, symlink_mock, unlink_mock, 
+                         islink_mock, lexists_mock,
+                         realmock):
+    lexists_mock.return_value = True
+    realmock.return_value = "/old_to_link_path"
+    islink_mock.return_value = True
+    with Environment('/') as env:
+      Link("/some_path",
+           to = "/a/b/link_to_path"
+      )
+      
+    unlink_mock.assert_called_with("/some_path")
+    symlink_mock.assert_called_with("/a/b/link_to_path", "/some_path")
+    
+  @patch.object(os.path, "realpath")
+  @patch.object(os.path, "lexists")
+  @patch.object(os.path, "islink")
+  def test_action_create_failed_due_to_file_exists(self, islink_mock, 
+                         lexists_mock, realmock):
+    lexists_mock.return_value = True
+    realmock.return_value = "/old_to_link_path"
+    islink_mock.return_value = False
+    with Environment('/') as env:
+      try:
+        Link("/some_path",
+             to = "/a/b/link_to_path"
+        )
+        
+        self.fail("Must fail when directory or file with name /some_path exist")
+      except Fail as e:
+        self.assertEqual("LinkProvider[Link['/some_path']] trying to create a symlink with the same name as an existing file or directory",
+                       str(e))
+        
+  @patch.object(os.path, "lexists")
+  @patch.object(os, "symlink")
+  def test_action_create_symlink_clean_create(self, symlink_mock, lexists_mock):
+    lexists_mock.return_value = False
+    
+    with Environment('/') as env:
+      Link("/some_path",
+           to = "/a/b/link_to_path"
+      )
+      
+    symlink_mock.assert_called_with("/a/b/link_to_path", "/some_path")
+    
+  @patch.object(os.path, "isdir")
+  @patch.object(os.path, "exists")  
+  @patch.object(os.path, "lexists")
+  @patch.object(os, "link")
+  def test_action_create_hardlink_clean_create(self, link_mock, lexists_mock,
+                                        exists_mock, isdir_mock):
+    lexists_mock.return_value = False
+    exists_mock.return_value = True
+    isdir_mock.return_value = False
+    
+    with Environment('/') as env:
+      Link("/some_path",
+           hard = True,
+           to = "/a/b/link_to_path"
+      )
+      
+    link_mock.assert_called_with("/a/b/link_to_path", "/some_path")
+    
+  @patch.object(os.path, "exists")  
+  @patch.object(os.path, "lexists")
+  def test_action_create_hardlink_target_doesnt_exist(self, lexists_mock,
+                                        exists_mock):
+    lexists_mock.return_value = False
+    exists_mock.return_value = False
+    
+    with Environment('/') as env:
+      try:
+        Link("/some_path",
+             hard = True,
+             to = "/a/b/link_to_path"
+        )  
+        self.fail("Must fail when target directory do doenst exist")
+      except Fail as e:
+        self.assertEqual("Failed to apply Link['/some_path'], linking to nonexistent location /a/b/link_to_path",
+                       str(e))
+        
+  @patch.object(os.path, "isdir") 
+  @patch.object(os.path, "exists")  
+  @patch.object(os.path, "lexists")
+  def test_action_create_hardlink_target_is_dir(self, lexists_mock,
+                                        exists_mock, isdir_mock):
+    lexists_mock.return_value = False
+    exists_mock.return_value = True
+    isdir_mock = True
+    
+    with Environment('/') as env:
+      try:
+        Link("/some_path",
+             hard = True,
+             to = "/a/b/link_to_path"
+        )  
+        self.fail("Must fail when hardlinking to directory")
+      except Fail as e:
+        self.assertEqual("Failed to apply Link['/some_path'], cannot create hard link to a directory (/a/b/link_to_path)",
+                       str(e)) 
+        
+  @patch.object(os, "unlink")
+  @patch.object(os.path, "exists")
+  def test_action_delete(self, exists_mock, unlink_mock):     
+    exists_mock.return_value = True
+    
+    with Environment('/') as env:
+      Link("/some_path",
+           action = "delete"
+      )    
+    unlink_mock.assert_called_with("/some_path")
+      
+