Makefile 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. DOCKER_COMPOSE_FLAGS ?= -f docker-compose.yml
  2. BUILD_NUMBER ?= local
  3. export BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD)
  4. export COMMIT_SHA ?= $(shell git rev-parse HEAD)
  5. PROJECT_NAME = web
  6. BUILD_DIR_NAME = $(shell pwd | xargs basename | tr -cd '[a-zA-Z0-9_.\-]')
  7. PWD = $(shell pwd)
  8. export OVERLEAF_CONFIG ?= /overleaf/services/web/test/acceptance/config/settings.test.saas.js
  9. export BASE_CONFIG ?= ${OVERLEAF_CONFIG}
  10. CFG_SAAS=/overleaf/services/web/test/acceptance/config/settings.test.saas.js
  11. CFG_SERVER_CE=/overleaf/services/web/test/acceptance/config/settings.test.server-ce.js
  12. CFG_SERVER_PRO=/overleaf/services/web/test/acceptance/config/settings.test.server-pro.js
  13. DOCKER_COMPOSE := BUILD_NUMBER=$(BUILD_NUMBER) \
  14. BRANCH_NAME=$(BRANCH_NAME) \
  15. PROJECT_NAME=$(PROJECT_NAME) \
  16. MOCHA_GREP=${MOCHA_GREP} \
  17. docker compose ${DOCKER_COMPOSE_FLAGS}
  18. MODULE_DIRS := $(shell find modules -mindepth 1 -maxdepth 1 -type d -not -name '.git' )
  19. MODULE_MAKEFILES := $(MODULE_DIRS:=/Makefile)
  20. MODULE_NAME=$(shell basename $(MODULE))
  21. $(MODULE_MAKEFILES): Makefile.module
  22. cp Makefile.module $@ || diff Makefile.module $@
  23. #
  24. # Clean
  25. #
  26. SHARD_PROJECT_NAMES = \
  27. unit_test_$(BUILD_DIR_NAME) \
  28. unit_test_all_$(BUILD_DIR_NAME) \
  29. unit_test_esm_$(BUILD_DIR_NAME) \
  30. unit_test_esm_watch_$(BUILD_DIR_NAME) \
  31. unit_test_mocha_$(BUILD_DIR_NAME) \
  32. unit_test_parallel_$(BUILD_DIR_NAME) \
  33. unit_test_parallel_make_$(BUILD_DIR_NAME) \
  34. acceptance_test_saas_$(BUILD_DIR_NAME) \
  35. acceptance_test_server_ce_$(BUILD_DIR_NAME) \
  36. acceptance_test_server_pro_$(BUILD_DIR_NAME) \
  37. acceptance_test_modules_merged_saas_$(BUILD_DIR_NAME) \
  38. acceptance_test_modules_merged_saas_1_$(BUILD_DIR_NAME) \
  39. acceptance_test_modules_merged_saas_2_$(BUILD_DIR_NAME) \
  40. acceptance_test_modules_merged_saas_3_$(BUILD_DIR_NAME) \
  41. acceptance_test_modules_merged_saas_4_$(BUILD_DIR_NAME) \
  42. acceptance_test_modules_merged_server_ce_$(BUILD_DIR_NAME) \
  43. acceptance_test_modules_merged_server_pro_$(BUILD_DIR_NAME) \
  44. frontend_test_$(BUILD_DIR_NAME) \
  45. test_frontend_ct_$(BUILD_DIR_NAME) \
  46. test_frontend_ct_core_other_$(BUILD_DIR_NAME) \
  47. test_frontend_ct_core_features_$(BUILD_DIR_NAME) \
  48. test_frontend_ct_modules_$(BUILD_DIR_NAME) \
  49. test_frontend_ct_editor_other_$(BUILD_DIR_NAME) \
  50. test_frontend_ct_editor_visual_$(BUILD_DIR_NAME) \
  51. tar_$(BUILD_DIR_NAME) \
  52. CLEAN_SHARDS=$(addprefix clean/,$(SHARD_PROJECT_NAMES))
  53. clean: $(CLEAN_SHARDS)
  54. -docker rmi --force $(IMAGE_CI) $(IMAGE_CI)-dev $(IMAGE_CI)-pug $(IMAGE_CI)-webpack $(IMAGE_REPO_FINAL)
  55. -docker compose down --remove-orphans --rmi local --timeout 0 --volumes
  56. -git clean -dfX data/
  57. $(CLEAN_SHARDS): clean/%:
  58. -COMPOSE_PROJECT_NAME=$* docker compose down --remove-orphans --rmi local --timeout 0 --volumes
  59. clean_ci:
  60. $(DOCKER_COMPOSE) down -v -t 0
  61. docker container list | grep 'days ago' | cut -d ' ' -f 1 - | xargs -r docker container stop
  62. docker image prune -af --filter "until=48h"
  63. docker network prune -f
  64. #
  65. # Tests
  66. #
  67. test: test_unit test_acceptance test_frontend test_frontend_ct
  68. test_module: test_unit_module test_acceptance_module
  69. #
  70. # Unit tests
  71. #
  72. test_unit: test_unit_all
  73. test_unit_all: export COMPOSE_PROJECT_NAME=unit_test_all_$(BUILD_DIR_NAME)
  74. test_unit_all: mongo_migrations_for_tests
  75. $(DOCKER_COMPOSE) run --rm test_unit npm run test:unit:all
  76. test_unit_all_silent: export COMPOSE_PROJECT_NAME=unit_test_all_$(BUILD_DIR_NAME)
  77. test_unit_all_silent: mongo_migrations_for_tests
  78. $(DOCKER_COMPOSE) run --rm test_unit npm run test:unit:all:silent
  79. test_unit_app: export COMPOSE_PROJECT_NAME=unit_test_$(BUILD_DIR_NAME)
  80. test_unit_app: mongo_migrations_for_tests
  81. $(DOCKER_COMPOSE) run --name unit_test_$(BUILD_DIR_NAME) --rm test_unit
  82. test_unit_mocha: export COMPOSE_PROJECT_NAME=unit_test_mocha_$(BUILD_DIR_NAME)
  83. test_unit_mocha: mongo_migrations_for_tests
  84. $(DOCKER_COMPOSE) run --rm test_unit npm run test:unit:mocha
  85. test_unit_esm: export COMPOSE_PROJECT_NAME=unit_test_esm_$(BUILD_DIR_NAME)
  86. test_unit_esm: mongo_migrations_for_tests
  87. $(DOCKER_COMPOSE) run --rm test_unit npm run test:unit:esm
  88. test_unit_esm_watch: export COMPOSE_PROJECT_NAME=unit_test_esm_watch_$(BUILD_DIR_NAME)
  89. test_unit_esm_watch: mongo_migrations_for_tests
  90. $(DOCKER_COMPOSE) run --rm test_unit npm run test:unit:esm:watch
  91. TEST_SUITES = $(sort $(filter-out \
  92. $(wildcard test/unit/src/helpers/*), \
  93. $(wildcard test/unit/src/*/*)))
  94. MOCHA_CMD_LINE = \
  95. mocha \
  96. --exit \
  97. --file test/unit/bootstrap.js \
  98. --grep=${MOCHA_GREP} \
  99. --reporter spec \
  100. --timeout 25000 \
  101. .PHONY: $(TEST_SUITES)
  102. $(TEST_SUITES):
  103. $(MOCHA_CMD_LINE) $@
  104. J ?= 1
  105. test_unit_app_parallel_gnu_make: $(TEST_SUITES)
  106. test_unit_app_parallel_gnu_make_docker: export COMPOSE_PROJECT_NAME = \
  107. unit_test_parallel_make_$(BUILD_DIR_NAME)
  108. test_unit_app_parallel_gnu_make_docker: mongo_migrations_for_tests
  109. $(DOCKER_COMPOSE) run --rm test_unit \
  110. make test_unit_app_parallel_gnu_make --output-sync -j $(J)
  111. TEST_UNIT_MODULES = $(MODULE_DIRS:=/test_unit)
  112. $(TEST_UNIT_MODULES): %/test_unit: %/Makefile
  113. test_unit_modules: mongo_migrations_for_tests $(TEST_UNIT_MODULES)
  114. test_unit_module: mongo_migrations_for_tests
  115. $(MAKE) modules/$(MODULE_NAME)/test_unit
  116. mongo_migrations_for_tests:
  117. $(DOCKER_COMPOSE) run --rm test_unit npm run migrations -- migrate -t saas || { $(DOCKER_COMPOSE) logs mongo; exit 42; }
  118. #
  119. # Frontend tests
  120. #
  121. test_frontend:
  122. COMPOSE_PROJECT_NAME=frontend_test_$(BUILD_DIR_NAME) $(DOCKER_COMPOSE) run --rm test_frontend
  123. COMPOSE_PROJECT_NAME=frontend_test_$(BUILD_DIR_NAME) $(DOCKER_COMPOSE) down -v -t 0
  124. #
  125. # Frontend component tests in Cypress
  126. #
  127. # Local development: use $ make test_frontend_ct
  128. #
  129. TEST_FRONTEND_CT_VARIANTS = \
  130. test_frontend_ct \
  131. test_frontend_ct_core_other \
  132. test_frontend_ct_core_features \
  133. test_frontend_ct_modules \
  134. test_frontend_ct_editor_other \
  135. test_frontend_ct_editor_visual \
  136. # Note: The below cypress targets are for CI only
  137. build_test_frontend_ct:
  138. docker run --rm --volume /dev/shm:/dev/shm --user root $(IMAGE_CI) bash -ec 'tar -cC / overleaf | tar -xC /dev/shm'
  139. test_frontend_ct_core_other: export CYPRESS_RESULTS=./cypress/results/core
  140. test_frontend_ct_core_other: export CYPRESS_SPEC_PATTERN=./test/frontend/**/*.spec.{js,jsx,ts,tsx}
  141. test_frontend_ct_core_other: export CYPRESS_EXCLUDE_SPEC_PATTERN=./test/frontend/features/**/*.spec.{js,jsx,ts,tsx}
  142. test_frontend_ct_core_features: export CYPRESS_RESULTS=./cypress/results/core
  143. test_frontend_ct_core_features: export CYPRESS_SPEC_PATTERN=./test/frontend/features/**/*.spec.{js,jsx,ts,tsx}
  144. test_frontend_ct_core_features: export CYPRESS_EXCLUDE_SPEC_PATTERN=./test/frontend/features/source-editor/**/*.spec.{js,jsx,ts,tsx}
  145. test_frontend_ct_modules: export CYPRESS_RESULTS=./cypress/results/modules
  146. test_frontend_ct_modules: export CYPRESS_SPEC_PATTERN=./modules/**/test/frontend/**/*.spec.{js,jsx,ts,tsx}
  147. test_frontend_ct_editor_other: export CYPRESS_RESULTS=./cypress/results/editor_other
  148. test_frontend_ct_editor_other: export CYPRESS_SPEC_PATTERN=./test/frontend/features/source-editor/**/*.spec.{js,jsx,ts,tsx}
  149. test_frontend_ct_editor_other: export CYPRESS_EXCLUDE_SPEC_PATTERN=./test/frontend/features/source-editor/components/codemirror-editor-visual*.spec.{js,jsx,ts,tsx}
  150. test_frontend_ct_editor_visual: export CYPRESS_RESULTS=./cypress/results/editor_visual
  151. test_frontend_ct_editor_visual: export CYPRESS_SPEC_PATTERN=./test/frontend/features/source-editor/components/codemirror-editor-visual*.spec.{js,jsx,ts,tsx}
  152. $(TEST_FRONTEND_CT_VARIANTS):
  153. COMPOSE_PROJECT_NAME=$@_$(BUILD_DIR_NAME) $(DOCKER_COMPOSE) run --rm test_frontend_ct
  154. COMPOSE_PROJECT_NAME=$@_$(BUILD_DIR_NAME) $(DOCKER_COMPOSE) down -v -t 0
  155. #
  156. # Acceptance tests
  157. #
  158. test_acceptance: test_acceptance_app test_acceptance_modules
  159. test_acceptance_saas: test_acceptance_app_saas test_acceptance_modules_merged_saas
  160. test_acceptance_server_ce: test_acceptance_app_server_ce test_acceptance_modules_merged_server_ce
  161. test_acceptance_server_pro: test_acceptance_app_server_pro test_acceptance_modules_merged_server_pro
  162. TEST_ACCEPTANCE_APP := \
  163. test_acceptance_app_saas \
  164. test_acceptance_app_server_ce \
  165. test_acceptance_app_server_pro \
  166. test_acceptance_app: $(TEST_ACCEPTANCE_APP)
  167. test_acceptance_app_saas: export COMPOSE_PROJECT_NAME=acceptance_test_saas_$(BUILD_DIR_NAME)
  168. test_acceptance_app_saas: export OVERLEAF_CONFIG=$(CFG_SAAS)
  169. test_acceptance_app_server_ce: export COMPOSE_PROJECT_NAME=acceptance_test_server_ce_$(BUILD_DIR_NAME)
  170. test_acceptance_app_server_ce: export OVERLEAF_CONFIG=$(CFG_SERVER_CE)
  171. test_acceptance_app_server_pro: export COMPOSE_PROJECT_NAME=acceptance_test_server_pro_$(BUILD_DIR_NAME)
  172. test_acceptance_app_server_pro: export OVERLEAF_CONFIG=$(CFG_SERVER_PRO)
  173. $(TEST_ACCEPTANCE_APP):
  174. $(DOCKER_COMPOSE) run --rm test_acceptance || { $(DOCKER_COMPOSE) logs mongo; exit 42; }
  175. $(DOCKER_COMPOSE) down -v -t 0
  176. # We are using _make magic_ for turning these file-targets into calls to
  177. # sub-Makefiles in the individual modules.
  178. # These sub-Makefiles need to be kept in sync with the template, hence we
  179. # add a dependency on each modules Makefile and cross-link that to the
  180. # template at the very top of this file.
  181. # Example: `web$ make modules/server-ce-scripts/test_acceptance_server_ce`
  182. # Description: Run the acceptance tests of the server-ce-scripts module in an
  183. # Overleaf Community Edition Environment.
  184. # Break down:
  185. # Target: modules/server-ce-scripts/test_acceptance_server_ce
  186. # -> depends on modules/server-ce-scripts/Makefile
  187. # -> add environment variable BASE_CONFIG=$(CFG_SERVER_CE)
  188. # -> BASE_CONFIG=/overleaf/services/web/test/acceptance/config/settings.test.server-ce.js
  189. # -> automatic target: `make -C server-ce-scripts test_acceptance_server_ce`
  190. # -> automatic target: run `make test_acceptance_server_ce` in module
  191. # Target: modules/server-ce-scripts/Makefile
  192. # -> depends on Makefile.module
  193. # -> automatic target: copies the file when changed
  194. TEST_ACCEPTANCE_MODULES = $(MODULE_DIRS:=/test_acceptance)
  195. $(TEST_ACCEPTANCE_MODULES): %/test_acceptance: %/Makefile
  196. $(TEST_ACCEPTANCE_MODULES): modules/%/test_acceptance:
  197. $(MAKE) test_acceptance_module MODULE_NAME=$*
  198. TEST_ACCEPTANCE_MODULES_SAAS = $(MODULE_DIRS:=/test_acceptance_saas)
  199. $(TEST_ACCEPTANCE_MODULES_SAAS): %/test_acceptance_saas: %/Makefile
  200. $(TEST_ACCEPTANCE_MODULES_SAAS): export BASE_CONFIG = $(CFG_SAAS)
  201. # This line adds `/test_acceptance_saas` suffix to all items in $(MODULE_DIRS).
  202. TEST_ACCEPTANCE_MODULES_SERVER_CE = $(MODULE_DIRS:=/test_acceptance_server_ce)
  203. # This line adds a dependency on the modules Makefile.
  204. $(TEST_ACCEPTANCE_MODULES_SERVER_CE): %/test_acceptance_server_ce: %/Makefile
  205. # This line adds the environment variable BASE_CONFIG=$(CFG_SERVER_CE) to all
  206. # invocations of `web$ make modules/foo/test_acceptance_server_ce`.
  207. $(TEST_ACCEPTANCE_MODULES_SERVER_CE): export BASE_CONFIG = $(CFG_SERVER_CE)
  208. TEST_ACCEPTANCE_MODULES_SERVER_PRO = $(MODULE_DIRS:=/test_acceptance_server_pro)
  209. $(TEST_ACCEPTANCE_MODULES_SERVER_PRO): %/test_acceptance_server_pro: %/Makefile
  210. $(TEST_ACCEPTANCE_MODULES_SERVER_PRO): export BASE_CONFIG = $(CFG_SERVER_PRO)
  211. CLEAN_TEST_ACCEPTANCE_MODULES = $(MODULE_DIRS:=/clean_test_acceptance)
  212. $(CLEAN_TEST_ACCEPTANCE_MODULES): %/clean_test_acceptance: %/Makefile
  213. clean_test_acceptance_modules: $(CLEAN_TEST_ACCEPTANCE_MODULES)
  214. clean_ci: clean_test_acceptance_modules
  215. test_acceptance_module_noop:
  216. @echo
  217. @echo Module '$(MODULE_NAME)' does not run in ${LABEL}.
  218. @echo
  219. TEST_ACCEPTANCE_MODULE_MAYBE_IN := \
  220. test_acceptance_module_maybe_in_saas \
  221. test_acceptance_module_maybe_in_server_ce \
  222. test_acceptance_module_maybe_in_server_pro \
  223. test_acceptance_module: $(TEST_ACCEPTANCE_MODULE_MAYBE_IN)
  224. test_acceptance_module_maybe_in_saas: export BASE_CONFIG=$(CFG_SAAS)
  225. test_acceptance_module_maybe_in_server_ce: export BASE_CONFIG=$(CFG_SERVER_CE)
  226. test_acceptance_module_maybe_in_server_pro: export BASE_CONFIG=$(CFG_SERVER_PRO)
  227. # We need to figure out whether the module is loaded in a given environment.
  228. # This information is stored in the (base-)settings.
  229. # We get the full list of modules and check for a matching module entry.
  230. # Either the grep will find and emit the module, or exits with code 1, which
  231. # we handle with a fallback to a noop make target.
  232. # Run the node command in a docker compose container which provides the needed
  233. # npm dependencies (from disk in dev-env or from the CI image in CI).
  234. # Pick the test_unit service which is very light-weight -- the test_acceptance
  235. # service would start mongo/redis.
  236. $(TEST_ACCEPTANCE_MODULE_MAYBE_IN): test_acceptance_module_maybe_in_%:
  237. $(MAKE) $(shell \
  238. OVERLEAF_CONFIG=$(BASE_CONFIG) \
  239. $(DOCKER_COMPOSE) run --rm test_unit \
  240. node test/acceptance/getModuleTargets test_acceptance_$* \
  241. | grep -e /$(MODULE_NAME)/ || echo test_acceptance_module_noop LABEL=$* \
  242. )
  243. # See docs for test_acceptance_server_ce how this works.
  244. test_acceptance_module_saas: export BASE_CONFIG = $(CFG_SAAS)
  245. test_acceptance_module_saas:
  246. $(MAKE) modules/$(MODULE_NAME)/test_acceptance_saas
  247. test_acceptance_module_server_ce: export BASE_CONFIG = $(CFG_SERVER_CE)
  248. test_acceptance_module_server_ce:
  249. $(MAKE) modules/$(MODULE_NAME)/test_acceptance_server_ce
  250. test_acceptance_module_server_pro: export BASE_CONFIG = $(CFG_SERVER_PRO)
  251. test_acceptance_module_server_pro:
  252. $(MAKE) modules/$(MODULE_NAME)/test_acceptance_server_pro
  253. # See docs for test_acceptance_server_ce how this works.
  254. TEST_ACCEPTANCE_MODULES_MERGED_INNER = $(MODULE_DIRS:=/test_acceptance_merged_inner)
  255. $(TEST_ACCEPTANCE_MODULES_MERGED_INNER): %/test_acceptance_merged_inner: %/Makefile
  256. test_acceptance_modules_merged_inner:
  257. $(MAKE) $(shell \
  258. OVERLEAF_CONFIG=$(BASE_CONFIG) \
  259. node test/acceptance/getModuleTargets test_acceptance_merged_inner \
  260. )
  261. # inner loop for running saas tests in parallel
  262. no_more_targets:
  263. # If we ever have more than 40 modules, we need to add _5 targets to all the places and have it START at 41.
  264. test_acceptance_modules_merged_inner_1: export START=1
  265. test_acceptance_modules_merged_inner_2: export START=11
  266. test_acceptance_modules_merged_inner_3: export START=21
  267. test_acceptance_modules_merged_inner_4: export START=31
  268. TEST_ACCEPTANCE_MODULES_MERGED_INNER_SPLIT = \
  269. test_acceptance_modules_merged_inner_1 \
  270. test_acceptance_modules_merged_inner_2 \
  271. test_acceptance_modules_merged_inner_3 \
  272. test_acceptance_modules_merged_inner_4 \
  273. # The node script prints one module per line.
  274. # Using tail and head we skip over the first n=START entries and print the last 10.
  275. # Finally we check with grep for any targets in a batch and print a fallback if none were found.
  276. $(TEST_ACCEPTANCE_MODULES_MERGED_INNER_SPLIT):
  277. $(MAKE) $(shell \
  278. OVERLEAF_CONFIG=$(BASE_CONFIG) \
  279. node test/acceptance/getModuleTargets test_acceptance_merged_inner \
  280. | tail -n+$(START) | head -n 10 \
  281. | grep -e . || echo no_more_targets \
  282. )
  283. # See docs for test_acceptance_server_ce how this works.
  284. test_acceptance_modules_merged_saas: export COMPOSE_PROJECT_NAME = \
  285. acceptance_test_modules_merged_saas_$(BUILD_DIR_NAME)
  286. test_acceptance_modules_merged_saas: export BASE_CONFIG = $(CFG_SAAS)
  287. test_acceptance_modules_merged_server_ce: export COMPOSE_PROJECT_NAME = \
  288. acceptance_test_modules_merged_server_ce_$(BUILD_DIR_NAME)
  289. test_acceptance_modules_merged_server_ce: export BASE_CONFIG = $(CFG_SERVER_CE)
  290. test_acceptance_modules_merged_server_pro: export COMPOSE_PROJECT_NAME = \
  291. acceptance_test_modules_merged_server_pro_$(BUILD_DIR_NAME)
  292. test_acceptance_modules_merged_server_pro: export BASE_CONFIG = $(CFG_SERVER_PRO)
  293. # All these variants run the same command.
  294. # Each target has a different set of environment defined above.
  295. TEST_ACCEPTANCE_MODULES_MERGED_VARIANTS = \
  296. test_acceptance_modules_merged_saas \
  297. test_acceptance_modules_merged_server_ce \
  298. test_acceptance_modules_merged_server_pro \
  299. $(TEST_ACCEPTANCE_MODULES_MERGED_VARIANTS):
  300. $(DOCKER_COMPOSE) run --rm test_acceptance make test_acceptance_modules_merged_inner || { $(DOCKER_COMPOSE) logs mongo; exit 42; }
  301. $(DOCKER_COMPOSE) down -v -t 0
  302. # outer loop for running saas tests in parallel
  303. TEST_ACCEPTANCE_MODULES_MERGED_SPLIT_SAAS = \
  304. test_acceptance_modules_merged_saas_1 \
  305. test_acceptance_modules_merged_saas_2 \
  306. test_acceptance_modules_merged_saas_3 \
  307. test_acceptance_modules_merged_saas_4 \
  308. test_acceptance_modules_merged_saas_1: export COMPOSE_PROJECT_NAME = \
  309. acceptance_test_modules_merged_saas_1_$(BUILD_DIR_NAME)
  310. test_acceptance_modules_merged_saas_2: export COMPOSE_PROJECT_NAME = \
  311. acceptance_test_modules_merged_saas_2_$(BUILD_DIR_NAME)
  312. test_acceptance_modules_merged_saas_3: export COMPOSE_PROJECT_NAME = \
  313. acceptance_test_modules_merged_saas_3_$(BUILD_DIR_NAME)
  314. test_acceptance_modules_merged_saas_4: export COMPOSE_PROJECT_NAME = \
  315. acceptance_test_modules_merged_saas_4_$(BUILD_DIR_NAME)
  316. $(TEST_ACCEPTANCE_MODULES_MERGED_SPLIT_SAAS): export BASE_CONFIG = $(CFG_SAAS)
  317. $(TEST_ACCEPTANCE_MODULES_MERGED_SPLIT_SAAS): test_acceptance_modules_merged_saas_%:
  318. $(DOCKER_COMPOSE) run --rm test_acceptance make test_acceptance_modules_merged_inner_$* || { $(DOCKER_COMPOSE) logs mongo; exit 42; }
  319. $(DOCKER_COMPOSE) down -v -t 0
  320. test_acceptance_modules: $(TEST_ACCEPTANCE_MODULES_MERGED_VARIANTS)
  321. #
  322. # CI tests
  323. #
  324. ci:
  325. MOCHA_ARGS="--reporter tap" \
  326. $(MAKE) test
  327. #
  328. # Lint & format
  329. #
  330. ORG_PATH = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
  331. RUN_LINT_FORMAT ?= \
  332. docker run --rm ci/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER)
  333. NODE_MODULES_PATH := ${PATH}:${PWD}/node_modules/.bin:/overleaf/services/web/node_modules/.bin
  334. WITH_NODE_MODULES_PATH = \
  335. format_backend \
  336. format_frontend \
  337. format_misc \
  338. format_styles \
  339. format_test_app_unit \
  340. format_test_app_rest \
  341. format_test_modules \
  342. $(TEST_SUITES) \
  343. $(WITH_NODE_MODULES_PATH): export PATH=$(NODE_MODULES_PATH)
  344. lint: lint_eslint
  345. lint_eslint:
  346. npm run lint
  347. lint: lint_stylelint
  348. lint_stylelint:
  349. npm run lint:styles
  350. lint: lint_pug
  351. lint_pug:
  352. bin/lint_pug_templates
  353. lint: lint_locales
  354. lint_locales:
  355. bin/lint_locales
  356. lint: check_extracted_translations
  357. check_extracted_translations:
  358. bin/check_extracted_translations
  359. sort_locales:
  360. node scripts/translations/sort.js
  361. cleanup_unused_locales:
  362. node scripts/translations/cleanupUnusedLocales.js
  363. lint: lint_flag_res_send_usage
  364. lint_flag_res_send_usage:
  365. bin/lint_flag_res_send_usage
  366. lint: lint_overleafModuleImports
  367. lint_overleafModuleImports:
  368. node scripts/check_overleafModuleImports.mjs
  369. lint: typecheck_frontend
  370. typecheck_frontend:
  371. npm run --silent type-check
  372. lint: typecheck_backend
  373. typecheck_backend:
  374. npm run --silent type-check:backend
  375. lint_in_docker:
  376. $(RUN_LINT_FORMAT) make lint -j2 --output-sync
  377. format: format_js
  378. format_js:
  379. npm run --silent format
  380. format: format_styles
  381. format_styles:
  382. npm run --silent format:styles
  383. format: format_pug
  384. format_pug:
  385. npm run --silent format:pug
  386. format_fix:
  387. npm run --silent format:fix
  388. format_styles_fix:
  389. npm run --silent format:styles:fix
  390. format_pug_fix:
  391. npm run --silent format:pug:fix
  392. format_in_docker:
  393. $(RUN_LINT_FORMAT) make format -j2 --output-sync
  394. SHELLCHECK_OPTS = \
  395. --shell=bash \
  396. --external-sources
  397. SHELLCHECK_COLOR := $(if $(CI),--color=never,--color)
  398. SHELLCHECK_FILES := { git ls-files "*.sh" -z; git grep -Plz "\A\#\!.*bash"; } | sort -zu
  399. shellcheck:
  400. @$(SHELLCHECK_FILES) | xargs -0 -r docker run --rm -v $(PWD):/mnt -w /mnt \
  401. koalaman/shellcheck:stable $(SHELLCHECK_OPTS) $(SHELLCHECK_COLOR)
  402. shellcheck_fix:
  403. @$(SHELLCHECK_FILES) | while IFS= read -r -d '' file; do \
  404. diff=$$(docker run --rm -v $(PWD):/mnt -w /mnt koalaman/shellcheck:stable $(SHELLCHECK_OPTS) --format=diff "$$file" 2>/dev/null); \
  405. if [ -n "$$diff" ] && ! echo "$$diff" | patch -p1 >/dev/null 2>&1; then echo "\033[31m$$file\033[0m"; \
  406. elif [ -n "$$diff" ]; then echo "$$file"; \
  407. else echo "\033[2m$$file\033[0m"; fi \
  408. done
  409. #
  410. # Build & publish
  411. #
  412. IMAGE_CI ?= ci/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER)
  413. IMAGE_REPO ?= us-east1-docker.pkg.dev/overleaf-ops/ol-docker/$(PROJECT_NAME)
  414. IMAGE_REPO_BRANCH ?= $(IMAGE_REPO):$(BRANCH_NAME)
  415. IMAGE_REPO_MAIN ?= $(IMAGE_REPO):main
  416. IMAGE_REPO_FINAL ?= $(IMAGE_REPO_BRANCH)-$(BUILD_NUMBER)
  417. export SENTRY_RELEASE ?= ${COMMIT_SHA}
  418. build_deps:
  419. docker build --pull \
  420. --build-arg BUILDKIT_INLINE_CACHE=1 \
  421. --cache-from $(IMAGE_REPO_BRANCH)-deps \
  422. --cache-from $(IMAGE_REPO_MAIN)-deps \
  423. --tag $(IMAGE_REPO_BRANCH)-deps \
  424. --target deps \
  425. --file Dockerfile \
  426. ../..
  427. build_dev:
  428. docker build \
  429. --build-arg SENTRY_RELEASE \
  430. --tag $(IMAGE_CI) \
  431. --tag $(IMAGE_CI)-dev \
  432. --target dev \
  433. --file Dockerfile \
  434. ../..
  435. build_webpack:
  436. $(MAKE) build_webpack_once \
  437. || $(MAKE) build_webpack_once
  438. build_webpack_once:
  439. docker build \
  440. --build-arg SENTRY_RELEASE \
  441. --cache-from $(IMAGE_CI)-dev \
  442. --cache-from $(IMAGE_CI)-webpack \
  443. --tag $(IMAGE_CI)-webpack \
  444. --target webpack \
  445. --file Dockerfile \
  446. ../..
  447. build_pug:
  448. docker build \
  449. --build-arg SENTRY_RELEASE \
  450. --cache-from $(IMAGE_CI)-dev \
  451. --tag $(IMAGE_CI)-pug \
  452. --target pug \
  453. --file Dockerfile \
  454. ../..
  455. build:
  456. docker build \
  457. --build-arg SENTRY_RELEASE \
  458. --cache-from $(IMAGE_CI)-webpack \
  459. --cache-from $(IMAGE_CI)-pug \
  460. --cache-from $(IMAGE_REPO_FINAL) \
  461. --tag $(IMAGE_REPO_FINAL) \
  462. --target app \
  463. --file Dockerfile \
  464. ../..
  465. publish:
  466. docker push $(IMAGE_REPO_FINAL)
  467. SENTRY_IMAGE=getsentry/sentry-cli:2.16.1
  468. sentry_prefetch:
  469. docker pull $(SENTRY_IMAGE)
  470. sentry_upload: MONOREPO=$(shell cd ../../ && pwd)
  471. sentry_upload:
  472. docker run --rm \
  473. --volume $(MONOREPO):$(MONOREPO) --workdir $(PWD) \
  474. --user "$(shell id -u):$(shell id -g)" \
  475. --env BRANCH_NAME --env SENTRY_RELEASE \
  476. --entrypoint bin/sentry_upload \
  477. $(SENTRY_IMAGE)
  478. tar:
  479. COMPOSE_PROJECT_NAME=tar_$(BUILD_DIR_NAME) $(DOCKER_COMPOSE) run --rm tar
  480. COMPOSE_PROJECT_NAME=tar_$(BUILD_DIR_NAME) $(DOCKER_COMPOSE) down -v -t 0
  481. build_storybook:
  482. npm run lezer-latex:generate
  483. npm run build-storybook
  484. if [ -n "$(BRANCH_NAME)" ]; then \
  485. echo "Renaming storybook-static -> $(BRANCH_NAME)."; \
  486. d=$$(dirname "$(BRANCH_NAME)"); \
  487. mkdir -p "storybook-output/$$d"; \
  488. mv storybook-static "storybook-output/$$d/$$(basename "$(BRANCH_NAME)")/"; \
  489. fi
  490. MODULE_TARGETS = \
  491. $(TEST_ACCEPTANCE_MODULES_SAAS) \
  492. $(TEST_ACCEPTANCE_MODULES_SERVER_CE) \
  493. $(TEST_ACCEPTANCE_MODULES_SERVER_PRO) \
  494. $(TEST_ACCEPTANCE_MODULES_MERGED_INNER) \
  495. $(CLEAN_TEST_ACCEPTANCE_MODULES) \
  496. $(TEST_UNIT_MODULES) \
  497. $(MODULE_TARGETS):
  498. $(MAKE) -C $(dir $@) $(notdir $@) BUILD_DIR_NAME=$(BUILD_DIR_NAME)
  499. .PHONY:
  500. $(MODULE_TARGETS) \
  501. compile_modules compile_modules_full clean_ci \
  502. test test_module mongo_migrations_for_tests test_unit test_unit_app \
  503. test_unit_modules test_unit_module test_frontend \
  504. test_acceptance test_acceptance_app test_acceptance_modules \
  505. test_acceptance_module ci format format_fix lint \
  506. shellcheck shellcheck_fix \
  507. build publish tar