mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-28 05:42:57 +03:00
Add unitest script for the RESTFul API
This commit is contained in:
parent
682390e994
commit
b31d824ff3
@ -82,7 +82,7 @@ class GlancesMain(object):
|
||||
help=_('connect to a Glances server by IPv4/IPv6 address or hostname'))
|
||||
parser.add_argument('-s', '--server', action='store_true', default=False,
|
||||
dest='server', help=_('run Glances in server mode'))
|
||||
parser.add_argument('-p', '--port', default=self.server_port, type=int, dest='port',
|
||||
parser.add_argument('-p', '--port', default=None, type=int, dest='port',
|
||||
help=_('define the client/server TCP port [default: {0}]').format(self.server_port))
|
||||
parser.add_argument('-B', '--bind', default='0.0.0.0', dest='bind_address',
|
||||
help=_('bind server to the given IPv4/IPv6 address or hostname'))
|
||||
@ -128,12 +128,16 @@ class GlancesMain(object):
|
||||
from logging import DEBUG
|
||||
logger.setLevel(DEBUG)
|
||||
|
||||
# In web server mode, default:
|
||||
# - refresh time: 5 sec
|
||||
# - host port: 61208
|
||||
# Client/server Port
|
||||
if args.port is None:
|
||||
if args.webserver:
|
||||
args.port = self.web_server_port
|
||||
else:
|
||||
args.port = self.server_port
|
||||
|
||||
# In web server mode, defaul refresh time: 5 sec
|
||||
if args.webserver:
|
||||
args.time = 5
|
||||
args.port = self.web_server_port
|
||||
args.time = 5
|
||||
|
||||
# Server or client login/password
|
||||
args.username = self.username
|
||||
|
176
unitest-restful.py
Executable file
176
unitest-restful.py
Executable file
@ -0,0 +1,176 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Glances - An eye on your system
|
||||
#
|
||||
# Copyright (C) 2014 Nicolargo <nicolas@nicolargo.com>
|
||||
#
|
||||
# Glances is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Glances 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 Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
"""Glances unitary tests suite for the RESTFul API."""
|
||||
|
||||
import gettext
|
||||
import locale
|
||||
import sys
|
||||
import time
|
||||
import unittest
|
||||
import shlex
|
||||
import subprocess
|
||||
import requests
|
||||
import json
|
||||
import types
|
||||
|
||||
from glances.core.glances_globals import (
|
||||
appname,
|
||||
is_linux,
|
||||
version
|
||||
)
|
||||
|
||||
SERVER_PORT = 61234
|
||||
URL = "http://localhost:%s/api/2" % SERVER_PORT
|
||||
pid = None
|
||||
|
||||
# Global variables
|
||||
# =================
|
||||
|
||||
# Unitary test is only available from a GNU/Linus machine
|
||||
if not is_linux:
|
||||
print('ERROR: RESTFul API unitaries tests should be ran on GNU/Linux operating system')
|
||||
sys.exit(2)
|
||||
else:
|
||||
print('Unitary tests for {0} {1}'.format(appname, version))
|
||||
|
||||
# Import local settings
|
||||
from glances.core.glances_globals import gettext_domain, locale_dir
|
||||
locale.setlocale(locale.LC_ALL, '')
|
||||
gettext.install(gettext_domain, locale_dir)
|
||||
|
||||
# Init Glances core
|
||||
from glances.core.glances_main import GlancesMain
|
||||
core = GlancesMain()
|
||||
if not core.is_standalone():
|
||||
print('ERROR: Glances core should be ran in standalone mode')
|
||||
sys.exit(1)
|
||||
|
||||
# Init Glances stats
|
||||
from glances.core.glances_stats import GlancesStats
|
||||
stats = GlancesStats()
|
||||
|
||||
|
||||
# Unitest class
|
||||
# ==============
|
||||
|
||||
class TestGlances(unittest.TestCase):
|
||||
|
||||
"""Test Glances class."""
|
||||
|
||||
def setUp(self):
|
||||
"""The function is called *every time* before test_*."""
|
||||
print('\n' + '=' * 78)
|
||||
|
||||
def test_000_start_server(self):
|
||||
"""Start the Glances Web Server"""
|
||||
print('INFO: [TEST_000] Start the Glances Web Server')
|
||||
|
||||
global pid
|
||||
|
||||
cmdline = "/usr/bin/python -m glances -w -p %s" % SERVER_PORT
|
||||
print("Run the Glances Web Server on port %s" % SERVER_PORT)
|
||||
args = shlex.split(cmdline)
|
||||
pid = subprocess.Popen(args)
|
||||
print("Please wait...")
|
||||
time.sleep(1)
|
||||
|
||||
self.assertTrue(pid is not None)
|
||||
|
||||
def test_001_all(self):
|
||||
"""All"""
|
||||
method = "all"
|
||||
print('INFO: [TEST_001] Connection test')
|
||||
|
||||
print("HTTP RESTFul request: %s/%s" % (URL, method))
|
||||
req = requests.get("%s/%s" % (URL, method))
|
||||
|
||||
self.assertTrue(req.ok)
|
||||
|
||||
def test_002_pluginslist(self):
|
||||
"""Plugins list"""
|
||||
method = "pluginslist"
|
||||
print('INFO: [TEST_002] Plugins list')
|
||||
|
||||
print("HTTP RESTFul request: %s/%s" % (URL, method))
|
||||
req = requests.get("%s/%s" % (URL, method))
|
||||
|
||||
self.assertTrue(req.ok)
|
||||
self.assertIsInstance(req.json, types.ListType)
|
||||
self.assertIn('cpu', req.json)
|
||||
|
||||
def test_003_plugins(self):
|
||||
"""Plugins"""
|
||||
method = "pluginslist"
|
||||
print('INFO: [TEST_003] Plugins')
|
||||
|
||||
plist = requests.get("%s/%s" % (URL, method))
|
||||
|
||||
for p in plist.json:
|
||||
print("HTTP RESTFul request: %s/%s" % (URL, p))
|
||||
req = requests.get("%s/%s" % (URL, p))
|
||||
self.assertTrue(req.ok)
|
||||
if p in ('uptime', 'now'):
|
||||
self.assertIsInstance(req.json, types.UnicodeType)
|
||||
elif p in ('fs', 'monitor', 'percpu', 'sensors', 'alert', 'processlist', 'diskio', 'hddtemp', 'batpercent', 'network'):
|
||||
self.assertIsInstance(req.json, types.ListType)
|
||||
elif p in ('psutilversion', 'help'):
|
||||
pass
|
||||
else:
|
||||
self.assertIsInstance(req.json, types.DictType)
|
||||
|
||||
def test_004_items(self):
|
||||
"""Items"""
|
||||
method = "cpu"
|
||||
print('INFO: [TEST_004] Items for the CPU method')
|
||||
|
||||
ilist = requests.get("%s/%s" % (URL, method))
|
||||
|
||||
for i in ilist.json:
|
||||
print("HTTP RESTFul request: %s/%s/%s" % (URL, method,i))
|
||||
req = requests.get("%s/%s/%s" % (URL, method, i))
|
||||
self.assertTrue(req.ok)
|
||||
self.assertIsInstance(req.json, types.DictType)
|
||||
self.assertIsInstance(req.json[i], types.FloatType)
|
||||
|
||||
def test_005_values(self):
|
||||
"""Valuess"""
|
||||
method = "processlist"
|
||||
print('INFO: [TEST_005] Item=Value for the PROCESSLIST method')
|
||||
|
||||
print("%s/%s/pid/0" % (URL, method))
|
||||
req = requests.get("%s/%s/pid/0" % (URL, method))
|
||||
|
||||
self.assertTrue(req.ok)
|
||||
self.assertIsInstance(req.json, types.DictType)
|
||||
|
||||
def test_999_stop_server(self):
|
||||
"""Stop the Glances Web Server"""
|
||||
print('INFO: [TEST_999] Stop the Glances Web Server')
|
||||
|
||||
print("Stop the Glances Web Server")
|
||||
pid.terminate()
|
||||
print("Please wait...")
|
||||
time.sleep(1)
|
||||
|
||||
self.assertTrue(True)
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Loading…
Reference in New Issue
Block a user