guilhermeborgesbastos / OysterCard

A simple version of Oyster Card System from London City

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Oyster Card System

A simple version of Oyster Card System from London City developed using Javascript

Installation

Follow these steps to setup the project

  • Clone the repository into a new folder in your machine;
    • Make sure you have the Git installed Download;
    • git clone https://github.com/guilhermeborgesbastos/OysterCard.git
  • Install and configure the dependencies;
    • Open the Command Prompt and run: npm install;

The problem

You are required to model the following fare card system which is a limited version of London’s Oyster card system. At the end, you should be able to demonstrate a user loading a card with £30, and taking the following trips, and then viewing the balance.

- Tube Holborn to Earl’s Court
- 328 bus from Earl’s Court to Chelsea
- Tube Earl’s court to Hammersmith

The Operation

When the user passes through the inward barrier at the station, their oyster card is charged the maximum fare. When they pass out of the barrier at the exit station, the fare is calculated and the maximum fare transaction removed and replaced with the real transaction (in this way, if the user doesn’t swipe out, they are charged the maximum fare).

All bus journeys are charged at the same price. The system should favour the customer where more than one fare is possible for a given journey.

Business rules

This code uses the following data:

Stations and zones:

Station Zone(s)
Holborn 1
Earl’s Court 1, 2
Wimbledon 3
Hammersmith 2

Fares:

Journey Fares
Anywhere in Zone 1 £2.50
Any one zone outside zone 1 £2.00
Any two zones including zone 1 £3.00
Any two zones excluding zone 1 £2.25
Any three zones £3.20
Any bus journey £1.80

The maximum possible fare is therefore £3.20.

Test Driven Development results

The application was applied to several tests:

About

A simple version of Oyster Card System from London City


Languages

Language:JavaScript 100.0%