shelley86 / genxi-jwd-testing

Mocha and chai testing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mocha testing with chai

Description

Chai is an assertion library that is often used alongside Mocha. It provides functions and methods that help you compare the output of a certain test with its expected value. Chai provides clean syntax that almost reads like English! Chai and mocha will be used in the browser to show a different method of testing.

There will be some practice exercises to test out the skills needed for testing various types of functions and programs.

Resources

Setup

  1. fork this repo and then use git clone
  2. cd testing
  3. code .
  4. open index.html
  5. npm install chai-spies

Running tests

  • open index.html
  • Refresh the page to run the tests
  • Link a different spec file and a different src file inside of the index.html to change tests

Calculator

In this exercise we'll be writing unit tests for src/calculator/index.js.

In test/calculator.test.js, write unit tests, testing each method on the Calculator class.

Link these in the index.html

You should test both the functionality of each method as well as any errors methods could throw.

To test whether a function or method throws an error, we'll use the throw matcher.

This has already been done for you for the add method in test/calculator.test.js. Let's take a look at the test case.

describe('#add', () => {
  describe('when passed a string as a number', () => {
    it('should throw an error', () => {
      const calculator = new Calculator();

      expect(() => calculator.add('1', 2)).to.throw();
      expect(() => calculator.add(1, '2')).to.throw();
    });
  });
});

Notice how we pass expect an arrow function? That's because if passed the result of the function itself, the error will trigger and stop our test from running at all.

Replace the expect lines with the following, refresh SpecRunner.html and have a look at the result.

expect(calculator.add('1', 2)).to.throw();
expect(calculator.add(1, '2')).to.throw();

You should see something like this:

Image of test result from calculator

See how the error has been thrown and stopped our test from running? By using an arrow function and calling our function within it, we can let mocha call our function and check if it throws.

Replace the expect lines back to the following, refresh the page and have a look at the result.

expect(() => calculator.add('1', 2)).to.throw();
expect(() => calculator.add(1, '2')).to.throw();

Much better:

Image of test

To complete the exercise, add unit tests for the rest of the methods on the Calculator class. Test that each method:

  • Returns the correct result
  • Errors when passed strings as parameters

2. Chance

In this exercise, we'll be testing the headsOrTails function from src/chance/index.js.

The headsOrTails function returns 'heads' or 'tails' depending on the result of coin.flip(), which has a 50% chance of being true or false.

Let's have a look at the included test case in test/chance.test.js.

describe('headsOrTails', () => {
  describe('when the coin flip is true', () => {
    it('should return heads', () => {
      const result = headsOrTails();

      expect(result).to.equal('heads');
    });
  });
})

Here, we're calling headsOrTails, storing the result into a variable result, and expecting that variable to be 'heads'.

See if the test passes. Refresh the page a few more times.

Notice how sometimes the test passes, and sometimes it doesn't?

That's because the headsOrTails function returns 'heads' or 'tails' depending on the result of coin.flip(), which has a 50% chance to be true or false!

We call this an external dependency, something our function depends on, but can't control.

This is known as a flaky test, because without changing the condition of the test, the test sometimes passes and sometimes fails.

We can handle this flaky test by modifying the behaviour of coin.flip() so that it always does we want it to do. We can do this using a Spy.

Let's use the spy.on function to create a spy that spy's on the code.flip() method and modifies it to behave in a predictable manner.

Replace the test case with the following:

describe('headsOrTails', () => {
  describe('when the coin flip is true', () => {
    it('should return heads', () => {
      // spy on coin.flip and change its return value to always be true
      const spy = chai.spy.on(coin, 'flip', returns => true);
      
      const result = headsOrTails();
      expect(result).to.equal('heads');
    });
  });
})

Save the spec and refresh index.html a few times, you should notice the test passes each time!

Go ahead and create a test for when the coin flip is false, expecting the result to be 'tails'.

3. BuyBeer

In this challenge, we'll be testing src/buyBeer/index.js.

Create a spec for the file, add the spec to index.html.

First, create tests for the canBuyBeer function, test that the function works as expected for an age under 18, and for an age over 18.

Next, create tests for the canGregBuyBeer function. First, create a test as if greg.age is over 17.

You should notice a couple of things here:

  1. It's hard to test the result, since the return value of canGregBuyBeer includes greg's age, which is randomly generated by the Person class.
  2. Sometimes greg's age is over 18, sometimes it isn't. It's another flakey test!

What can we use to handle these cases? A Mock!

Because age is a property, not a function, we don't need to use a Spy to achieve a similar result, instead, we can just replace the value with what we need, and revert it back later. We call this a Mock.

Check out the following test case that saves a reference to greg's age, modifies it, and restores it after.

describe('canGregBuyBeer', () => {
  describe('when greg is 18', () => {
    it('should return "Greg is 18, he can buy beer!"', () => {
      const originalAge = greg.age;
      greg.age = 18
      
      const result = canGregBuyBeer();

      expect(result).to.equal('Greg is 18, he can buy beer!');
      greg.age = originalAge;
    })
  });
});

Because we've set greg's age to explicitly be 18, we know that canGrebBuyBeer will always return the string 'Greg is 18, he can buy beer!'.

It's important to set greg.age back to its original value as not to break any further tests.

Now that we've implemented a test for when greg is over 18, can you add a test case for when greg is under 18?

4. Weather

Before starting this exercise, refresh your self on Promises.

For this exercise, we'll be testing src/weather/index.js.

Create a test for it, and link it to the index.html.

We're going to write some unit tests for the function getWeatherFor.

We want to write the following tests to cover all our code paths in the function:

  • When we pass 'Sydney' we get back the right temp.
  • When we pass 'Melbourne' we get back the right temp.
  • When we pass any other city we get an error.

Because getWeatherFor returns a promise, we'll have to handle the fact that it is an Asynchronous function.

First, let's use what we know to try and get a test to pass. Let's start with the first case:

When we pass 'Sydney' we get back the right temp.

Because getWeatherFor returns a promise, we'll need to use .then to get the value, that's start with that.

describe('getWeatherFor', () => {
  describe('when passed "Sydney"', () => {
    it('should return 25', () => {
      getWeatherFor('Sydney')
        .then((temp) => {
          expect(temp).to.equal(25);
        });
    });
  });
});

There's two ways to do this, the second is to return the function getWeatherFor, like so:

describe('getWeatherFor', () => {
  describe('when passed "Sydney"', () => {
    it('should return 25', () => {
      return getWeatherFor('Sydney')
        .then((temp) => {
          expect(temp).to.equal(25);
        });
    });
  });
});

This will allow us to work with other testing libraries in the future, so feel free to skip the second option. you may also come across chai as promised which will be even easier, however it doesn't work in the browser just yet.

We also need to test our error messages, if we pass in a city that does not exist it should use our error message in the index.js We are only looking at the .catch() part of the function.

describe('getWeatherFor', () => {
  describe('when passed "Adelaide"', () => {
    it('should throw an error', () => {
      return getWeatherFor('adelaide')
        .then((message) => {
          throw new Error('was not supposed to succeed'); 
        })
        .catch((message) => { expect(message).to.equal('City adelaide does not exist in our database'); });
    });
  });
});
});

Now that we've added cases for 'Sydney' and 'Adelaide', try adding a test case for 'Melbourne'.

5. Login

For this exercise, we're going to be combining everything we've learnt so far:

  • Spies
  • Mocks
  • Promises

to test a "real world" example in src/login/index.js.

First, let's go through each file:

We're going to test login together, and then we'll start testing the clickButton event, with the challenge to finish it off on your own!

Before you continue, create a test file for login and link it to index.html.

Looking at the code for the login function:

const login = (email, password) => Api.login(email, password)
  .then(response => {
    if (response.error) {
      if (response.error === 'user not found') {
        throw new Error('Oops! Incorrect username or password. Check your details and try again.');
      } else if (response.error === 'Missing password') {
        throw new Error('Oops! Missing password, make sure to fill in your password and try again.');
      }
    }

    return response.token;
  });

We can see it calls a function Api.login(), which returns a promise, giving us a response, which we check to see if it includes an error, if it does, we throw errors, otherwise finally return the response.token.

Phew! Let's play around with this function first to get a feel for how it works, note, Api.login() is requesting a real api here.

In index.html in the browser, open up the console and run:

login('eve.holt@reqres.in', 'greg').then(response => console.log(response)).catch(err => console.log(err))

Here, we're calling login with the email of 'eve.holt@reqres.in' and the password 'greg', we should see:

Image of SpecRunner.html

Here, the login has been sucessful and returned a token which we logged out.

Next, let's modify our username and password a bit:

login('aaron', 'greg').then(response => console.log(response)).catch(err => console.log(err))

This should cause the API to give us back an error, looking something like:

Image of SpecRunner.html

Finally, lets take out the password completly:

login('aaron').then(response => console.log(response)).catch(err => console.log(err))

Which should give us our final error.

Image of specrunner

Now we've gone through all the possible results from calling login using the real API, let's go ahead and test these.

When we're testing against real APIs, to stop our code from being "flaky", its best to replace the API (which is an external dependency) with a Spy.

We need to make sure our Spy returns the same type of value that the original function returns, in this case its a promise.

With this in mind, let's implement a test to test the happy path of our function, when the API returns back a token and no error.

describe("login", () => {
  describe("when the user logs in successfully", () => {
    it("should resolve a token", () => {
      const response = { token: "123" };
      const loginValue = new Promise((resolve, reject) => {
        resolve(response);
      });
      const spy = chai.spy.on(Api, "login", (returns) => loginValue);

      return login("test", "test").then((response) => {
        expect(response).to.equal("123");
      });
    });
  });
});

There's a lot going on here, but lets break it down.

First,

  const response = { token: '123' };

We're creating a response object with the response we want the promise that Api.login() returns to give us.

Next,

const loginValue = new Promise((resolve, reject) => {
  resolve(response);
});

Here we're creating the Promise that Api.login() is going to return. You can read up on the syntax over on the Promise MDN article.

In short, a new Promise() takes a callback, which we can then use to resolve a value (that will get passed to .then()) or reject a value (that will get passed to .catch()).

After that,

const spy = chai.spy.on(Api, "login", (returns) => loginValue);

We're using a spy to modify Api.login() to instead return our Promise we created (loginValue), instead of calling the real API.

Finally,

return login("test", "test").then((response) => {
        expect(response).to.equal("123");

We are checking this resolves to our response.token!

Note that, it doesn't matter what email or password we pass to login(), since we've used a Spy to always resolve with our token.

Phew, that was a big one. Go through it a few more times if you need to, before moving on to the next case.

Now that we have tested the happy path of our login function, let's add a test case for when the Api.login() function resolves with an error.

describe("when the user uses an incorrect email", () => {
  it("should reject with an error message", () => {
    const response = { error: "user not found" };
    const loginValue = new Promise((resolve, reject) => {
      resolve(response);
    });

    const spy = chai.spy.on(Api, "login", (returns) => loginValue);
    expect(() => {
      login("test", "test").to.throw(
        Error,
        "Oops! Incorrect username or password. Check your details and try again."
      );
    });
  });
});

We'll break this one down too.

First,

const response = { error: 'user not found' };

Similar to the previous test, but here we're setting the response to be an object with the error property set to 'user not found'. This will trigger the right part of the login function we want to test.

Next,

const loginValue = new Promise((resolve, reject) => {
  resolve(response);
});

Exactly the same as the previous test, we're creating a promise that we will give Api.login() to return using our spy. We're resolving the response we just created.

Then,

const spy = chai.spy.on(Api, "login", (returns) => loginValue);

Again, same as the previous test. We're spying on Api.login() and setting it's returnValue to the loginValue we just created.

Finally,

    expect(() => {
      login("test", "test").to.throw(
        Error,
        "Oops! Incorrect username or password. Check your details and try again."
      );
    }); 

Here we're using throw([errorLike], [errMsgMatcher], [msg]) and inserting in our error message.

Using what you have learnt so far, write a test that tests when a password is not passed to login. It should be very similar to the previous test case!

6. Login: CHALLENGE - clickButton (OPTIONAL)

This exercise is a challenging one! Use all you've learnt to write tests for clickButton in src/login/index.js.

Some tips:

  • Use mocks for the values of the fields
  • Test both the happy path and when theres an error. There's two errors here! Both from login
  • Try returning the function clickButton in your test.
  • Call .then() on the result of clickButton and use the callback provided to .then() to check things!, for example:
    return clickButton.then(() => {
      expect(loginMessage.innerText).to.equal('FILL THIS IN!')
    })
  • Use spies to spy on Api.login so that the code doesn't call the API!
  • Make sure you test the fields are reset!

Good luck! This is a tricky one! A completed example will be provided towards the end of the day.

About

Mocha and chai testing


Languages

Language:JavaScript 76.2%Language:HTML 23.8%