__init__.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Copyright 2019 The Matrix.org Foundation C.I.C.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import sys
  15. from typing import cast
  16. from synapse.types import ISynapseReactor
  17. try:
  18. from twisted.internet.epollreactor import EPollReactor as Reactor
  19. except ImportError:
  20. from twisted.internet.pollreactor import PollReactor as Reactor # type: ignore[assignment]
  21. from twisted.internet.main import installReactor
  22. def make_reactor() -> ISynapseReactor:
  23. """
  24. Instantiate and install a Twisted reactor suitable for testing (i.e. not the
  25. default global one).
  26. """
  27. reactor = Reactor()
  28. if "twisted.internet.reactor" in sys.modules:
  29. del sys.modules["twisted.internet.reactor"]
  30. installReactor(reactor)
  31. return cast(ISynapseReactor, reactor)