test_flake8_plugin.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. from __future__ import annotations
  2. import ast
  3. from tools.flake8_plugin import SentryCheck
  4. def _run(src: str, filename: str = "getsentry/t.py") -> list[str]:
  5. tree = ast.parse(src)
  6. return sorted(
  7. "t.py:{}:{}: {}".format(*error) for error in SentryCheck(tree=tree, filename=filename).run()
  8. )
  9. def test_S001():
  10. S001_py = """\
  11. class A:
  12. def called_once():
  13. pass
  14. A().called_once()
  15. """
  16. errors = _run(S001_py)
  17. assert errors == [
  18. "t.py:6:0: S001 Avoid using the called_once mock call as it is confusing and "
  19. "prone to causing invalid test behavior.",
  20. ]
  21. def test_S002():
  22. S002_py = """\
  23. print("print statements are not allowed")
  24. """
  25. errors = _run(S002_py)
  26. assert errors == ["t.py:1:0: S002 print functions or statements are not allowed."]
  27. def test_S003():
  28. S003_py = """\
  29. import json
  30. import simplejson
  31. from json import loads, load
  32. from simplejson import JSONDecoder, JSONDecodeError, _default_encoder
  33. import sentry.utils.json as good_json
  34. from sentry.utils.json import JSONDecoder, JSONDecodeError
  35. from .json import Validator
  36. def bad_code():
  37. a = json.loads("''")
  38. b = simplejson.loads("''")
  39. c = loads("''")
  40. d = load()
  41. """
  42. errors = _run(S003_py)
  43. assert errors == [
  44. "t.py:1:0: S003 Use ``from sentry.utils import json`` instead.",
  45. "t.py:2:0: S003 Use ``from sentry.utils import json`` instead.",
  46. "t.py:3:0: S003 Use ``from sentry.utils import json`` instead.",
  47. "t.py:4:0: S003 Use ``from sentry.utils import json`` instead.",
  48. ]
  49. def test_S004():
  50. S004_py = """\
  51. import unittest
  52. from something import func
  53. class Test(unittest.TestCase):
  54. def test(self):
  55. with self.assertRaises(ValueError):
  56. func()
  57. """
  58. errors = _run(S004_py)
  59. assert errors == [
  60. "t.py:7:13: S004 Use `pytest.raises` instead for better debuggability.",
  61. ]
  62. def test_S005():
  63. S005_py = """\
  64. from sentry.models import User
  65. """
  66. errors = _run(S005_py)
  67. assert errors == [
  68. "t.py:1:0: S005 Do not import models from sentry.models but the actual module",
  69. ]
  70. def test_S006():
  71. src = """\
  72. from django.utils.encoding import force_bytes
  73. from django.utils.encoding import force_str
  74. """
  75. # only error in tests until we can fix the rest
  76. assert _run(src, filename="src/sentry/whatever.py") == []
  77. errors = _run(src, filename="tests/test_foo.py")
  78. assert errors == [
  79. "t.py:1:0: S006 Do not use force_bytes / force_str -- test the types directly",
  80. "t.py:2:0: S006 Do not use force_bytes / force_str -- test the types directly",
  81. ]