- nodejs https://nodejs.org/en/ (v8+)
- Kafka
- Docker, Docker Compose
Configuration for the notification server is at config/default.js.
The following parameters can be set in config files or in env variables:
-
DISABLE_LOGGING: whether to disable logging, default is false
-
LOG_LEVEL: the log level; default value: 'debug'
-
KAFKA_CONSUMER_URL: comma separated Kafka hosts for consumer to listen; default value: 'localhost:9092'
-
KAFKA_CONSUMER_GROUP_ID: consumer group id; default value: 'tc-challenge-registration-processor-group'
-
KAFKA_CONSUMER_CLIENT_CERT: Kafka connection certificate, optional; default value is undefined; if not provided, then SSL connection is not used, direct insecure connection is used; if provided, it can be either path to certificate file or certificate content
-
KAFKA_CONSUMER_CLIENT_CERT_KEY: Kafka connection private key, optional; default value is undefined; if not provided, then SSL connection is not used, direct insecure connection is used; if provided, it can be either path to private key file or private key content
-
KAFKA_PRODUCER_URL: comma separated Kafka hosts for producer to publish on; default value: 'localhost:9092'
-
KAFKA_PRODUCER_CLIENT_CERT: Kafka connection certificate for producer, optional; default value is undefined; if not provided, then SSL connection is not used, direct insecure connection is used; if provided, it can be either path to certificate file or certificate content
-
KAFKA_PRODUCER_CLIENT_CERT_KEY: Kafka connection private key for producer, optional; default value is undefined; if not provided, then SSL connection is not used, direct insecure connection is used; if provided, it can be either path to private key file or private key content
-
CREATE_NOTIFICATION_TOPIC: Submission notification create Kafka topic, default value is 'submission.notification.create'
-
UPDATE_NOTIFICATION_TOPIC: Submission notification update Kafka topic, default value is 'submission.notification.update'
-
PRODUCER_TOPIC: Kafka topic that producer publishes results to, default value is 'test.email'
-
CHALLENGE_API_URL: Challenge API URL, default value is 'https://api.topcoder-dev.com/v5/challenges'
-
SUBMISSION_API_URL: Submission API URL, default value is 'https://api.topcoder-dev.com/v5/submissions'
-
MEMBER_API_URL: Member API URL, default value is 'https://api.topcoder-dev.com/v5/members'
-
AUTH0_URL: Auth0 url for M2M token
-
AUTH0_AUDIENCE: Auth0 audience for M2M token || 'https://www.topcoder-dev.com',
-
TOKEN_CACHE_TIME: Cache time of M2M token, optional
-
AUTH0_CLIENT_ID: Auth0 client id for M2M token
-
AUTH0_CLIENT_SECRET: Auth0 client secret for M2M token
Also note that there is a /health endpoint that checks for the health of the app. This sets up an expressjs server and listens on the environment variable PORT. It's not part of the configuration file and needs to be passed as an environment variable
Configuration for the tests is at config/test.js. Following parameters need to be set via environment variables or directly in config file
- TEST_KAFKA_URL: Kafka URL pointing to Kafka test instance
- TEST_CHALLENGE_API_URL: Challenge API URL to use in tests, default value is 'https://api.topcoder-dev.com/v5/challenges'
- TEST_SUBMISSION_API_URL: Submission API URL to use in testsL, default value is 'https://api.topcoder-dev.com/v5/submissions'
- TEST_MEMBER_API_URL: Member API URL to use in tests, default value is 'https://api.topcoder-dev.com/v5/members'
- WAIT_TIME: wait time used in test, default is 1000 or one second
http://kafka.apache.org/quickstartcontains details to setup and manage Kafka server, below provides details to setup Kafka server in Mac, Windows will use bat commands in bin/windows instead- download kafka at
https://www.apache.org/dyn/closer.cgi?path=/kafka/1.1.0/kafka_2.11-1.1.0.tgz - extract out the downloaded tgz file
- go to extracted directory kafka_2.11-0.11.0.1
- start ZooKeeper server:
bin/zookeeper-server-start.sh config/zookeeper.properties - use another terminal, go to same directory, start the Kafka server:
bin/kafka-server-start.sh config/server.properties - note that the zookeeper server is at localhost:2181, and Kafka server is at localhost:9092
- use another terminal, go to same directory, create some topics:
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic submission.notification.createbin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic submission.notification.updatebin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test.email - verify that the topics are created:
bin/kafka-topics.sh --list --zookeeper localhost:2181, it should list out the created topics
- install dependencies
npm i - run code lint check
npm run lint, runningnpm run lint:fixcan fix some lint errors if any - start processor app
npm start - to start with production config
npm runt start:prod
To run the processor using docker, follow the below steps
-
Navigate to the directory
docker -
Rename the file
sample.api.envtoapi.env -
Set parameters in the file
api.env -
Once that is done, run the following command
docker-compose up
- When you are running the application for the first time, It will take some time initially to download the image and install the dependencies
To run unit tests alone
npm run test
To run unit tests with coverage report, you can check generated coverage report in coverage folder and coverage for src/services/ProcessorService.js is 100%.
npm run cov
To run integration tests alone
npm run e2e
To run integration tests with coverage report, please note e2e tests will run with real api so e2e tests will not cover some error cases but most cases are modified from unit tests
npm run cov-e2e