summaryrefslogtreecommitdiffstats
path: root/testsuite/Testsrc/Testlib/TestClient/TestTools/TestPOSIX/TestHardlink.py
blob: 3159b69dff6dc00698d7ecadf3cd1df05badebbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import os
import sys
import copy
import lxml.etree
from mock import Mock, MagicMock, patch
from Bcfg2.Client.Tools.POSIX.Hardlink import *

# add all parent testsuite directories to sys.path to allow (most)
# relative imports in python 2.4
path = os.path.dirname(__file__)
while path != "/":
    if os.path.basename(path).lower().startswith("test"):
        sys.path.append(path)
    if os.path.basename(path) == "testsuite":
        break
    path = os.path.dirname(path)
from Testbase import TestPOSIXLinkTool
from common import *


class TestPOSIXHardlink(TestPOSIXLinkTool):
    test_obj = POSIXHardlink

    @patch("os.path.samefile")
    def test__verify(self, mock_samefile):
        entry = lxml.etree.Element("Path", name="/test", type="hardlink",
                                   to="/dest")
        ptool = self.get_obj()
        self.assertEqual(ptool._verify(entry), mock_samefile.return_value)
        self.assertItemsEqual(mock_samefile.call_args[0],
                              [entry.get("name"), entry.get("to")])

    @patch("os.link")
    def test__link(self, mock_link):
        entry = lxml.etree.Element("Path", name="/test", type="hardlink",
                                   to="/dest")
        ptool = self.get_obj()
        self.assertEqual(ptool._link(entry), mock_link.return_value)
        mock_link.assert_called_with(entry.get("to"), entry.get("name"))