Makefile 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. .PHONY: all
  2. all: develop
  3. PIP := python -m pip --disable-pip-version-check
  4. WEBPACK := yarn build-acceptance
  5. POSTGRES_CONTAINER := sentry_postgres
  6. freeze-requirements:
  7. @python3 -S -m tools.freeze_requirements
  8. bootstrap:
  9. @echo "devenv bootstrap is typically run on new machines."
  10. @echo "you probably want to run devenv sync to bring the"
  11. @echo "sentry dev environment up to date!"
  12. build-platform-assets \
  13. clean \
  14. init-config \
  15. run-dependent-services \
  16. drop-db \
  17. create-db \
  18. apply-migrations \
  19. reset-db :
  20. @./scripts/do.sh $@
  21. develop \
  22. install-js-dev \
  23. install-py-dev :
  24. @make devenv-sync
  25. # This is to ensure devenv sync's only called once if the above
  26. # macros are combined e.g. `make install-js-dev install-py-dev`
  27. .PHONY: devenv-sync
  28. devenv-sync:
  29. devenv sync
  30. build-js-po:
  31. mkdir -p build
  32. rm -rf node_modules/.cache/babel-loader
  33. SENTRY_EXTRACT_TRANSLATIONS=1 $(WEBPACK)
  34. build-spectacular-docs:
  35. @echo "--> Building drf-spectacular openapi spec (combines with deprecated docs)"
  36. @OPENAPIGENERATE=1 sentry django spectacular --file tests/apidocs/openapi-spectacular.json --format openapi-json --validate --fail-on-warn
  37. build-deprecated-docs:
  38. @echo "--> Building deprecated openapi spec from json files"
  39. yarn build-deprecated-docs
  40. build-api-docs: build-deprecated-docs build-spectacular-docs
  41. @echo "--> Dereference the json schema for ease of use"
  42. yarn deref-api-docs
  43. watch-api-docs:
  44. @cd api-docs/ && yarn install
  45. @cd api-docs/ && ts-node ./watch.ts
  46. diff-api-docs:
  47. @echo "--> diffing local api docs against sentry-api-schema/openapi-derefed.json"
  48. yarn diff-docs
  49. build: locale
  50. merge-locale-catalogs: build-js-po
  51. $(PIP) install Babel
  52. cd src/sentry && sentry django makemessages -i static -l en
  53. ./bin/merge-catalogs en
  54. compile-locale:
  55. $(PIP) install Babel
  56. ./bin/find-good-catalogs src/sentry/locale/catalogs.json
  57. cd src/sentry && sentry django compilemessages
  58. install-transifex:
  59. $(PIP) install transifex-client
  60. push-transifex: merge-locale-catalogs install-transifex
  61. tx push -s
  62. pull-transifex: install-transifex
  63. tx pull -a
  64. # Update transifex with new strings that need to be translated
  65. update-transifex: push-transifex
  66. # Pulls new translations from transifex and compiles for usage
  67. update-local-locales: pull-transifex compile-locale
  68. build-chartcuterie-config:
  69. @echo "--> Building chartcuterie config module"
  70. yarn build-chartcuterie-config
  71. run-acceptance:
  72. @echo "--> Running acceptance tests"
  73. python3 -b -m pytest tests/acceptance --cov . --cov-report="xml:.artifacts/acceptance.coverage.xml" --json-report --json-report-file=".artifacts/pytest.acceptance.json" --json-report-omit=log --junit-xml=".artifacts/acceptance.junit.xml" -o junit_suite_name=acceptance
  74. @echo ""
  75. test-cli: create-db
  76. @echo "--> Testing CLI"
  77. rm -rf test_cli
  78. mkdir test_cli
  79. cd test_cli && sentry init test_conf
  80. cd test_cli && sentry --config=test_conf help
  81. cd test_cli && sentry --config=test_conf upgrade --traceback --noinput
  82. cd test_cli && sentry --config=test_conf export
  83. rm -r test_cli
  84. @echo ""
  85. test-js-build:
  86. @echo "--> Running type check"
  87. @yarn run tsc -p config/tsconfig.build.json
  88. @echo "--> Building static assets"
  89. @NODE_ENV=production yarn webpack-profile > .artifacts/webpack-stats.json
  90. test-js:
  91. @echo "--> Running JavaScript tests"
  92. @yarn run test
  93. @echo ""
  94. test-js-ci:
  95. @echo "--> Running CI JavaScript tests"
  96. @yarn run test-ci
  97. @echo ""
  98. # COV_ARGS controls extra args passed to pytest to generate covereage
  99. # It's used in test-python-ci. Typically generated an XML coverage file
  100. # Except in .github/workflows/codecov_per_test_coverage.yml
  101. # When it's dynamically changed to include --cov-context=test flag
  102. # See that workflow for more info
  103. COV_ARGS = --cov-report="xml:.artifacts/python.coverage.xml"
  104. test-python-ci:
  105. @echo "--> Running CI Python tests"
  106. python3 -b -m pytest \
  107. tests \
  108. --ignore tests/acceptance \
  109. --ignore tests/apidocs \
  110. --ignore tests/js \
  111. --ignore tests/tools \
  112. --cov . $(COV_ARGS) \
  113. --json-report \
  114. --json-report-file=".artifacts/pytest.json" \
  115. --json-report-omit=log \
  116. --junit-xml=.artifacts/pytest.junit.xml \
  117. -o junit_suite_name=pytest
  118. @echo ""
  119. # it's not possible to change settings.DATABASE after django startup, so
  120. # unfortunately these tests must be run in a separate pytest process. References:
  121. # * https://docs.djangoproject.com/en/4.2/topics/testing/tools/#overriding-settings
  122. # * https://code.djangoproject.com/ticket/19031
  123. # * https://github.com/pombredanne/django-database-constraints/blob/master/runtests.py#L61-L77
  124. test-monolith-dbs:
  125. @echo "--> Running CI Python tests (SENTRY_USE_MONOLITH_DBS=1)"
  126. SENTRY_LEGACY_TEST_SUITE=1 \
  127. SENTRY_USE_MONOLITH_DBS=1 \
  128. python3 -b -m pytest \
  129. tests/sentry/backup/test_exhaustive.py \
  130. tests/sentry/backup/test_exports.py \
  131. tests/sentry/backup/test_imports.py \
  132. tests/sentry/backup/test_releases.py \
  133. tests/sentry/runner/commands/test_backup.py \
  134. --cov . \
  135. --cov-report="xml:.artifacts/python.monolith-dbs.coverage.xml" \
  136. --json-report \
  137. --json-report-file=".artifacts/pytest.monolith-dbs.json" \
  138. --json-report-omit=log \
  139. --junit-xml=.artifacts/monolith-dbs.junit.xml \
  140. -o junit_suite_name=monolith-dbs \
  141. ;
  142. @echo ""
  143. test-tools:
  144. @echo "--> Running tools tests"
  145. @# bogus configuration to force vanilla pytest
  146. python3 -b -m pytest -c setup.cfg --confcutdir tests/tools tests/tools -vv --cov=tools --cov=tests/tools --cov-report="xml:.artifacts/tools.coverage.xml" --junit-xml=.artifacts/tools.junit.xml -o junit_suite_name=tools
  147. @echo ""
  148. # JavaScript relay tests are meant to be run within Symbolicator test suite, as they are parametrized to verify both processing pipelines during migration process.
  149. # Running Locally: Run `sentry devservices up kafka` before starting these tests
  150. test-symbolicator:
  151. @echo "--> Running symbolicator tests"
  152. python3 -b -m pytest tests/symbolicator -vv --cov . --cov-report="xml:.artifacts/symbolicator.coverage.xml" --junit-xml=.artifacts/symbolicator.junit.xml -o junit_suite_name=symbolicator
  153. python3 -b -m pytest tests/relay_integration/lang/javascript/ -vv -m symbolicator
  154. python3 -b -m pytest tests/relay_integration/lang/java/ -vv -m symbolicator
  155. @echo ""
  156. test-acceptance:
  157. @echo "--> Building static assets"
  158. @$(WEBPACK)
  159. make run-acceptance
  160. # XXX: this is called by `getsentry/relay`
  161. test-relay-integration:
  162. @echo "--> Running Relay integration tests"
  163. python3 -b -m pytest \
  164. tests/relay_integration \
  165. tests/sentry/ingest/ingest_consumer/test_ingest_consumer_kafka.py \
  166. -vv --cov . --cov-report="xml:.artifacts/relay.coverage.xml"
  167. @echo ""
  168. test-api-docs: build-api-docs
  169. yarn run validate-api-examples
  170. python3 -b -m pytest tests/apidocs
  171. @echo ""
  172. review-python-snapshots:
  173. @cargo insta --version &> /dev/null || cargo install cargo-insta
  174. @cargo insta review --workspace-root `pwd` -e pysnap
  175. accept-python-snapshots:
  176. @cargo insta --version &> /dev/null || cargo install cargo-insta
  177. @cargo insta accept --workspace-root `pwd` -e pysnap
  178. reject-python-snapshots:
  179. @cargo insta --version &> /dev/null || cargo install cargo-insta
  180. @cargo insta reject --workspace-root `pwd` -e pysnap
  181. .PHONY: build