How to unit-test Javascript which draws on a HTML canvas? Drawing on the canvas should be checked.

link|improve this question

Could you expand your question a bit? Exactly what do you want to test? You probably have to write some form of validation functions to make testing easier. – bebraw Dec 10 '10 at 9:16
I want to test a Javascript chart drawing engine. I want to check if the suitable lines and shapes are placed into the HTML canvas at the right places. (coordinates, color, thickness, etc.) – pcjuzer Dec 10 '10 at 11:18
2  
Ok. I guess you could whip up something via dev.w3.org/html5/2dcontext/#dom-context-2d-getimagedata . You can use that method to check out pixel's color. It might help if you could write some dummy tests just to figure out what kind of API you are going to need. – bebraw Dec 10 '10 at 14:48
It would be fully enough for me to check that the certain functions have been invoked with the suitable parameters on canvas. I think about some kind of proxy. – pcjuzer Apr 26 '11 at 10:08
1  
A canvas testing utility: github.com/HumbleSoftware/js-imagediff – pcjuzer Feb 8 at 20:27
show 1 more comment
feedback

3 Answers

up vote 2 down vote accepted

As discussed in the question comments it's important to check that certain functions have been invoked with suitable parameters. pcjuzer proposed the usage of proxy pattern. The following example (RightJS code) shows one way to do this:

var Context = new Class({
    initialize: function($canvasElem) {
        this._ctx = $canvasElem._.getContext('2d');

        this._calls = []; // names/args of recorded calls

        this._initMethods();
    },
    _initMethods: function() {
        // define methods to test here
        // no way to introspect so we have to do some extra work :(
        var methods = {
            fill: function() {
                this._ctx.fill();
            },
            lineTo: function(x, y) {
                this._ctx.lineTo(x, y);
            },
            moveTo: function(x, y) {
                this._ctx.moveTo(x, y);
            },
            stroke: function() {
                this._ctx.stroke();
            }
            // and so on
        };

        // attach methods to the class itself
        var scope = this;
        var addMethod = function(name, method) {
            scope[methodName] = function() {
                scope.record(name, arguments);

                method.apply(scope, arguments);
            };
        }

        for(var methodName in methods) {
            var method = methods[methodName];

            addMethod(methodName, method);
        }
    },
    assign: function(k, v) {
        this._ctx[k] = v;
    },
    record: function(methodName, args) {
        this._calls.push({name: methodName, args: args});
    },
    getCalls: function() {
        return this._calls;
    }
    // TODO: expand API as needed
});

// Usage
var ctx = new Context($('myCanvas'));

ctx.moveTo(34, 54);
ctx.lineTo(63, 12);

ctx.assign('strokeStyle', "#FF00FF");
ctx.stroke();

var calls = ctx.getCalls();

console.log(calls);

You can find a functional demo here.

I have used a similar pattern to implement some features missing from the API. You might need to hack it a bit to fit your purposes. Good luck!

link|improve this answer
Heh, I saw you post this on twitter and was wondering why you had written something like this :) – Jani Hartikainen Apr 26 '11 at 16:55
feedback

I wrote an example for unit-testing canvas and other image-y types with Jasmine and js-imagediff.

Jasmine Canvas Unit Testing

I find this to be better than making sure specific methods on a mock Canvas have been invoked because different series of methods may produce the same method. Typically, I will create a canvas with the expected value or use a known-stable version of the code to test a development version against.

link|improve this answer
feedback

Since the "shapes" and "lines" drawn on a canvas are not actual objects (it's like ink on paper), it would be very hard (impossible?) to do a normal unit test on that.

The best you can do with standard canvas it analyze the pixel data (from the putImageData/getImageData. Like what bedraw was saying).

Now, I haven't tried this yet, but it might be more what you need. Cake is a library for the canvas. It's using alot of the putImageData/getImageData. This example might help with what you are trying to do with a test.

Hope that helps answer your question.

link|improve this answer
As tedious as it is, one can write a mock Context object for the drawing code to depend on and test that the proper calls are made to the Context object. – mcl Nov 1 '11 at 13:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.