events.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. # pylint: disable=unused-argument
  31. if event == 'testevent':
  32. testevent_fired[0] = True
  33. emitter = qubes.events.Emitter()
  34. emitter.add_handler('testevent', on_testevent)
  35. emitter.fire_event('testevent')
  36. self.assertTrue(testevent_fired[0])
  37. def test_001_decorator(self):
  38. class TestEmitter(qubes.events.Emitter):
  39. def __init__(self):
  40. super(TestEmitter, self).__init__()
  41. self.testevent_fired = False
  42. @qubes.events.handler('testevent')
  43. def on_testevent(self, event):
  44. if event == 'testevent':
  45. self.testevent_fired = True
  46. emitter = TestEmitter()
  47. emitter.fire_event('testevent')
  48. self.assertTrue(emitter.testevent_fired)