A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

59 řádky
2.2 KiB

  1. # Copyright (C) 2009-2024 Ben Kurtovic <ben.kurtovic@gmail.com>
  2. #
  3. # Permission is hereby granted, free of charge, to any person obtaining a copy
  4. # of this software and associated documentation files (the "Software"), to deal
  5. # in the Software without restriction, including without limitation the rights
  6. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. # copies of the Software, and to permit persons to whom the Software is
  8. # furnished to do so, subject to the following conditions:
  9. #
  10. # The above copyright notice and this permission notice shall be included in
  11. # all copies or substantial portions of the Software.
  12. #
  13. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  19. # SOFTWARE.
  20. import pytest
  21. from conftest import MockCommand
  22. from earwigbot.commands.calc import Calc
  23. def test_check(command: MockCommand):
  24. command.setup(Calc)
  25. assert command.command.check(command.make_msg("bloop")) is False
  26. assert command.command.check(command.make_join()) is False
  27. assert command.command.check(command.make_msg("calc")) is True
  28. assert command.command.check(command.make_msg("CALC", "foo")) is True
  29. def test_ignore_empty(command: MockCommand):
  30. command.setup(Calc)
  31. command.command.process(command.make_msg("calc"))
  32. command.assert_reply("What do you want me to calculate?")
  33. @pytest.mark.parametrize(
  34. "expr, expected",
  35. [
  36. ("2 + 2", "2 + 2 = 4"),
  37. ("13 * 5", "13 * 5 = 65"),
  38. ("80 / 42", "80 / 42 = 40/21 (approx. 1.9047619047619048)"),
  39. ("2/0", "2/0 = undef"),
  40. ("π", "π = 3.141592653589793238"),
  41. ],
  42. )
  43. def test_math(command: MockCommand, expr: str, expected: str):
  44. command.setup(Calc)
  45. q = expr.strip().split()
  46. command.command.process(command.make_msg("calc", *q))
  47. command.assert_reply(expected)