Module rsyscall.tests.test_signal
Expand source code Browse git
from rsyscall.tests.trio_test_case import TrioTestCase
from rsyscall import local_thread
from rsyscall.signal import *
class TestSignal(TrioTestCase):
async def asyncSetUp(self) -> None:
self.thr = local_thread
async def test_sigaction(self) -> None:
sa = Sigaction(Sighandler.DFL)
ptr = await self.thr.ram.ptr(sa)
await self.thr.task.sigaction(SIG.WINCH, ptr, None)
await self.thr.task.sigaction(SIG.WINCH, None, ptr)
out_sa = await ptr.read()
self.assertEqual(sa.handler, out_sa.handler)
self.assertEqual(sa.flags, out_sa.flags)
self.assertEqual(sa.mask, out_sa.mask)
self.assertEqual(sa.restorer, out_sa.restorer)
# TODO test_signalblock
# async def test_signalblock(self) -> None:
# pass
Classes
class TestSignal (methodName='runTest')
-
A trio-enabled variant of unittest.TestCase
Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name.
Expand source code Browse git
class TestSignal(TrioTestCase): async def asyncSetUp(self) -> None: self.thr = local_thread async def test_sigaction(self) -> None: sa = Sigaction(Sighandler.DFL) ptr = await self.thr.ram.ptr(sa) await self.thr.task.sigaction(SIG.WINCH, ptr, None) await self.thr.task.sigaction(SIG.WINCH, None, ptr) out_sa = await ptr.read() self.assertEqual(sa.handler, out_sa.handler) self.assertEqual(sa.flags, out_sa.flags) self.assertEqual(sa.mask, out_sa.mask) self.assertEqual(sa.restorer, out_sa.restorer) # TODO test_signalblock # async def test_signalblock(self) -> None: # pass
Ancestors
- TrioTestCase
- unittest.case.TestCase
Class variables
var nursery : trio.Nursery
Methods
async def test_sigaction(self) ‑> NoneType
-
Expand source code Browse git
async def test_sigaction(self) -> None: sa = Sigaction(Sighandler.DFL) ptr = await self.thr.ram.ptr(sa) await self.thr.task.sigaction(SIG.WINCH, ptr, None) await self.thr.task.sigaction(SIG.WINCH, None, ptr) out_sa = await ptr.read() self.assertEqual(sa.handler, out_sa.handler) self.assertEqual(sa.flags, out_sa.flags) self.assertEqual(sa.mask, out_sa.mask) self.assertEqual(sa.restorer, out_sa.restorer)
Inherited members