From: ShaoHe Feng <shaohef(a)linux.vnet.ibm.com>
The plugins tests base on the sample plugin.
So we should skip the tests when disable sample plugin
Also hack the auth by utils.patch_auth for some protected http API request.
Signed-off-by: ShaoHe Feng <shaohef(a)linux.vnet.ibm.com>
---
tests/test_plugin.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/test_plugin.py b/tests/test_plugin.py
index 7773a0e..1bd1805 100644
--- a/tests/test_plugin.py
+++ b/tests/test_plugin.py
@@ -27,6 +27,7 @@
import kimchi.mockmodel
import kimchi.server
+from kimchi.utils import get_enabled_plugins
import utils
@@ -40,6 +41,7 @@
def setUpModule():
global test_server, model, host, port, ssl_port
+ utils.patch_auth()
model = kimchi.mockmodel.MockModel('/tmp/obj-store-test')
host = '127.0.0.1'
port = utils.get_free_port('http')
@@ -53,6 +55,9 @@ def tearDownModule():
os.unlink('/tmp/obj-store-test')
+(a)unittest.skipUnless(
+ 'sample' in [plugin for plugin, _config in get_enabled_plugins()],
+ 'sample plugin is not enabled, skip this test!')
class PluginTests(unittest.TestCase):
def setUp(self):
--
1.9.3