Makefile 21 KB

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