From 0682f3b48c06a5bf53f305dd77250cdb796693a5 Mon Sep 17 00:00:00 2001 From: Timothy Asir Date: Tue, 1 Apr 2014 17:31:44 +0530 Subject: Add gluster process monitoring plugin This helps monitoring gluster related process such as glusterd, glusterfsd, gluster self heal process, nfs and also helps to monitor other running services Change-Id: I8c6f252270a847e7ff007c358125a9310525f201 Signed-off-by: Timothy Asir --- tests/test_gluster_proc.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 tests/test_gluster_proc.py (limited to 'tests/test_gluster_proc.py') diff --git a/tests/test_gluster_proc.py b/tests/test_gluster_proc.py new file mode 100644 index 0000000..36a60fd --- /dev/null +++ b/tests/test_gluster_proc.py @@ -0,0 +1,42 @@ +# +# Copyright 2014 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# +# Refer to the README and COPYING files for full details of the license +# + +from testrunner import PluginsTestCase as TestCaseBase +from plugins import check_proc_status as gProc +from plugins import nscautils +from glusternagios import utils +import check_proc_test_data as gData + + +class TestProc(TestCaseBase): + def _maskGetoutputSuccess(self, val): + return 0, "PROCS OK:", "" + + def _maskGetoutputCritical(self, val): + return 0, "PROCS CRITICAL:", "" + + def _maskSendToNsca(self, hostName, service, status, msg): + return service, status, msg + + def test_Nfs(self): + nscautils.send_to_nsca = self._maskSendToNsca + utils.execCmd = self._maskGetoutputCritical + + assert(gProc.sendNfsStatus("10.70.43.33", gData.nfsEnabled1) == None) -- cgit