mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
28 lines
779 B
Python
28 lines
779 B
Python
import pytest
|
|
|
|
import windows
|
|
import windows.generated_def as gdef
|
|
|
|
|
|
def test_services_process():
|
|
services_with_process = [s for s in windows.system.services if s.status.dwProcessId]
|
|
service = services_with_process[0]
|
|
proc = service.process
|
|
assert proc.pid == service.status.dwProcessId
|
|
|
|
|
|
def test_service_appinfo():
|
|
appinfo = windows.system.services[b"Appinfo"]
|
|
assert appinfo.status.type & gdef.SERVICE_WIN32_OWN_PROCESS
|
|
# Check other fields
|
|
assert appinfo.name == b"Appinfo"
|
|
assert appinfo.description == b"Application Information"
|
|
|
|
|
|
def test_service_start():
|
|
faxservice = windows.system.services[b"Fax"]
|
|
# Just start a random serivce with a string
|
|
# Used to check string compat in py2/py3
|
|
faxservice.start(b"TEST STRING")
|
|
|