Skip to content

coderhacker/submissions-api

 
 

Repository files navigation

Topcoder Submission API

Pre-requisites

  1. Active AWS Account
  2. Node.js 8.11.x
  3. Npm 5.6.x
  4. Postman for Verification
  5. Docker and Docker-Compose (Optional for Local Deployment)

Setup

  1. Download your AWS Credentials from AWS Console. Refer AWS Documentation

  2. Depending on your Operating System, create AWS credentials file in the path listed below

Linux, Unix, and macOS users: ~/.aws/credentials

Windows users: C:\Users\USER_NAME\.aws\credentials
  1. credentials file should look like below
[default]
aws_access_key_id = SOME_ACCESS_KEY_ID
aws_secret_access_key = SOME_SECRET_ACCESS_KEY
  1. Create a S3 bucket from AWS Console and note down the bucket name

  2. Create AWS ES Domain from AWS Console and note down the end point details. Note: This application supports ES from other providers also like Bonsai, etc...

If you are creating ES Domain in AWS, It will take some time for ES Domain to get created and for End point details to pop up.

End point will look something like https://search-submission-xxxxxx.us-east-1.es.amazonaws.com/

  1. From the root of the project, install NPM dependencies
npm i
  1. Refer to config/default.js and Set up the environment variables as necessary

e.g.

export AWS_REGION="<AWS Region>"
export S3_BUCKET="<S3 Bucket Name>"
export ARTIFACT_BUCKET="<Artifact S3 Bucket Name>"
export ES_HOST="<ES Endpoint>"
export AUTH0_URL="<Auth0 URL>"
export AUTH0_CLIENT_ID="<Auth0 Client ID>"
export AUTH0_CLIENT_SECRET="<Auth0 Client Secret>"

Note: Make sure to set Auth0, AWS and ES related environment variables

  1. Modify the other configuration variables if necessary in config/default.js

  2. Create the tables in DynamoDB by runing the script

npm run create-tables
  1. Import the review types in database by running the script
npm run init-db
  1. Index can be created in ES by running the script
npm run create-index
  1. Since Submission processor is still under development, To load dummy data in to ES, run the following script
npm run init-es

This script will load the data from scripts/data directory into ES

  1. Run the application
npm run start

Linting JS files

npm run lint or npm run lint:fix -- To fix lint errors which could be fixed

Running the application in Development mode

npm run dev

Local Deployment with Docker

To run the Submissions API using docker, follow the below steps

  1. Navigate to the directory docker

  2. Rename the file sample.api.env to api.env

  3. Set the required AWS and Auth0 credentials in the file api.env

  4. Once that is done, run the following command

docker-compose up
  1. When you are running the application for the first time, It will take some time initially to download the image and install the dependencies

Unit tests and Integration tests

Integration tests use different index submission-test which is not same as the usual index submission.

Please ensure to create the index submission-test or the index specified in the environment variable ES_INDEX_TEST before running the Integration tests. You could re-use the existing scripts to create index but you would need to set the below environment variable

export ES_INDEX=submission-test

Running unit tests and coverage

To run unit tests alone

npm run test

To run unit tests with coverage report

npm run cov

Running integration tests and coverage

To run integration tests alone

npm run e2e

To run integration tests with coverage report

npm run cov-e2e

Migrating data from DynamoDB to ES

To migrate the existing data from DynamoDB to ES, run the following script

npm run db-to-es

Swagger UI

Swagger UI will be served at http://localhost:3000/docs

Postman verification

  1. Open Postman

  2. Import Postman environment and Collection from docs directory

  3. Postman API requests are categorized into four parts

    • Review Type
    • Submission
    • Review
    • Review Summation
  4. Postman collection contains both positive and few negative test cases

  5. After creating a submission, submissionId will be automatically set in Postman environment to serve future requests

  6. Please ensure to create a submission using Postman before testing Review and ReviewSummation end points, since the body of few Review and ReviewSummation requests references submissionId from Environment which is set by triggering POST /submissions request in Postman.

General Notes

  1. All JWT tokens provided in Postman environment file is created in JWT.IO with secret mysecret

  2. There are 3 tokens provided in the environment collection representing each role - Topcoder User, Copilot, Administrator

  3. DynamoDB performance seems to be slower in my testing

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 99.7%
  • Other 0.3%