torque/test/animator.js

79 lines
1.8 KiB
JavaScript
Raw Normal View History

2015-08-04 18:32:36 +08:00
var torque = require('../lib/torque');
var sinon = require('sinon');
require('phantomjs-polyfill');
2015-05-04 17:05:48 +08:00
2015-08-04 21:45:11 +08:00
var animator;
2015-05-04 17:05:48 +08:00
2015-08-04 21:45:11 +08:00
QUnit.module('animator', {
beforeEach: function() {
animator = new torque.Animator(function(){}, {steps: 500, animationDuration: 10});
}
});
2015-05-04 17:05:48 +08:00
2015-08-04 18:32:36 +08:00
asyncTest('time moves', function(assert) {
animator.start();
setTimeout(function(){
console.log(animator.running);
assert.notEqual(animator._time, 0);
QUnit.start();
}, 100)
animator.pause();
2015-05-04 17:05:48 +08:00
});
2015-08-04 18:32:36 +08:00
test("rescale should resume animation if previously playing", function(assert){
animator.toggle();
animator.rescale();
assert.ok(animator.running);
animator.pause()
});
asyncTest("onStart runs properly", function(assert){
animator.options.onStart = function(){
assert.ok(true);
animator.pause();
QUnit.start();
};
2015-08-04 21:45:11 +08:00
animator.start();
2015-08-04 18:32:36 +08:00
});
test("stop should take the pointer to position zero", function(assert){
animator.stop()
assert.equal(animator._time, 0);
});
test("stop should call onStop", function(assert){
animator.options.onStop = function(){
assert.ok(true);
animator.pause();
};
animator.stop();
});
2015-08-04 21:45:11 +08:00
test("altering steps should rescale", function(assert){
sinon.spy(animator, "rescale");
animator.steps(600);
assert.ok(animator.rescale.calledOnce);
});
2015-08-04 18:32:36 +08:00
2015-08-04 21:45:11 +08:00
asyncTest("tick should set time to zero if steps are bigger than range", function(assert){
animator.start();
setTimeout(function(){
animator._time = 0;
animator.step(800);
assert.ok(animator.step() < 800);
QUnit.start();
}, 200);
animator.pause();
});
2015-08-04 18:32:36 +08:00
2015-08-04 21:45:11 +08:00
QUnit.test("tick should pause animation on end if loop is disabled", function(assert){
animator.options.loop = false;
var done = assert.async();
animator.toggle();
setTimeout(function(){
assert.notEqual(animator._time, 0);
done();
}, 100)
animator.pause();
});