The goal of these exercises are to assess your proficiency in software engineering that is related to the daily work that we do at Xendit. Please follow the instructions below to complete the assessment.
- Create a new repository in your own github profile named
backend-coding-test
and commit the contents of this folder - Ensure
node (>8.6 and <= 10)
andnpm
are installed - Run
npm install
- Run
npm test
- Run
npm start
- Hit the server to test health
curl localhost:8010/health
and expect a200
response
Below will be your set of tasks to accomplish. Please work on each of these tasks in order. Success criteria will be defined clearly for each task
- Please deliver documentation of the server that clearly explains the goals of this project and clarifies the API response that is expected.
-
- A pull request against
master
of your fork with a clear description of the change and purpose and merge it
- A pull request against
-
- [BONUS] Create an easy way to deploy and view the documentation in a web format and include instructions to do so
Please implement the following tooling:
-
-
eslint
- for linting
-
-
-
nyc
- for code coverage
-
-
-
pre-push
- for git pre push hook running tests
-
-
-
winston
- for logging
-
-
- Create a pull request against
master
of your fork with the new tooling and merge it
- Create a pull request against
-
-
eslint
should have an opinionated format
-
-
-
nyc
should aim for test coverage of80%
across lines, statements, and branches
-
-
-
pre-push
should run the tests before allowing pushing usinggit
-
-
-
winston
should be used to replace console logs and all errors should be logged as well. Logs should go to disk.
-
-
- Ensure that tooling is connected to
npm test
- Ensure that tooling is connected to
-
- Create a separate pull request against
master
of your fork with the linter fixes and merge it
- Create a separate pull request against
-
- Create a separate pull request against
master
of your fork to increase code coverage to acceptable thresholds and merge it
- Create a separate pull request against
-
- [BONUS] Add integration to CI such as Travis or Circle
-
- [BONUS] Add Typescript support
-
- [BONUS] Add badges for TravisCI, Coveralls and Code Climate
Please implement pagination to retrieve pages of the resource rides
.
-
- Create a pull request against
master
with your changes to theGET /rides
endpoint to support pagination including:
-
- Code changes
-
- Tests
-
- Documentation
- Create a pull request against
- Merge the pull request
Please implement the following refactors of the code:
-
- Convert callback style code to use
async/await
- Convert callback style code to use
-
- Reduce complexity at top level control flow logic and move logic down and test independently
-
- [BONUS] Split between functional and imperative function and test independently
- A pull request against
master
of your fork for each of the refactors above with:- Code changes
- Tests
Please implement the following security controls for your system:
-
- Ensure the system is not vulnerable to SQL injection
- [BONUS] Implement an additional security improvement of your choice
- A pull request against
master
of your fork with:- Changes to the code
- Tests ensuring the vulnerability is addressed
Please implement load testing to ensure your service can handle a high amount of traffic
-
- Implement load testing using
artillery
- 1. Create a PR against
master
of your fork including artillery - 2. Ensure that load testing is able to be run using
npm test:load
. You can consider using a tool likeforever
to spin up a daemon and kill it after the load test has completed. - 3. Test all endpoints under at least
100 rps
for30s
and ensure thatp99
is under50ms
- Implement load testing using