Click here to Skip to main content
15,882,063 members
Articles / Web Development / HTML
Tip/Trick

Writing a unit-testable jQuery plugin.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
23 Feb 2015CPOL3 min read 9.6K   24   6  
This article will describe how to write a unit-testable jQuery plugin.

Introduction

Automated unit testing is a principle of good development practice, this article will describe how to write a unit-testable jQuery plugin.

The attached jQuery plugin download demonstrates a jQuery plugin pattern with public functions, supporting structured unit testing. The plugin has been scaffolded using the Yeoman jQuery generator.

The plugin is a dialog that will hide/show predefined dialog HTML using CSS and JavaScript. The plugin may also be destroyed, removing all trace of the plugin from the DOM.

Requirements

The plugin scaffold uses Grunt and Bower, Node is required for the build environment.

With Node installed, on the command line, at the project root, run Node install to get the required Node modules for the Grunt tasks.

$ node install

With Bower installed, on the command line, at the project root, run Bower install to get the jQuery and QUnit Bower components.

$ bower install

With Grunt installed there are three possible grunt tasks for this project accessible through the command line.

$ grunt

The default grunt task will run the unit tests on a local server, and if the tests are passed it will generate the distribution code.

$ grunt serve

Grunt serve will created a local server, the demo can be found at http://0.0.0.0:9000/demo, although a local server is not necessary to run this demo.

$ grunt test

Grunt test will run the unit tests.

Using the code

The plugin has three sections, the dialog class, the class prototypes, and the jQuery constructor.

Dialog class

Definition of the dialog class, with class properties.

JavaScript
var Dialog = function (element, options) {
  this.element = $(element);
  this.options = options;
  this.isShown = null;
};

Dialog methods

Hide, show, amd destroy methods have been created using prototype. These method are public and can be called through the jQuery constructor.

JavaScript
Dialog.prototype.destroy = function () {
  this.hide();
  this.element.removeData('dialog');
};

Public methods are testable by unit testing frameworks.

jQuery constructor

The jQuery constructor binds the new dialog class instance as data to the element, and allows us to set the element and option properties.

If the same class instance already exists then we use that instance and test for available methods or options.

JavaScript
$.fn.dialog = function (method) {
  return this.each(function () {
    var data = $(this).data('dialog'),
      options = $.extend(true, {}, $.fn.dialog.defaults, $(this).data('dialog'), typeof method === 'object' && method);
    if (!data) {
      $(this).data('dialog', (data = new Dialog(this, options)));
    }
    if (typeof method === 'string' && data[method]) {
      data[method]();
    } else if (options.auto) {
      data.show();
    }
  });
};

Defaults options are available to become properties of the class instance.

JavaScript
$.fn.dialog.defaults = {
  auto: true
}; 

Unit tests

Unit tests for the jQuery plugin are created in QUnit, the full API reference can be found at http://api.qunitjs.com/ the included handy little reference can be found below:

Test methods:
  module(name, {[setup][ ,teardown]})
  test(name, callback)
  expect(numberOfAssertions)
  stop(increment)
  start(decrement)
Test assertions:
  ok(value, [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])
  throws(block, [expected], [message])

We define a simple dialog module for all the unit tests, further modules could be created if we need to target specific features of the code. Within the module we define a beforeEach callback, before each test we set this.elems to the example id.

JavaScript
module('dialog', {
  beforeEach: function() {
    this.elems = $('#example');
  }
});

The quint-fixture div contains the HTML we will be using in the tests.

HTML
<div id="qunit-fixture">
  <div class="dialog" id="example" role="dialog" tabindex="-1">
    <div class="dialog-container">
      <div class="dialog-main">
        <h3>Dialog test markup</h3>
        <p>Phasellus gravida <a href="#">hendrerit</a> viverra.</p>
        <button class="hide">Hide dialog</button>
      </div>
    </div>
  </div>
</div>

The first test asserts whether or not the plugin is chainable.

JavaScript
test('is chainable', function() {
  expect(1);
  strictEqual(this.elems.dialog(), this.elems, 'should be chainable');
});

With the second test we have several assertions, the first tests whether the object returns a jQuery collection. The second and third test whether the collection contains the element and whether the collection contains the plugin data.

JavaScript
test('should return jquery collection', function () {
  var $dialog = this.elems.dialog();
  ok($dialog instanceof $, 'returns jquery collection');
  strictEqual($dialog[0], this.elems[0], 'collection contains element');
  ok($dialog.data('dialog'), 'collection contains data');
});

The following assertions test each of the public methods within the plugin.

We test whether the show method is called, knowing that when the dshow method is called the dialog element should be visible we can test whether the dialog element is visible.

JavaScript
test('should call show method', function () {
  var $dialog = this.elems.dialog();
  ok($dialog.dialog('show'), 'show method called');
  ok($dialog.is(':visible'), 'dialog is visible');	
});

We test whether the hide method is called, first we use the show method we know is working to make the dialog visible, then we call the hide method. Knowing that when the hide method is called the dialog element should not be visible we can test whether the dialog element is visible.

JavaScript
test('should call hide method', function () {
  var $dialog = this.elems.dialog();
  ok($dialog.dialog('show'), 'show method called');
  ok($dialog.dialog('hide'), 'hide method called');
  ok($dialog.is(':hidden'), 'dialog is hidden');		
});

We test whether the destroy method is called, knowing that when the destroy method is called all trace of the dialog on the element should be removed we can tests whether the dialog data on the element is undefined.

JavaScript
test('should call destroy method', function () {
  var $dialog = this.elems.dialog();
  ok($dialog.dialog('destroy'), 'destroy method called');
  strictEqual(undefined, $dialog.data('dialog'), 'data on element destroyed');
});

Further information on unit testing with QUnit can be found at http://qunitjs.com/.

History

v1.0.0 - Article release with supported code - 23/02/2015.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United Kingdom United Kingdom
I am a technical architect working on front end development practices at Infosys.

Comments and Discussions

 
-- There are no messages in this forum --