What are Test Fixtures

Course Home | Code Example(s)

If we have some tests that have similar needs we can group them into a TestFixture. Or in simple terms, put them in the same describe function.

With the tests being in the same describe, it means we can create functions that all the tests can consume. Mocha has provided some of these functions that we can use.

BeforeEach function

If we use the beforeEach function, Mocha will call this function automatically for us before each Test is executed. This can be very useful in helping us set the state of the application ready for the Test. It could include configuring the application, creating test data, or configuring an object for the test to utilise such as a browser driver in Selenium. This is commonly referred to as the SetUp.

AfterEach function

The afterEach function is the opposite to the before function. Mocha will automatically run this function at the end of every test. Here we could reset our application, delete/reset some data in our application or perhaps do some additional reporting, we have endless options. This is commonly referred to as the TearDown.

var assert = require('assert');

describe('hooks', function() {

  before(function() {
    console.log("   - I will run once before the tests are run");
  });

  after(function() {
    console.log("   - I will run once after the tests are run");
  });

  it('Test 1', function() {
    var result = 1 - 1;

    assert.equal(result, 0);
  });

  it('Test 2', function() {
    var result = 1 * 1;

    assert.equal(result, 1);
  });

  beforeEach(function() {
    console.log("   - I will run before each test is run");
  });

  afterEach(function() {
    console.log("   - I will run after each test is run");
  });

});

Before and After

before will run just once before any of the tests in the describe function. So if you run the file, the before function will be executed just once before the first test, and then never again. The same with after, the functions will run once after all the tests are completed. Common usage for these annotations is opening and closing a database connection before all the tests. Or perhaps if doing some UI work, getting the application on a specific page ready for all the tests. Or could even be deploying a new instance of the application.

Next Lesson ➔

Resources

Mocha hooks

Mark Winteringham's photo
Author

Mark Winteringham

@2bittester

Mark Winteringham is a tester, toolsmith and the Ministry of Testing DojoBoss with over 10 years experience providing testing expertise on award-winning projects across a wide range of technology sectors including BBC, Barclays, UK Government and Thomson Reuters. He is an advocate for modern risk-based testing practices and trains teams in Automation in Testing, Behaviour Driven Development and Exploratory testing techniques. He is also the co-founder of Software Testing Clinic a community raising awareness of careers in testing and improving testing education. You can find him on Twitter @2bittester.

Comments