summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/functional/libgfapi-python-tests.py4
-rw-r--r--test/unit/gluster/test_gfapi.py14
-rw-r--r--test/unit/gluster/test_utils.py4
3 files changed, 11 insertions, 11 deletions
diff --git a/test/functional/libgfapi-python-tests.py b/test/functional/libgfapi-python-tests.py
index 8c62685..cf269d3 100644
--- a/test/functional/libgfapi-python-tests.py
+++ b/test/functional/libgfapi-python-tests.py
@@ -19,9 +19,9 @@ from test import get_test_config
from ConfigParser import NoSectionError, NoOptionError
from uuid import uuid4
-from gluster.api import Stat
+from gluster.gfapi.api import Stat
from gluster.gfapi import File, Volume, DirEntry
-from gluster.exceptions import LibgfapiException, Error
+from gluster.gfapi.exceptions import LibgfapiException, Error
config = get_test_config()
if config:
diff --git a/test/unit/gluster/test_gfapi.py b/test/unit/gluster/test_gfapi.py
index 15ce061..4b58597 100644
--- a/test/unit/gluster/test_gfapi.py
+++ b/test/unit/gluster/test_gfapi.py
@@ -18,8 +18,8 @@ import math
import errno
from gluster.gfapi import File, Dir, Volume, DirEntry
-from gluster import api
-from gluster.exceptions import LibgfapiException
+from gluster.gfapi import api
+from gluster.gfapi.exceptions import LibgfapiException
from nose import SkipTest
from mock import Mock, MagicMock, patch
from contextlib import nested
@@ -483,7 +483,7 @@ class TestVolume(unittest.TestCase):
mock_glfs_creat = Mock()
mock_glfs_creat.return_value = 2
- with patch("gluster.api.glfs_creat", mock_glfs_creat):
+ with patch("gluster.gfapi.api.glfs_creat", mock_glfs_creat):
with File(self.vol.open("file.txt", os.O_CREAT, 0644)) as f:
self.assertTrue(isinstance(f, File))
self.assertEqual(mock_glfs_creat.call_count, 1)
@@ -849,7 +849,7 @@ class TestVolume(unittest.TestCase):
mock_glfs_open = Mock()
mock_glfs_open.return_value = 2
- with patch("gluster.api.glfs_open", mock_glfs_open):
+ with patch("gluster.gfapi.api.glfs_open", mock_glfs_open):
with File(self.vol.open("file.txt", os.O_WRONLY)) as f:
self.assertTrue(isinstance(f, File))
self.assertEqual(mock_glfs_open.call_count, 1)
@@ -864,14 +864,14 @@ class TestVolume(unittest.TestCase):
with self.vol.open("file.txt", os.O_WRONLY) as fd:
self.assertEqual(fd, None)
- with patch("gluster.api.glfs_open", mock_glfs_open):
+ with patch("gluster.gfapi.api.glfs_open", mock_glfs_open):
self.assertRaises(OSError, assert_open)
def test_open_direct_success(self):
mock_glfs_open = Mock()
mock_glfs_open.return_value = 2
- with patch("gluster.api.glfs_open", mock_glfs_open):
+ with patch("gluster.gfapi.api.glfs_open", mock_glfs_open):
f = File(self.vol.open("file.txt", os.O_WRONLY))
self.assertTrue(isinstance(f, File))
self.assertEqual(mock_glfs_open.call_count, 1)
@@ -882,7 +882,7 @@ class TestVolume(unittest.TestCase):
mock_glfs_open = Mock()
mock_glfs_open.return_value = None
- with patch("gluster.api.glfs_open", mock_glfs_open):
+ with patch("gluster.gfapi.api.glfs_open", mock_glfs_open):
self.assertRaises(OSError, self.vol.open, "file.txt", os.O_RDONLY)
def test_opendir_success(self):
diff --git a/test/unit/gluster/test_utils.py b/test/unit/gluster/test_utils.py
index 446bcd9..e58e225 100644
--- a/test/unit/gluster/test_utils.py
+++ b/test/unit/gluster/test_utils.py
@@ -10,8 +10,8 @@
import unittest
-from gluster import utils
-from gluster.exceptions import VolumeNotMounted
+from gluster.gfapi import utils
+from gluster.gfapi.exceptions import VolumeNotMounted
class TestUtils(unittest.TestCase):