TreeviewCopyright © aleen42 all right reserved, powered by aleen42

Unit Tests Back

1. Introduction

Unit tests should be a large topic in the computer science when taking about tests during developing. However, this article is only focusing on how to do unit tests in JavaScript, and how we can use this tool to easily test our code. As there are so many tools for unit tests, here I want to document them, which can be seen in my developing work.

So, how to write unit tests, and run it?

2. Frameworks

When it comes to frameworks of unit tests, JavaScript developers usually make a decision among following:

  • QUnit
  • Jasmine
  • Mocha

So what is the differences between them?

QUnit qunit Jasmine jasmine Mocha mocha
Features
  • Similar to server-side frameworks(JUnit, Nunit)
  • Built by the jQuery team
  • Used to test jQuery's features
  • No dependencies
  • Can test server-side JavaScript
  • Open Source Framework
  • Behavior Driven Development framework
  • Supports both client-side and server-side testing
  • Open Source Framework
  • Started in Node
  • Supports both client-side and server-side testing
  • Supports both BDD and TDD style tests
  • Supports both command line and browser
  • Supports any JavaScript assertion library (YUI Port, expect.js, should.js, jshould.js, assert.js, chai.js)
  • Supports asynchronous testing
  • Requires an assertion library
Methods
  • ok(state, message)
  • equal(actual, expected, message)
  • notEqual(actual, expected, message)
  • deepEqual(actual, expected, message)
  • notDeepEqual(actual, expected, message)
  • strictEqual(actual, expected, message)
  • notStrictEqual(actual, expected, message)
  • raises(actual, expected, message)
  • expect(x).(not.)toEqual(y);
  • expect(x).(not.)toBe(y);
  • expect(x ).(not.)toMatch(pattern);
  • expect(x ).(not.)toBeDefined();
  • Expect(x).(not.)toBeUndefined();
  • expect(x ).(not.)toBeNull();
  • expect(x ).(not.)toBeTruthy();
  • expect(x ).(not.)toBeFalsy();
  • expect(x ).(not.)toContain(y);
  • expect(x ).(not.)toBeLessThan(y);
  • expect(x ).(not.)toBeGreaterThan(y);
  • expect(function(){ fn ();}).(not.)toThrow(ex);
  • Assert: var assert = chai.assert;
  • Expect: var expect = chai.expect;
  • Should: var should = chai.should(); /** notice should is a function */
Summary

It's easy to use, because you just need to include two files before running tests.

It's easier to use, because all things has been wrapped in a package.

It's flexible but not easy to use, as you have to choose assertion framework, like Chai, which is the most popular alternative.

As shown in the table above, we can apparently know the main different features among theses three frameworks, and different methods we may use to create test cases. Then, how to create cases explicitly?

For QUnit, we can code like this snippet:

/** test.spec.js */
test('case', function () {
    ok(1 == '1', 'Passed!');
});

As for Jasmine:

/** test.spec.js */
describe('case1', function () {
    it('should not be equal', function () {
        expect(1).not.toEqual('1');
    });
});

/** ignore the following thest */
xdescribe('case2', function () {
    it('should be equal', function () {
        expect(1).toEqual('1');
    })
});

When it comes to Mocha, it's similar to Jasmine:

/** test.spec.js */
describe('case', function () {
    it('should not be equal', function () {
        expect(1).to.equal(1);
    });
});

3. Karma

When learning AngularJS (Angular 1.x), we may know that the official tutorial of AngularJS has adopted Karma to run unit tests. If we also want to use Karma, we may have to set up a configuration file firstly, named karma.conf.js.

module.exports = function (config) {
    config.set({
        /** the root path of your application */
        basePath: '.',

        /** unit tests files */
        files: [
            '**/*.spec.js'
        ],

        frameworks: ['jasmine'],

        browsers: ['Chrome'],

        plugins: [
            'karma-chrome-launcher',
            'karma-jasmine'
        ]

        /** run a server to watch any change of unit tests files */
        autoWatch: false,

        /** only run tests once */
        singleRun: true,

        /** we need mocha to do unit tests */
        repoters: ['mocha']
    });
};
Empty Comments
Sign in GitHub

As the plugin is integrated with a code management system like GitLab or GitHub, you may have to auth with your account before leaving comments around this article.

Notice: This plugin has used Cookie to store your token with an expiration.