Revision 1d861f142634ed96a0fbe171ba39c498656e8711 authored by Nicolas Thouvenin on 18 January 2019, 10:21:56 UTC, committed by Nicolas Thouvenin on 18 January 2019, 10:21:56 UTC
1 parent 05d453c
Raw File
Makefile
.PHONY: build test help
.DEFAULT_GOAL := help

export NODE_ENV ?= development

ifneq "$(CI)" "true"
	USER_ID = $(shell id -u)
	GROUP_ID = $(shell id -g)

	export UID = $(USER_ID)
	export GID = $(GROUP_ID)
endif

help:
	@grep -P '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

# If the first argument is one of the supported commands...
SUPPORTED_COMMANDS := npm restore-db-dev _restore_db_dev restore-db-prod _restore_db_prod build import_units import_users import_sections import_unit_sections
SUPPORTS_MAKE_ARGS := $(findstring $(firstword $(MAKECMDGOALS)), $(SUPPORTED_COMMANDS))
ifneq "$(SUPPORTS_MAKE_ARGS)" ""
    # use the rest as arguments for the command
    COMMAND_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
    # ...and turn them into do-nothing targets
    $(eval $(COMMAND_ARGS):;@:)
endif

# Initialization ===============================================================
copy-conf: ## Initialize the configuration files by copying the *''-dist" versions (does not override existing config)
	-cp -n ./config/${NODE_ENV}-dist.js ./config/${NODE_ENV}.js
ifeq ($(NODE_ENV), development)
	-cp -n ./config/test-dist.js ./config/test.js
endif

install-npm-dependencies:
	echo "Installing Node dependencies"
ifeq "$(CI)" "true"
	docker-compose run --no-deps --rm api npm ci
else
	docker-compose run --no-deps --rm api npm install
endif

install: copy-conf install-npm-dependencies ## Install npm dependencies for the api, admin, and frontend apps

build-app:
	docker-compose run --no-deps --rm api npm run build

build: ## build the docker image localy
	docker build -t inistcnrs/lodex --build-arg http_proxy --build-arg https_proxy .

run-dev: ## run node server
	docker-compose up --force-recreate

mongo: ## Start the mongo database
	docker-compose up -d mongo

mongo-shell: ## Start the mongo shell
	docker-compose exec mongo mongo lodex

mongo-shell-test: ## Start the mongo shell for the test database
	docker-compose exec mongo mongo lodex_test

npm: ## allow to run dockerized npm command eg make npm 'install koa --save'
	docker-compose run --no-deps --rm api npm $(COMMAND_ARGS)

test-api-e2e: ## Run the API E2E tests
	NODE_ENV=test \
	EZMASTER_PUBLIC_URL="http://localhost:3010" \
	docker-compose run --rm -p "3010:3010" api \
		npm run test:api:e2e

test-api-e2e-watch: ## Run the API E2E tests in watch mode
	NODE_ENV=test \
	EZMASTER_PUBLIC_URL="http://localhost:3010" \
	docker-compose run --rm -p "3010:3010" api \
		npm run test:api:e2e:watch

test-unit: ## Run the unit tests
	NODE_ENV=test docker-compose run --no-deps --rm api npm run test:unit

test-unit-watch: ## Run the unit tests
	NODE_ENV=test docker-compose run --no-deps --rm api npm run test:unit:watch

test-e2e-start-dockers:
ifeq "$(CI)" "true"
	docker-compose -f docker-compose.spec.yml up -d --build
else
	docker-compose -f docker-compose.spec.yml up -d
endif

test-e2e-logs:
	docker-compose -f docker-compose.spec.yml logs

test-e2e-logs-watch:
	docker-compose -f docker-compose.spec.yml logs -f

test-e2e-stop-dockers:
	docker-compose -f docker-compose.spec.yml down

test-e2e-open-cypress:
	NODE_ENV=e2e ./node_modules/.bin/cypress open

test-e2e:
ifeq "$(DISABLE_E2E_TESTS)" "true"
	echo "E2E tests were disable because of the flag 'DISABLE_E2E_TESTS=true'"
else
	$(MAKE) test-e2e-start-dockers
	./node_modules/.bin/cypress install
	./bin/wait-for -t 30 localhost:3000 -- ./node_modules/.bin/cypress run --browser chrome || \
		echo "ERROR: The API didn't start! Here are the logs:" && \
		$(MAKE) test-e2e-logs && \
		$(MAKE) test-e2e-stop-dockers && \
		echo 'Done or not, but why ?'
	$(MAKE) test-e2e-stop-dockers
endif


test: test-unit test-api-e2e test-e2e

clear-database: ## Clear the whole database
	docker-compose exec mongo mongo lodex --eval " \
		db.publishedDataset.remove({}); \
		db.publishedCharacteristic.remove({}); \
		db.field.remove({}); \
		db.dataset.remove({}); \
		db.publishedFacet.remove({}); \
	"
clear-publication: ## Clear the published data, keep uploaded dataset and model
	docker-compose exec mongo mongo lodex --eval " \
		db.publishedDataset.remove({}); \
		db.publishedCharacteristic.remove({}); \
		db.publishedFacet.remove({}); \
	"
back to top