mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-26 10:42:29 +03:00
unitest-restful: general cleaning
This commit is contained in:
parent
075ba72d79
commit
183328dbd0
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
# Glances - An eye on your system
|
# Glances - An eye on your system
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Nicolargo <nicolas@nicolargo.com>
|
# Copyright (C) 2015 Nicolargo <nicolas@nicolargo.com>
|
||||||
#
|
#
|
||||||
# Glances is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU Lesser General Public License as published by
|
||||||
@ -18,37 +18,21 @@
|
|||||||
# You should have received a copy of the GNU Lesser General Public License
|
# 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/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
"""Glances unitary tests suite for the RESTFul API."""
|
"""Glances unitary tests suite for the RESTful API."""
|
||||||
|
|
||||||
import sys
|
|
||||||
import time
|
|
||||||
import unittest
|
|
||||||
import shlex
|
import shlex
|
||||||
import subprocess
|
import subprocess
|
||||||
import requests
|
import time
|
||||||
import json
|
import unittest
|
||||||
|
|
||||||
from glances.core.glances_globals import version
|
from glances.core.glances_globals import version
|
||||||
|
|
||||||
|
import requests
|
||||||
|
|
||||||
SERVER_PORT = 61234
|
SERVER_PORT = 61234
|
||||||
URL = "http://localhost:%s/api/2" % SERVER_PORT
|
URL = "http://localhost:%s/api/2" % SERVER_PORT
|
||||||
pid = None
|
pid = None
|
||||||
|
|
||||||
# Global variables
|
|
||||||
# =================
|
|
||||||
|
|
||||||
# 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
|
# Unitest class
|
||||||
# ==============
|
# ==============
|
||||||
print('RESTful API unitary tests for Glances %s' % version)
|
print('RESTful API unitary tests for Glances %s' % version)
|
||||||
@ -63,11 +47,10 @@ class TestGlances(unittest.TestCase):
|
|||||||
print('\n' + '=' * 78)
|
print('\n' + '=' * 78)
|
||||||
|
|
||||||
def test_000_start_server(self):
|
def test_000_start_server(self):
|
||||||
"""Start the Glances Web Server"""
|
"""Start the Glances Web Server."""
|
||||||
print('INFO: [TEST_000] Start the Glances Web Server')
|
|
||||||
|
|
||||||
global pid
|
global pid
|
||||||
|
|
||||||
|
print('INFO: [TEST_000] Start the Glances Web Server')
|
||||||
cmdline = "python -m glances -w -p %s" % SERVER_PORT
|
cmdline = "python -m glances -w -p %s" % SERVER_PORT
|
||||||
print("Run the Glances Web Server on port %s" % SERVER_PORT)
|
print("Run the Glances Web Server on port %s" % SERVER_PORT)
|
||||||
args = shlex.split(cmdline)
|
args = shlex.split(cmdline)
|
||||||
@ -78,21 +61,19 @@ class TestGlances(unittest.TestCase):
|
|||||||
self.assertTrue(pid is not None)
|
self.assertTrue(pid is not None)
|
||||||
|
|
||||||
def test_001_all(self):
|
def test_001_all(self):
|
||||||
"""All"""
|
"""All."""
|
||||||
method = "all"
|
method = "all"
|
||||||
print('INFO: [TEST_001] Get all stats')
|
print('INFO: [TEST_001] Get all stats')
|
||||||
|
print("HTTP RESTful request: %s/%s" % (URL, method))
|
||||||
print("HTTP RESTFul request: %s/%s" % (URL, method))
|
|
||||||
req = requests.get("%s/%s" % (URL, method))
|
req = requests.get("%s/%s" % (URL, method))
|
||||||
|
|
||||||
self.assertTrue(req.ok)
|
self.assertTrue(req.ok)
|
||||||
|
|
||||||
def test_002_pluginslist(self):
|
def test_002_pluginslist(self):
|
||||||
"""Plugins list"""
|
"""Plugins list."""
|
||||||
method = "pluginslist"
|
method = "pluginslist"
|
||||||
print('INFO: [TEST_002] Plugins list')
|
print('INFO: [TEST_002] Plugins list')
|
||||||
|
print("HTTP RESTful request: %s/%s" % (URL, method))
|
||||||
print("HTTP RESTFul request: %s/%s" % (URL, method))
|
|
||||||
req = requests.get("%s/%s" % (URL, method))
|
req = requests.get("%s/%s" % (URL, method))
|
||||||
|
|
||||||
self.assertTrue(req.ok)
|
self.assertTrue(req.ok)
|
||||||
@ -100,19 +81,19 @@ class TestGlances(unittest.TestCase):
|
|||||||
self.assertIn('cpu', req.json())
|
self.assertIn('cpu', req.json())
|
||||||
|
|
||||||
def test_003_plugins(self):
|
def test_003_plugins(self):
|
||||||
"""Plugins"""
|
"""Plugins."""
|
||||||
method = "pluginslist"
|
method = "pluginslist"
|
||||||
print('INFO: [TEST_003] Plugins')
|
print('INFO: [TEST_003] Plugins')
|
||||||
|
|
||||||
plist = requests.get("%s/%s" % (URL, method))
|
plist = requests.get("%s/%s" % (URL, method))
|
||||||
|
|
||||||
for p in plist.json():
|
for p in plist.json():
|
||||||
print("HTTP RESTFul request: %s/%s" % (URL, p))
|
print("HTTP RESTful request: %s/%s" % (URL, p))
|
||||||
req = requests.get("%s/%s" % (URL, p))
|
req = requests.get("%s/%s" % (URL, p))
|
||||||
self.assertTrue(req.ok)
|
self.assertTrue(req.ok)
|
||||||
if p in ('uptime', 'now'):
|
if p in ('uptime', 'now'):
|
||||||
self.assertIsInstance(req.json(), str)
|
self.assertIsInstance(req.json(), str)
|
||||||
elif p in ('fs', 'monitor', 'percpu', 'sensors', 'alert', 'processlist', 'diskio', 'hddtemp', 'batpercent', 'network'):
|
elif p in ('fs', 'monitor', 'percpu', 'sensors', 'alert', 'processlist',
|
||||||
|
'diskio', 'hddtemp', 'batpercent', 'network'):
|
||||||
self.assertIsInstance(req.json(), list)
|
self.assertIsInstance(req.json(), list)
|
||||||
elif p in ('psutilversion', 'help'):
|
elif p in ('psutilversion', 'help'):
|
||||||
pass
|
pass
|
||||||
@ -120,24 +101,22 @@ class TestGlances(unittest.TestCase):
|
|||||||
self.assertIsInstance(req.json(), dict)
|
self.assertIsInstance(req.json(), dict)
|
||||||
|
|
||||||
def test_004_items(self):
|
def test_004_items(self):
|
||||||
"""Items"""
|
"""Items."""
|
||||||
method = "cpu"
|
method = "cpu"
|
||||||
print('INFO: [TEST_004] Items for the CPU method')
|
print('INFO: [TEST_004] Items for the CPU method')
|
||||||
|
|
||||||
ilist = requests.get("%s/%s" % (URL, method))
|
ilist = requests.get("%s/%s" % (URL, method))
|
||||||
|
|
||||||
for i in ilist.json():
|
for i in ilist.json():
|
||||||
print("HTTP RESTFul request: %s/%s/%s" % (URL, method, i))
|
print("HTTP RESTful request: %s/%s/%s" % (URL, method, i))
|
||||||
req = requests.get("%s/%s/%s" % (URL, method, i))
|
req = requests.get("%s/%s/%s" % (URL, method, i))
|
||||||
self.assertTrue(req.ok)
|
self.assertTrue(req.ok)
|
||||||
self.assertIsInstance(req.json(), dict)
|
self.assertIsInstance(req.json(), dict)
|
||||||
self.assertIsInstance(req.json()[i], float)
|
self.assertIsInstance(req.json()[i], float)
|
||||||
|
|
||||||
def test_005_values(self):
|
def test_005_values(self):
|
||||||
"""Valuess"""
|
"""Values."""
|
||||||
method = "processlist"
|
method = "processlist"
|
||||||
print('INFO: [TEST_005] Item=Value for the PROCESSLIST method')
|
print('INFO: [TEST_005] Item=Value for the PROCESSLIST method')
|
||||||
|
|
||||||
print("%s/%s/pid/0" % (URL, method))
|
print("%s/%s/pid/0" % (URL, method))
|
||||||
req = requests.get("%s/%s/pid/0" % (URL, method))
|
req = requests.get("%s/%s/pid/0" % (URL, method))
|
||||||
|
|
||||||
@ -145,60 +124,55 @@ class TestGlances(unittest.TestCase):
|
|||||||
self.assertIsInstance(req.json(), dict)
|
self.assertIsInstance(req.json(), dict)
|
||||||
|
|
||||||
def test_006_all_limits(self):
|
def test_006_all_limits(self):
|
||||||
"""All"""
|
"""All limits."""
|
||||||
method = "all/limits"
|
method = "all/limits"
|
||||||
print('INFO: [TEST_006] Get all limits')
|
print('INFO: [TEST_006] Get all limits')
|
||||||
|
print("HTTP RESTful request: %s/%s" % (URL, method))
|
||||||
print("HTTP RESTFul request: %s/%s" % (URL, method))
|
|
||||||
req = requests.get("%s/%s" % (URL, method))
|
req = requests.get("%s/%s" % (URL, method))
|
||||||
|
|
||||||
self.assertTrue(req.ok)
|
self.assertTrue(req.ok)
|
||||||
self.assertIsInstance(req.json(), dict)
|
self.assertIsInstance(req.json(), dict)
|
||||||
|
|
||||||
def test_007_all_views(self):
|
def test_007_all_views(self):
|
||||||
"""All"""
|
"""All views."""
|
||||||
method = "all/views"
|
method = "all/views"
|
||||||
print('INFO: [TEST_007] Get all views')
|
print('INFO: [TEST_007] Get all views')
|
||||||
|
print("HTTP RESTful request: %s/%s" % (URL, method))
|
||||||
print("HTTP RESTFul request: %s/%s" % (URL, method))
|
|
||||||
req = requests.get("%s/%s" % (URL, method))
|
req = requests.get("%s/%s" % (URL, method))
|
||||||
|
|
||||||
self.assertTrue(req.ok)
|
self.assertTrue(req.ok)
|
||||||
self.assertIsInstance(req.json(), dict)
|
self.assertIsInstance(req.json(), dict)
|
||||||
|
|
||||||
def test_008_plugins_limits(self):
|
def test_008_plugins_limits(self):
|
||||||
"""Plugins limits"""
|
"""Plugins limits."""
|
||||||
method = "pluginslist"
|
method = "pluginslist"
|
||||||
print('INFO: [TEST_008] Plugins limits')
|
print('INFO: [TEST_008] Plugins limits')
|
||||||
|
|
||||||
plist = requests.get("%s/%s" % (URL, method))
|
plist = requests.get("%s/%s" % (URL, method))
|
||||||
|
|
||||||
for p in plist.json():
|
for p in plist.json():
|
||||||
print("HTTP RESTFul request: %s/%s/limits" % (URL, p))
|
print("HTTP RESTful request: %s/%s/limits" % (URL, p))
|
||||||
req = requests.get("%s/%s/limits" % (URL, p))
|
req = requests.get("%s/%s/limits" % (URL, p))
|
||||||
self.assertTrue(req.ok)
|
self.assertTrue(req.ok)
|
||||||
self.assertIsInstance(req.json(), dict)
|
self.assertIsInstance(req.json(), dict)
|
||||||
|
|
||||||
def test_009_plugins_views(self):
|
def test_009_plugins_views(self):
|
||||||
"""Plugins views"""
|
"""Plugins views."""
|
||||||
method = "pluginslist"
|
method = "pluginslist"
|
||||||
print('INFO: [TEST_009] Plugins views')
|
print('INFO: [TEST_009] Plugins views')
|
||||||
|
|
||||||
plist = requests.get("%s/%s" % (URL, method))
|
plist = requests.get("%s/%s" % (URL, method))
|
||||||
|
|
||||||
for p in plist.json():
|
for p in plist.json():
|
||||||
print("HTTP RESTFul request: %s/%s/views" % (URL, p))
|
print("HTTP RESTful request: %s/%s/views" % (URL, p))
|
||||||
req = requests.get("%s/%s/views" % (URL, p))
|
req = requests.get("%s/%s/views" % (URL, p))
|
||||||
self.assertTrue(req.ok)
|
self.assertTrue(req.ok)
|
||||||
self.assertIsInstance(req.json(), dict)
|
self.assertIsInstance(req.json(), dict)
|
||||||
|
|
||||||
def test_999_stop_server(self):
|
def test_999_stop_server(self):
|
||||||
"""Stop the Glances Web Server"""
|
"""Stop the Glances Web Server."""
|
||||||
print('INFO: [TEST_999] Stop the Glances Web Server')
|
print('INFO: [TEST_999] Stop the Glances Web Server')
|
||||||
|
|
||||||
print("Stop the Glances Web Server")
|
print("Stop the Glances Web Server")
|
||||||
pid.terminate()
|
pid.terminate()
|
||||||
print("Please wait...")
|
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
self.assertTrue(True)
|
self.assertTrue(True)
|
||||||
|
Loading…
Reference in New Issue
Block a user