PHP 8.2.30
Preview: test_sunos.py Size: 1.16 KB
/opt/hc_python/lib64/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'))

Directory Contents

Dirs: 1 × Files: 20

Name Size Perms Modified Actions
- drwxr-xr-x 2025-12-03 08:02:54
Edit Download
4.30 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
19.53 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
20.74 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
11.90 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
86.49 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
14.72 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
28.72 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
6.51 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
16.98 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
58.71 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
18.20 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
7.69 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
3.75 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
1.16 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
34.70 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
18.35 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
10.47 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
33.61 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
61.43 KB lrw-r--r-- 2025-12-03 08:02:54
Edit Download
305 B lrw-r--r-- 2025-12-03 08:02:54
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).