summaryrefslogtreecommitdiffstats
path: root/test/functional/libgfapi-python-tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/libgfapi-python-tests.py')
-rw-r--r--test/functional/libgfapi-python-tests.py9
1 files changed, 9 insertions, 0 deletions
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)