summaryrefslogtreecommitdiffstats
path: root/tests/test_memory.py
diff options
context:
space:
mode:
authorndarshan <dnarayan@redhat.com>2014-03-17 12:21:42 +0530
committerBala.FA <barumuga@redhat.com>2014-04-29 10:14:32 +0530
commit686b574d3c1e55a778088b58a1a2fc75ce72d280 (patch)
tree89e6335b46c42dcea1c66e80cd7500059856ffd5 /tests/test_memory.py
parentfcf78fd752dd24a8bb8b0bf8f62e7ba7ec0aac55 (diff)
plugins:Fix to handle sadf not accepting time range, test case addition
This patch handles the issue of sadf not accepting time range when used with -x (xml output) option(seen in version 9.0.4). Added unit-test for memory, cpu, swap, network plugins and refactored them. Change-Id: Ie7c2ecfbb38060f236a6faed606bce0aedd27d7a Signed-off-by: ndarshan <dnarayan@redhat.com> Reviewed-on: https://cuckoo.blr.redhat.com:8443/14 Reviewed-by: Bala FA <barumuga@redhat.com> Tested-by: Bala FA <barumuga@redhat.com>
Diffstat (limited to 'tests/test_memory.py')
-rw-r--r--tests/test_memory.py93
1 files changed, 93 insertions, 0 deletions
diff --git a/tests/test_memory.py b/tests/test_memory.py
new file mode 100644
index 0000000..fb02b5b
--- /dev/null
+++ b/tests/test_memory.py
@@ -0,0 +1,93 @@
+#
+# 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 memory
+import test_memory_dataFile
+
+
+class memoryTests(TestCaseBase):
+
+ def _showMemStatus_unknown_test(self):
+ w = 80
+ c = 90
+ actual = memory.showMemStat(
+ w, c,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_UNKNOWN_IP
+ )
+ self.assertEquals(
+ actual,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_UNKNOWN_OP
+ )
+
+ def _showMemStatus_ok_test(self):
+ w = 60
+ c = 70
+ actual = memory.showMemStat(
+ w, c,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_OK_IP
+ )
+ self.assertEquals(
+ actual,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_OK_OP
+ )
+
+ def _showMemStatus_warning_test(self):
+ w = 40
+ c = 60
+ actual = memory.showMemStat(
+ w, c,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_WARNING_IP
+ )
+ self.assertEquals(
+ actual,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_WARNING_OP
+ )
+
+ def _showMemStatus_critical_test(self):
+ w = 30
+ c = 40
+ actual = memory.showMemStat(
+ w, c,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_CRITICAL_IP
+ )
+ self.assertEquals(
+ actual,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_CRITICAL_OP
+ )
+
+ def _showMemStatus_exception_test(self):
+ w = 30
+ c = 40
+ actual = memory.showMemStat(
+ w, c,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_EXCEPTION_IP
+ )
+ self.assertEquals(
+ actual,
+ test_memory_dataFile.SHOW_MEMORY_STATUS_EXCEPTION_OP
+ )
+
+ def test_showMemStatus(self):
+ self._showMemStatus_unknown_test()
+ self._showMemStatus_ok_test()
+ self._showMemStatus_warning_test()
+ self._showMemStatus_critical_test()
+ self._showMemStatus_exception_test()