Makefile 21 KB

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