SILENT KILLERPanel

Current Path: > > opt > > hc_python > lib > python3.12 > site-packages > psutil > tests


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt//hc_python/lib/python3.12/site-packages/psutil/tests

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 64104 bytes April 04 2025 08:02:23.
__main__.py File 309 bytes April 04 2025 08:02:23.
test_aix.py File 4408 bytes April 04 2025 08:02:23.
test_bsd.py File 20191 bytes April 04 2025 08:02:23.
test_connections.py File 21157 bytes April 04 2025 08:02:23.
test_contracts.py File 12001 bytes April 04 2025 08:02:23.
test_linux.py File 88895 bytes April 04 2025 08:02:23.
test_memleaks.py File 15121 bytes April 04 2025 08:02:23.
test_misc.py File 29672 bytes April 04 2025 08:02:23.
test_osx.py File 6315 bytes April 04 2025 08:02:23.
test_posix.py File 17187 bytes April 04 2025 08:02:23.
test_process.py File 59881 bytes April 04 2025 08:02:23.
test_process_all.py File 18347 bytes April 04 2025 08:02:23.
test_scripts.py File 7725 bytes April 04 2025 08:02:23.
test_sunos.py File 1190 bytes April 04 2025 08:02:23.
test_system.py File 36107 bytes April 04 2025 08:02:23.
test_testutils.py File 18338 bytes April 04 2025 08:02:23.
test_unicode.py File 10392 bytes April 04 2025 08:02:23.
test_windows.py File 33214 bytes April 04 2025 08:02:23.

Reading File: //opt//hc_python/lib/python3.12/site-packages/psutil/tests/test_sunos.py

#!/usr/bin/env python3

# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Sun OS specific tests."""

import os

import psutil
from psutil import SUNOS
from psutil.tests import PsutilTestCase
from psutil.tests import pytest
from psutil.tests import sh


@pytest.mark.skipif(not SUNOS, reason="SUNOS only")
class SunOSSpecificTestCase(PsutilTestCase):
    def test_swap_memory(self):
        out = sh(f"env PATH=/usr/sbin:/sbin:{os.environ['PATH']} swap -l")
        lines = out.strip().split('\n')[1:]
        if not lines:
            raise ValueError('no swap device(s) configured')
        total = free = 0
        for line in lines:
            fields = line.split()
            total = int(fields[3]) * 512
            free = int(fields[4]) * 512
        used = total - free

        psutil_swap = psutil.swap_memory()
        assert psutil_swap.total == total
        assert psutil_swap.used == used
        assert psutil_swap.free == free

    def test_cpu_count(self):
        out = sh("/usr/sbin/psrinfo")
        assert psutil.cpu_count() == len(out.split('\n'))

SILENT KILLER Tool