events.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 sys
  24. import unittest
  25. import qubes.events
  26. import qubes.tests
  27. class TC_00_Emitter(qubes.tests.QubesTestCase):
  28. def test_000_add_handler(self):
  29. # need something mutable
  30. testevent_fired = [False]
  31. def on_testevent(subject, event):
  32. if event == 'testevent':
  33. testevent_fired[0] = True
  34. emitter = qubes.events.Emitter()
  35. emitter.add_handler('testevent', on_testevent)
  36. emitter.fire_event('testevent')
  37. self.assertTrue(testevent_fired[0])
  38. def test_001_decorator(self):
  39. class TestEmitter(qubes.events.Emitter):
  40. def __init__(self):
  41. super(TestEmitter, self).__init__()
  42. self.testevent_fired = False
  43. @qubes.events.handler('testevent')
  44. def on_testevent(self, event):
  45. if event == 'testevent':
  46. self.testevent_fired = True
  47. emitter = TestEmitter()
  48. emitter.fire_event('testevent')
  49. self.assertTrue(emitter.testevent_fired)