mirror of
https://github.com/nicolargo/glances.git
synced 2026-07-30 23:06:22 -04:00
Implements the v5 scalar uptime plugin:
- model_v5: _grab_stats returns {seconds: int} from psutil.boot_time(),
tolerates OSError with empty payload, matches v4 get_export contract.
- render_curses_v5: single "Uptime: <value>" Row for the header slot,
using format_seconds (e.g. 273840 → "3d04h"); empty payload yields [].
TDD: 4 model tests + 2 renderer tests, all green. Discovery smoke check passes.
70 lines
2.1 KiB
Python
Executable File
70 lines
2.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Glances - An eye on your system
|
|
#
|
|
# SPDX-FileCopyrightText: 2026 Nicolas Hennion <nicolas@nicolargo.com>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-only
|
|
#
|
|
|
|
"""Glances v5 — unit tests for the `uptime` plugin."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from glances.config_v5 import GlancesConfigV5
|
|
from glances.plugins.uptime.model_v5 import PluginModel
|
|
from glances.stats_store_v5 import StatsStoreV5
|
|
|
|
|
|
@pytest.fixture
|
|
def store() -> StatsStoreV5:
|
|
return StatsStoreV5()
|
|
|
|
|
|
@pytest.fixture
|
|
def config(tmp_path, monkeypatch) -> GlancesConfigV5:
|
|
monkeypatch.setattr(GlancesConfigV5, "SYSTEM_CONFIG_PATH", tmp_path / "etc" / "glances.conf")
|
|
monkeypatch.setenv("XDG_CONFIG_HOME", str(tmp_path / "xdg"))
|
|
return GlancesConfigV5()
|
|
|
|
|
|
def test_plugin_identity(store, config):
|
|
plugin = PluginModel(store, config)
|
|
assert plugin.plugin_name == "uptime"
|
|
assert plugin.IS_COLLECTION is False
|
|
assert plugin.DISPLAY_IN_TUI is True
|
|
|
|
|
|
async def test_update_writes_seconds_since_boot(store, config):
|
|
plugin = PluginModel(store, config)
|
|
with (
|
|
patch("glances.plugins.uptime.model_v5.time.time", return_value=1_000_000.0),
|
|
patch("glances.plugins.uptime.model_v5.psutil.boot_time", return_value=1_000_000.0 - 3600),
|
|
):
|
|
await plugin.update()
|
|
payload = store.get("uptime")
|
|
assert payload is not None
|
|
assert payload["seconds"] == 3600
|
|
|
|
|
|
async def test_seconds_is_exportable(store, config):
|
|
plugin = PluginModel(store, config)
|
|
with (
|
|
patch("glances.plugins.uptime.model_v5.time.time", return_value=1_000_000.0),
|
|
patch("glances.plugins.uptime.model_v5.psutil.boot_time", return_value=1_000_000.0 - 120),
|
|
):
|
|
await plugin.update()
|
|
exported = plugin.get_export()
|
|
assert exported == {"seconds": 120}
|
|
|
|
|
|
async def test_grab_tolerates_psutil_failure(store, config):
|
|
plugin = PluginModel(store, config)
|
|
with patch("glances.plugins.uptime.model_v5.psutil.boot_time", side_effect=OSError("nope")):
|
|
await plugin.update()
|
|
assert store.get("uptime") == {"_levels": {}, "time_since_update": 0.0}
|