From b125ff3e83283f231295873118ed7a170f4284d1 Mon Sep 17 00:00:00 2001 From: Prashanth Pai Date: Fri, 22 Dec 2017 17:14:10 +0530 Subject: Expose mounting over unix socket Change-Id: I17078b6d20372c3935f7bcd8c82f55f96096dd87 Signed-off-by: Prashanth Pai --- test/functional/libgfapi-python-tests.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test') diff --git a/test/functional/libgfapi-python-tests.py b/test/functional/libgfapi-python-tests.py index cf269d3..c209302 100644 --- a/test/functional/libgfapi-python-tests.py +++ b/test/functional/libgfapi-python-tests.py @@ -37,6 +37,8 @@ else: HOST = 'localhost' VOLNAME = 'test' +GLUSTERD_SOCK_FILE = "/var/run/glusterd.socket" + class BinFileOpsTest(unittest.TestCase): @@ -1150,3 +1152,10 @@ class TestVolumeInit(unittest.TestCase): # Unmount the volume vol.umount() self.assertFalse(vol.mounted) + + def test_unix_socket_mount(self): + vol = Volume(GLUSTERD_SOCK_FILE, VOLNAME, proto="unix") + vol.mount() + self.assertTrue(vol.mounted) + vol.umount() + self.assertFalse(vol.mounted) -- cgit