lsmar / lab-intro-node

Getting started with Node? Try and solve me!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo_ironhack_blue 7

Intro to NodeJS

Introduction

Today is our first day using NodeJS, so we will practice doing some basic operations. Ready to start?

Requirements

  • Fork this repo
  • Clone this repo

Submission

  • Upon completion, run the following commands:

    git add .
    git commit -m "done"
    git push origin master
    
  • Create Pull Request so your TAs can check up your work.

Testing - Introduction

This exercise will be completed through a series of tests. You should be familiar with testing from previous lessons and exercises, but just in case, here is a short recap of Intro to testing. πŸ˜‰

What is testing?

Software testing is a process of executing an application to validate and verify that it meets the business and technical requirements and works as expected.

Testing is a process, not a single activity. As early as we start developing and conducting tests, the better are chances that we can prevent deficiencies in the code or product design.

In this exercise, we have created all the tests you need to create the solution, and you have to execute them all and create the code to accomplish all the requirements.

Tests prove that your code actually works in every situation in which it’s designed to work. Even when you are improving the design or creating new features, you can change your current code without breaking what already works.

Testing with Mocha

Mocha is a feature-rich JavaScript test framework running on Node.js and in the browser, making asynchronous testing simple and fun.

We have already included Mocha in the project you just forked, so let's see how to use it to implement our code.

Usage

To start using mocha, you have to install it as a global package in your system. Remember that we should always use the Node Package Manager (NPM) to manage all the packages in our projects.

We will do so by running:

$ npm install -g mocha

We can check that Mocha is correctly installed by running:

$ mocha --version
6.1.4

Project Structure

Before start coding, we will explain the provided project structure:

starter-code/
β”œβ”€β”€ test
β”‚   └── test.js
└─ package.json
└─ index.js

We are going to be working with the index.js file. Here we will write the implementation of our SortedList class.

The test folder contains all the tests we will execute with Mocha.

Running the tests

Run the tests with Mocha is super easy, you just have to run npm test. Before you run this command, make sure you navigate to the starter-code.

$ npm test

> lab-intro-node@1.0.0 test ~~/lab-intro-node/starter-code
> mocha

SortedList
  Constructor
    1) should create an empty SortedList
  #add(x)
    2) should add a single value to SortedList
    3) should add a third value to SortedList
  #get(i)
    βœ“ should return an OutOfBounds exception if there is no element in that position
    4) should return the element in that position
  #add(x) and get(i)
    5) should add a second value to SortedList, sorted
    6) should add a third value to SortedList, sorted
  #max()
    7) should return an EmptySortedList exception if there is no element in the list
    8) should return the max element in the list
  #min()
    9) should return an EmptySortedList exception if there is no element in the list
    10) should return the min element in the list
  #sum()
    11) should return 0 for an empty sorted list
    12) should add(sum) all elements of the array if there are elements in the list
  #average()
    13) should return an EmptySortedList exception if there are no elements
    14) should return the average of elements in the array


  1 passing (13ms)
  14 failing

Don't worry if only 1 test is passing... your goal is to make them ALL PASS!! πŸ˜„

SortedList Class

The task here is to create a class that maintains a sorted list of numbers in ascending order.

The class will have the following methods:

constructor()

new SortedList should create a new object from the SortedList class.

The object should have a items and length property.

  • items should be an array.
  • length should be the number of elements in the array.

add()

The add(x) method will add x to the items array.

get()

The method will get the nth value in the list.

You should also provide a length property that gives the length of the list. Make sure you throw an error OutOfBounds if a user tries to get an element in the unexisting position (ex. if the array has 5 elements and we are trying to get element on the position 12).

max()

The max() method should return the highest value of the array.

In the case you have an empty SortedList, you must throw an error with the message "EmptySortedList". For this, you can use:

throw new Error("EmptySortedList")

If you want more information about try...catch, you can go on the Mozilla documentation.

min()

The min() method should return the lowest value of the array.

In the case you have an empty SortedList, you must throw an error with the message "EmptySortedList".

sum()

The sum() method should return the sum value of the array. At this point, we will not tell you anything else, so go ahead and check the corresponding test and see if there's anything else to be added. You can do this developer! ❀️

average()

The average() method should return the average value of the array.

The same as above, check the corresponding test to see if there's anything else to be added.

And you reached the end!

Happy Coding! ❀️

About

Getting started with Node? Try and solve me!


Languages

Language:JavaScript 100.0%