FisherChang / joi-grad-shopping-cart-javascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to Shopping Cart

Read this in other languages: English, Português do Brasil.

This is where you can start to get familiar with the problem and what you need to run it. This codebase is used during pairing session for JOI initiative. It's focused on identifying code smells, refactoring and testing legacy codebase while promoting conversations.

Problem Statement

We have an existing shopping cart application, with a small set of eCommerce/shopping cart rules. Rules include calculation of total price, discount and loyalty points calculation. Most of the business logic is implemented in single method ShoppingCart.checkout.

Technology used

  • Javascript
  • Jest - Unit testing framework

Before the interview

Get familiar with the codebase! Make sure you have the necessary dependencies installed, and that you are able to run the tests.

What you need to run it

Setup the Application

npm install

Run Tests

npm test

Run the Sample Application

To understand how this library would be used you can check the app.js file. If you want to see the results, run:

npm run execute

Existing Business Rules

Application code currently has following rules:

  • Calculates total price and total loyalty points earned by the customer.
  • Products with product code starting with DIS_10 have a 10% discount applied.
  • Products with product code starting with DIS_15 have a 15% discount applied.
  • Loyalty points are earned more when the product is not under any offer.
    • Customer earns 1 point on every $5 purchase.
    • Customer earns 1 point on every $10 spent on a product with 10% discount.
    • Customer earns 1 point on every $15 spent on a product with 15% discount.

About

License:Other


Languages

Language:JavaScript 100.0%