From 686b574d3c1e55a778088b58a1a2fc75ce72d280 Mon Sep 17 00:00:00 2001 From: ndarshan Date: Mon, 17 Mar 2014 12:21:42 +0530 Subject: 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 Reviewed-on: https://cuckoo.blr.redhat.com:8443/14 Reviewed-by: Bala FA Tested-by: Bala FA --- tests/test_memory_dataFile.py | 90 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 tests/test_memory_dataFile.py (limited to 'tests/test_memory_dataFile.py') diff --git a/tests/test_memory_dataFile.py b/tests/test_memory_dataFile.py new file mode 100644 index 0000000..b58c218 --- /dev/null +++ b/tests/test_memory_dataFile.py @@ -0,0 +1,90 @@ +# +# 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 +# +SHOW_MEMORY_STATUS_UNKNOWN_IP = {} + +SHOW_MEMORY_STATUS_UNKNOWN_OP = \ + {'message': "MEMORY STATUS UNKNOWN", 'exit_status': 3} + +SHOW_MEMORY_STATUS_OK_IP = \ + {'date': '2014-03-10', 'utc': '1', + 'interval': '60', + 'time': '12:18:01', + 'memory': {'memused-percent': '46.97', + 'cached': '1519240', + 'unit': 'kB', 'per': 'second', + 'memfree': '4174044', 'inactive': '1495848', + 'commit-percent': '13.20', 'active': '1825260', + 'commit': '3805776', 'memused': '3696340', + 'buffers': '376704', 'dirty': '1696'}} + +SHOW_MEMORY_STATUS_OK_OP = \ + {'message': "OK- 46.97% used(3696340kB out of 7870384kB)|" + "Total=7870384kB;4722230;5509268;0;7870384 Used=3696340kB" + " Buffered=376704kB Cached=1519240kB", 'exit_status': 0} + +SHOW_MEMORY_STATUS_WARNING_IP = \ + {'date': '2014-03-10', 'utc': '1', + 'interval': '60', + 'time': '12:18:01', + 'memory': {'memused-percent': '46.97', + 'cached': '1519240', + 'unit': 'kB', 'per': 'second', + 'memfree': '4174044', 'inactive': '1495848', + 'commit-percent': '13.20', 'active': '1825260', + 'commit': '3805776', 'memused': '3696340', + 'buffers': '376704', 'dirty': '1696'}} + +SHOW_MEMORY_STATUS_WARNING_OP = \ + {'message': "WARNING- 46.97% used(3696340kB out of 7870384" + "kB)|Total=7870384kB;3148153;4722230;0;7870384 Used=36963" + "40kB Buffered=376704kB Cached=1519240kB", 'exit_status': 1} + +SHOW_MEMORY_STATUS_CRITICAL_IP = \ + {'date': '2014-03-10', 'utc': '1', + 'interval': '60', + 'time': '12:18:01', + 'memory': {'memused-percent': '46.97', + 'cached': '1519240', + 'unit': 'kB', 'per': 'second', + 'memfree': '4174044', 'inactive': '1495848', + 'commit-percent': '13.20', 'active': '1825260', + 'commit': '3805776', 'memused': '3696340', + 'buffers': '376704', 'dirty': '1696'}} + +SHOW_MEMORY_STATUS_CRITICAL_OP = \ + {'message': "CRITICAL- 46.97% used(3696340kB out of 7870384" + "kB)|Total=7870384kB;2361115;3148153;0;7870384 Used=369634" + "0kB Buffered=376704kB Cached=1519240kB", 'exit_status': 2} + +SHOW_MEMORY_STATUS_EXCEPTION_IP = \ + {'date': '2014-03-10', 'utc': '1', + 'interval': '60', + 'time': '12:18:01', + 'memory': {'memused-percent': '46.97', + 'cached': '1519240', + 'unit': 'kB', 'per': 'second', + 'memfree': '4174044', 'inactive': '1495848', + 'commit-percent': '13.20', 'active': '1825260', + 'commit': '3805776', + 'buffers': '376704', 'dirty': '1696'}} + +SHOW_MEMORY_STATUS_EXCEPTION_OP = \ + {'message': "key: 'memused' not found", + 'exit_status': 3} -- cgit