events.py 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #!/usr/bin/python2 -O
  2. # vim: fileencoding=utf-8
  3. #
  4. # The Qubes OS Project, https://www.qubes-os.org/
  5. #
  6. # Copyright (C) 2014-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
  7. # Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License along
  20. # with this program; if not, write to the Free Software Foundation, Inc.,
  21. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  22. #
  23. import qubes.events
  24. import qubes.tests
  25. class TC_00_Emitter(qubes.tests.QubesTestCase):
  26. def test_000_add_handler(self):
  27. # need something mutable
  28. testevent_fired = [False]
  29. def on_testevent(subject, event):
  30. if event == 'testevent':
  31. testevent_fired[0] = True
  32. emitter = qubes.events.Emitter()
  33. emitter.add_handler('testevent', on_testevent)
  34. emitter.fire_event('testevent')
  35. self.assertTrue(testevent_fired[0])
  36. def test_001_decorator(self):
  37. class TestEmitter(qubes.events.Emitter):
  38. def __init__(self):
  39. super(TestEmitter, self).__init__()
  40. self.testevent_fired = False
  41. @qubes.events.handler('testevent')
  42. def on_testevent(self, event):
  43. if event == 'testevent':
  44. self.testevent_fired = True
  45. emitter = TestEmitter()
  46. emitter.fire_event('testevent')
  47. self.assertTrue(emitter.testevent_fired)