To design a parking lot system with ability to find:
-
Registration numbers of all cars of a particular colour.
-
Slot number in which a car with a given registration number is parked.
-
Slot numbers of all slots where a car of a particular colour is parked.
The source code for this project is written using Node.js. Make sure you have Node.js installed on your computer before running this application, if not please install Node.js from here.
To check if you have Node.js and NPM installed by running simple commands to see what version of each is installed:
-
Test Node.js: To see if Node is installed, type
node -v
in Terminal. This should print the version number so you’ll see something like thisv10.16.0
. -
Test NPM. To see if NPM is installed, type
npm -v
in Terminal. This should print the version number so you’ll see something like this6.9.0
.
Note: Node installer installs both Node.js and npm on your system.
This is a console application written in Node.js
. This can be run in two modes:
-
Interactive Mode: An interactive terminal based shell where commands can be typed in to perform different actions.
-
File Mode: It accepts a filename as a parameter at the terminal and read the commands from that file.
Proceed to the steps below only if you've Node.js
installed. If not, please refer pre requisites section.
Open terminal and navigate (cd
) to this folder and type the following commands:
1. npm install
2. npm start
Open terminal and type node src/index.js data/input.txt
.
node src/index.js <path_to_file.txt>
Note: You can find a few sample input files inside data/
folder.
STEP 1: npm install
or npm i
will download all the dependencies defined in package.json
file and generate a node_modules/
folder with the installed modules. Learn more here.
STEP 2: npm start
or npm run start
will start the application. It is equivalent to node src/index.js
Navigate to bin/
folder and open parking_lot
with double click. It'll open a terminal where different commands can be typed in.
You may face permission related issues, please allow opening applications from unauthorized developers as it's blocked due to security reasons.
If you're using macOS catalina, you'll be prompted security warning as this binary is not notarized. Learn more about Notarization here.
If you're still facing issues, please build the console application locally. Kindly refer Build Script section to build locally.
Users can interact with the Parking Lot system via a following simple set of commands which produce a specific output:
-
create_parking_lot:
create_parking_lot 6
will create a parking lot with 6 slots. -
park < REGISTRATION NUMBER > < COLOR >:
park KA-01-HH-1234 White
will allocate the nearest slot from entry gate. -
leave:
leave 4
will make slot number 4 free. -
status:
status
will display cars and their slot details
Slot No. Registration No Color
1 KA-01-HH-1234 White
2 KA-01-HH-9999 Red
3 KA-01-BB-0001 White
5 KA-01-HH-2701 Black
6 KA-01-HH-3141 Black
-
registration_numbers_for_cars_with_colour < COLOR >:
registration_numbers_for_cars_with_colour White
will display the registration number of the cars of white color e.g.KA-01-HH-1234, KA-01-BB-0001
-
slot_numbers_for_cars_with_colour < COLOR >:
slot_numbers_for_cars_with_colour White
will display slot numbers of the cars of white color e.g.1, 3
-
slot_number_for_registration_number < REGISTRATION NUMBER >:
slot_number_for_registration_number MH-04-AY-1111
will display the slot number for the car with registration number MH-04-AY-1111. -
leave_car_by_registration_number:
leave_car_by_registration_number JH-01-LT-0008
will free the slot occupied by car with registration number JH-01-LT-0008. -
available_slot_numbers:
available_slot_numbers
will display available slot numbers e.g. 2, 6, 8. -
allocated_slot_numbers:
allocated_slot_numbers
will display occupied slot numbers e.g. 1, 3, 4, 5, 7. -
exit:
exit
will quit the application and return to the console.
NOTE: Any commands which are not mentioned above will throw an error:
<INPUT> is an invalid command
To view all the commands in terminal, please run npm run help
There are two classes defined:
ParkingLot()
: It is the main class which is used to initialize a parking lot. In each parking lot there is maximum number of slots and an array of slots that will be occupied by the car. It has following methods:
-
createParkingLot(input)
: Creates a parking lot with given input. It throws an errorMinimum one slot is required to create parking slot
if zero or negative number (n <= 0) is provided as an input. -
parkCar(input)
: Allocates nearest slot from entry gate to the car. It can throw following errors:-
Minimum one slot is required to create parking slot
: When parking lot is not initialized. -
Sorry, parking lot is full
: When parking lot has reached its maximum capacity. -
Please provide registration number and color both
: When input contains either of two i.e. registration number and color of the car, not both.
-
-
leaveCar(input)
: Removes car in given slot in parking lot. It throws following errors:-
Sorry, parking lot is empty
if parking lot is empty. -
Slot number <SLOT NUMBER> is not found
when slot number is absent. -
Slot number <SLOT NUMBER> is already free
when slot number is not occupied.
-
-
leaveCarByCarNumber (input)
: Makes the slot free for car of given registration number. -
getParkingStatus()
: Returns an array containing slot number, registration number and color. It throws an errorSorry, parking lot is empty
if parking lot is empty. -
getCarsWithSameColor(input)
: Returns a comma separated string containing registration numbers of cars with same color e.g.KA-01-HH-1234, KA-01-HH-9999, KA-01-P-333
. -
getSlotsWithSameColorCar(input)
: Returns a comma separated string containing slot numbers of car with same color e.g.3, 5, 6
. -
getSlotByCarNumber(input)
: Finds slot number of car for given registration number. It returnsNot found
when car is not present. -
findNearestAvailableSlot()
: Finds nearest free slot. -
findAllAvailableSlots()
: returns a comma separated string of free parking slots e.g. 1, 4, 7. It returnsnull
if parking lot is not created. -
findAllAllocatedSlots()
: returns a comma separated string of allocated parking slots e.g. 2, 3, 5, 6. It returnsnull
if parking lot is not created.
Car()
-
new Car(NUMBER, COLOR)
: Constructor used to initialize a car object containing two fields, registration number and color. -
isCarEqual()
: Checks whether two cars are equal or not.
Note: I've made an assumption that the registration number for two cars can never be same.
Tests are written using Mocha and can be run using npm test
npm run test-unit
: Run unit tests only (Tests for functions in Parking Class)npm run test-system
: Run repository tests only (See this section)npm run test-lint
: Run lint tests using ESLintnpm run test
: Run all tests (lint tests + unit tests + system tests)
Unit tests are written for the methods of ParkingLot
class.
System tests mainly include repository structure tests. It tests for the following:
Repository must contain:
package.json
README.md
.gitignore
.eslintrc
npm/
foldersrc/
foldertests/
folder
package.json
- must have valid name, author and license
- must have proper keywords
- must have valid version string
- must have scripts definitions
- must point to precise version for dependencies
- should not overlap dependencies
- must have devDependencies
.gitignore
must contain build/
, dist/
, out/
, node_modules/
folders.
npm run test-lint
is used to run JavaScript lint tests. It detects the coding style issues. ESLint rules are defined in .eslintrc.js
file.
node_modules/eslint/bin/eslint.js --fix src/
can be run to fix lint errors.
To see code coverage report, run npm run test
.
The current code coverage for the tests are following:
Type | Percentage |
---|---|
Statement | 91.48 |
Branch | 69.57 |
Function | 89.53 |
Lines | 91.25 |
- Function coverage: Has each function (or subroutine) in the program been called?
- Statement coverage: Has each statement in the program been executed?
- Branch coverage: Has each branch (also called DD-path) of each control structure (such as in if and case statements) been executed?
- Line coverage: Has each executable line in the source file been executed?
NOTE: Code coverage is added to the mocha tests (npm run test
) using nyc.
You can see the code-coverage report in terminal as well as detailed HTML report inside coverage/
folder.
Go to coverage/
folder and open index.html
.
npm run build
will build the executable(console application) inside bin/
folder which can be opened by double clicking on it.
Make sure you've already done with npm install
, if not, please install dependencies first. Please refer this section for the same.
Note: pkg is used to package the Node.js application into an executable. Learn more here.
Writing code is easy but maintaining isn’t? One can read one's code but it's difficult for others to read. With this spirit, I've added JSDoc comments in code.
Go to out/
folder and open global.html
. You'll find the documentation for the source code there.
To generates the docs locally, open terminal and run npm run create-docs
.
-
Mocha: A JavaScript test framework for Node.js programs. Learn more here.
-
Chai: A BDD/TDD assertion library for Node.js and it can be paired with any JS testing framework. Learn more here.
-
nyc: A JS code coverage tool extensively tested with Mocha for measuring code coverage. Learn more here.
-
Chalk: A npm module used to style terminal string. Learn more here.
-
ESLint: A static code analysis tool for identifying problematic patterns found in JavaScript code. It covers both code quality and coding style issues. Learn more here.
-
pkg: It is used to package a Node.js project into an executable that can be run even on devices without Node.js installed. Learn more here.
-
JSDoc: An open source API documentation generator for Javascript. It allows developers to document their code through comments. It is supported only for Node.js versions >
v8.15.0
. Learn more here.
Please go to screenshots/
folder to find screenshots of running Parking Lot console application.
Click here to view e2e working demo video.
Here's the cheat sheet for you!
Open terminal and type the following:
-
cd parking_lot
: Navigates to theparking_lot
root folder. -
npm install
: Installs all the dependencies. -
npm run start
: Starts the console application in interactive mode. -
npm run test
: Runs all the tests. -
npm run test-unit
: Runs all the unit tests. -
npm run test-system
: Runs system tests. -
npm run test-lint
: Runs lint test. -
npm run build
: Builds the application inbin/
directory. -
npm run create-docs
: Creates documentation insideout/
folder. -
npm run help
: Displays all supported user commands. -
node src/index.js data/input.txt
: Runs the application in file mode.
Feel free to reach out to me via email. Shoot your doubts at vinitshahdeo@gmail.com.
Glad to see you here! Show some ❤️ by starring this repository.
if (isAwesome) {
// thanks in advance :p
starThisRepository();
}
_____ _ _ __ __
|_ _| |__ __ _ _ __ | | __ \ \ / /__ _ _
| | | '_ \ / _` | '_ \| |/ / \ V / _ \| | | |
| | | | | | (_| | | | | < | | (_) | |_| |
|_| |_| |_|\__,_|_| |_|_|\_\ |_|\___/ \__,_|