Makefile 22 KB

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