How to unit-test Javascript which draws on a HTML canvas? Drawing on the canvas should be checked.
feedback
|
|
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:
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! | ||||
feedback
|
|
I wrote an example for unit-testing canvas and other image-y types with Jasmine and js-imagediff. 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. | |||
|
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. | |||
feedback
|