If you want, you may also complete this challenge in: Python or Java
We would like you to help us with a small service that we have for handling bookings. A booking for us simply tells us which guest will be staying in which unit, and when they arrive and the number of nights that guest will be enjoying our amazing suites, comfortable beds, great snac.. apologies - I got distracted. Bookings are at the very core of our business and it's important that we get these right - we want to make sure that guests always get what they paid for, and also trying to ensure that our unit are continually booked and have as few empty nights where no-one stays as possible. A unit is simply a location that can be booked, think like a hotel room or even a house. For the exercise today, we would like you to help us solve an issue we've been having with our example service, as well as implement a new feature to improve the code base. While this is an opportunity for you to showcase your skills, we also want to be respectful of your time and suggest spending no more than 3 hours on this (of course you may also spend longer if you feel that is necessary)
Identify and fix a bug that we've been having with bookings - there seems to be something going wrong with the booking process where a guest will arrive at a unit only to find that it's already booked and someone else is there! There are many ways to solve this bug - there is no single correct answer that we are looking for.
Allowing guests to extend their stays if possible. It happens that sometimes all the time people love staying at our locations so much that they want to extend their stay and remain there a while longer. We'd like a new API that will let them do that
While we provide a choice of projects to work with (either TS, Python, or Java), we understand if you want to implement this in something you're more comfortable with. You are free to re-implement the parts that we have provided in another language, however this may take some time and we would encourage you not spend more time than you're comfortable with!
When implementing, make sure you follow known best practices around architecture, testability, and documentation.
Make sure to have the following installed
- npm
To get started, clone the repository locally and run the following
[~]$ ./init.shTo make sure that everything is setup properly, open http://localhost:8000 in your browser and you should see an OK message. The logs should be looking like this
The server is running on http://localhost:8000
GET / 200 3.088 ms - 16To navigate to the swagger docs, open the url http://localhost:8000/api-docs/
There is one failing test, which is the first task of the challenge. This test should pass - without changing the expected return code of course ;) - once you have fixed the bug. If you need to change the format of the object, or the given interface, please ensure all tests still pass.
[~]$ npm run test
...
FAIL test/booking.test.ts
Booking API
✓ Create fresh booking (52 ms)
✓ Same guest same unit booking (16 ms)
✓ Same guest different unit booking (12 ms)
✓ Different guest same unit booking (12 ms)
✕ Different guest same unit booking different date (13 ms)
...
Test Suites: 1 failed, 1 total
Tests: 1 failed, 4 passed, 5 total
Snapshots: 0 total
Time: 0.984 s, estimated 1 s
Ran all test suites.