mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
import pytest
|
|
import windows
|
|
|
|
from pfwtest import *
|
|
|
|
@check_for_gc_garbage
|
|
class TestSystemWithCheckGarbage(object):
|
|
def test_version(self):
|
|
return windows.system.version
|
|
|
|
def test_version_name(self):
|
|
return windows.system.version_name
|
|
|
|
def test_computer_name(self):
|
|
return windows.system.computer_name
|
|
|
|
def test_services(self):
|
|
return windows.system.services
|
|
|
|
def test_services_process(self):
|
|
services_with_process = [s for s in windows.system.services if s.ServiceStatusProcess.dwProcessId]
|
|
service = services_with_process[0]
|
|
proc = service.process
|
|
assert proc.pid == service.ServiceStatusProcess.dwProcessId
|
|
|
|
def test_logicaldrives(self):
|
|
return windows.system.logicaldrives
|
|
|
|
def test_wmi(self):
|
|
return windows.system.wmi.select("Win32_Process", "*")
|
|
|
|
def test_handles(self):
|
|
return windows.system.handles
|
|
|
|
def test_handle_process(self):
|
|
handle_with_process = [h for h in windows.system.handles if h.dwProcessId]
|
|
handle = handle_with_process[-1]
|
|
proc = handle.process
|
|
assert proc.pid == handle.dwProcessId
|
|
|
|
|
|
@check_for_gc_garbage
|
|
class TestSystemWithCheckGarbageAndHandleLeak(object):
|
|
def test_threads(self):
|
|
return windows.system.threads
|
|
|
|
def test_processes(self):
|
|
procs = windows.system.processes
|
|
assert windows.current_process.pid in [p.pid for p in procs] |