jquery/test/unit/tween.js

318 lines
10 KiB
JavaScript
Raw Normal View History

2015-05-18 21:11:21 +00:00
( function() {
// Can't test what ain't there
if ( !includesModule( "effects" ) ) {
2015-05-18 21:11:21 +00:00
return;
}
var oldRaf = window.requestAnimationFrame;
QUnit.module( "tween", {
beforeEach: function() {
2015-05-18 21:11:21 +00:00
window.requestAnimationFrame = null;
Tests: migrate testing infrastructure to minimal dependencies This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes: - `qunit` (our trusty unit testing library) - `selenium-webdriver` (for spinning up local browsers) - `express` (for starting a test server and adding middleware) - express middleware includes uses of `body-parser` and `raw-body` - `yargs` (for constructing a CLI with pretty help text) - BrowserStack (for running each of our QUnit modules separately in all of our supported browsers) - `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK) - We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly. **BrowserStack** - automatically retries individual modules in case of test failure(s) - automatically attempts to re-establish broken tunnels - automatically refreshes the page in case a test run has stalled - Browser workers are reused when running isolated modules in the same browser - runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none. - supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. Supports latest and latest-\d+ in place of browser version. - cleans up after itself (closes the local tunnel, stops the test server, etc.) - Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables. **Selenium** - supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge - supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`) - Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit. - can run multiple browsers and multiple modules concurrently Other notes: - Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions: - `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x. - `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions. - `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions. - BrowserStack tests are set to run on each `main` branch commit - `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions. - This PR includes a workflow to dispatch BrowserStack runs on-demand - The Node version used for most workflow tests has been upgraded to 20.x - updated supportjQuery to 3.7.1 Run `npm run test:unit -- --help` for CLI documentation Close gh-5427
2024-03-05 18:53:39 +00:00
this.sandbox = sinon.createSandbox();
2015-05-18 21:11:21 +00:00
this.clock = this.sandbox.useFakeTimers( 505877050 );
this._oldInterval = jQuery.fx.interval;
jQuery.fx.step = {};
jQuery.fx.interval = 10;
},
afterEach: function() {
2015-05-18 21:11:21 +00:00
this.sandbox.restore();
jQuery.fx.stop();
jQuery.fx.interval = this._oldInterval;
window.requestAnimationFrame = oldRaf;
return moduleTeardown.apply( this, arguments );
}
} );
QUnit.test( "jQuery.Tween - Default propHooks on plain objects", function( assert ) {
assert.expect( 8 );
2015-05-18 21:11:21 +00:00
var propHooks, defaultHook, testObject, fakeTween, stepSpy;
propHooks = jQuery.Tween.propHooks;
assert.equal( typeof propHooks, "object", "jQuery.Tween.propHooks exists" );
2015-05-18 21:11:21 +00:00
defaultHook = propHooks._default;
assert.ok( defaultHook, "_default propHook exists" );
2015-05-18 21:11:21 +00:00
testObject = { test: 0 };
fakeTween = { elem: testObject, prop: "test", now: 10, unit: "px" };
assert.equal( defaultHook.get( fakeTween ), 0, "Can get property of object" );
2015-05-18 21:11:21 +00:00
fakeTween.prop = "testMissing";
assert.equal( defaultHook.get( fakeTween ), undefined, "Can get missing property on object" );
2015-05-18 21:11:21 +00:00
defaultHook.set( fakeTween );
assert.equal( testObject.testMissing, 10, "Sets missing value properly on plain object" );
2015-05-18 21:11:21 +00:00
fakeTween.prop = "opacity";
defaultHook.set( fakeTween );
assert.equal( testObject.opacity, 10, "Correctly set opacity on plain object" );
2015-05-18 21:11:21 +00:00
fakeTween.prop = "test";
stepSpy = jQuery.fx.step.test = this.sandbox.spy();
defaultHook.set( fakeTween );
assert.ok( stepSpy.calledWith( fakeTween ), "Step function called with Tween" );
assert.equal( testObject.test, 0, "Because step didn't set, value is unchanged" );
2015-05-18 21:11:21 +00:00
} );
QUnit.test( "jQuery.Tween - Default propHooks on elements", function( assert ) {
assert.expect( 19 );
2015-05-18 21:11:21 +00:00
var propHooks, defaultHook, testElement, fakeTween, cssStub, styleStub, stepSpy;
propHooks = jQuery.Tween.propHooks;
assert.equal( typeof propHooks, "object", "jQuery.Tween.propHooks exists" );
2015-05-18 21:11:21 +00:00
defaultHook = propHooks._default;
assert.ok( defaultHook, "_default propHook exists" );
2015-05-18 21:11:21 +00:00
testElement = jQuery( "<div>" )[ 0 ];
fakeTween = { elem: testElement, prop: "height", now: 10, unit: "px" };
cssStub = this.sandbox.stub( jQuery, "css" ).returns( 10 );
assert.equal( defaultHook.get( fakeTween ), 10, "Gets expected style value" );
assert.ok( cssStub.calledWith( testElement, "height", "" ), "Calls jQuery.css correctly" );
2015-05-18 21:11:21 +00:00
fakeTween.prop = "testOpti";
testElement.testOpti = 15;
cssStub.resetHistory();
2015-05-18 21:11:21 +00:00
assert.equal( defaultHook.get( fakeTween ), 15, "Gets expected value not defined on style" );
assert.equal( cssStub.callCount, 0, "Did not call jQuery.css" );
2015-05-18 21:11:21 +00:00
fakeTween.prop = "testMissing";
assert.equal( defaultHook.get( fakeTween ), 10, "Can get missing property on element" );
assert.ok( cssStub.calledWith( testElement, "testMissing", "" ), "...using jQuery.css" );
2015-05-18 21:11:21 +00:00
cssStub.returns( "" );
assert.equal( defaultHook.get( fakeTween ), 0, "Uses 0 for empty string" );
2015-05-18 21:11:21 +00:00
cssStub.returns( "auto" );
assert.equal( defaultHook.get( fakeTween ), 0, "Uses 0 for 'auto'" );
2015-05-18 21:11:21 +00:00
cssStub.returns( null );
assert.equal( defaultHook.get( fakeTween ), 0, "Uses 0 for null" );
2015-05-18 21:11:21 +00:00
cssStub.returns( undefined );
assert.equal( defaultHook.get( fakeTween ), 0, "Uses 0 for undefined" );
2015-05-18 21:11:21 +00:00
cssStub.resetHistory();
2015-05-18 21:11:21 +00:00
// Setters
styleStub = this.sandbox.stub( jQuery, "style" );
fakeTween.prop = "height";
defaultHook.set( fakeTween );
assert.ok( styleStub.calledWith( testElement, "height", "10px" ),
2015-05-18 21:11:21 +00:00
"Calls jQuery.style with elem, prop, now+unit" );
styleStub.resetHistory();
2015-05-18 21:11:21 +00:00
fakeTween.prop = "testMissing";
defaultHook.set( fakeTween );
assert.equal( styleStub.callCount, 0, "Did not call jQuery.style for non css property" );
assert.equal( testElement.testMissing, 10, "Instead, set value on element directly" );
2015-05-18 21:11:21 +00:00
jQuery.cssHooks.testMissing = jQuery.noop;
fakeTween.now = 11;
defaultHook.set( fakeTween );
delete jQuery.cssHooks.testMissing;
assert.ok( styleStub.calledWith( testElement, "testMissing", "11px" ),
2015-05-18 21:11:21 +00:00
"Presence of cssHooks causes jQuery.style with elem, prop, now+unit" );
assert.equal( testElement.testMissing, 10, "And value was unchanged" );
2015-05-18 21:11:21 +00:00
stepSpy = jQuery.fx.step.test = this.sandbox.spy();
styleStub.resetHistory();
2015-05-18 21:11:21 +00:00
fakeTween.prop = "test";
defaultHook.set( fakeTween );
assert.ok( stepSpy.calledWith( fakeTween ), "Step function called with Tween" );
assert.equal( styleStub.callCount, 0, "Did not call jQuery.style" );
2015-05-18 21:11:21 +00:00
} );
QUnit.test( "jQuery.Tween - Plain Object", function( assert ) {
assert.expect( 13 );
2015-05-18 21:11:21 +00:00
var testObject = { test: 100 },
testOptions = { duration: 100 },
tween, easingSpy;
tween = jQuery.Tween( testObject, testOptions, "test", 0, "linear" );
assert.equal( tween.elem, testObject, "Sets .element" );
assert.equal( tween.options, testOptions, "sets .options" );
assert.equal( tween.prop, "test", "sets .prop" );
assert.equal( tween.end, 0, "sets .end" );
2015-05-18 21:11:21 +00:00
assert.equal( tween.easing, "linear", "sets .easing when provided" );
2015-05-18 21:11:21 +00:00
assert.equal( tween.start, 100, "Reads .start value during construction" );
assert.equal( tween.now, 100, "Reads .now value during construction" );
2015-05-18 21:11:21 +00:00
easingSpy = this.sandbox.spy( jQuery.easing, "linear" );
assert.equal( tween.run( 0.1 ), tween, ".run() returns this" );
2015-05-18 21:11:21 +00:00
assert.equal( tween.now, 90, "Calculated tween" );
2015-05-18 21:11:21 +00:00
assert.ok( easingSpy.calledWith( 0.1, 0.1 * testOptions.duration, 0, 1, testOptions.duration ),
"...using jQuery.easing.linear with back-compat arguments" );
assert.equal( testObject.test, 90, "Set value" );
2015-05-18 21:11:21 +00:00
tween.run( 1 );
assert.equal( testObject.test, 0, "Checking another value" );
2015-05-18 21:11:21 +00:00
tween.run( 0 );
assert.equal( testObject.test, 100, "Can even go back in time" );
2015-05-18 21:11:21 +00:00
} );
QUnit.test( "jQuery.Tween - Element", function( assert ) {
assert.expect( 15 );
2015-05-18 21:11:21 +00:00
var testElement = jQuery( "<div>" ).css( "height", 100 )[ 0 ],
testOptions = { duration: 100 },
tween, easingSpy, eased;
tween = jQuery.Tween( testElement, testOptions, "height", 0 );
assert.equal( tween.elem, testElement, "Sets .element" );
assert.equal( tween.options, testOptions, "sets .options" );
assert.equal( tween.prop, "height", "sets .prop" );
assert.equal( tween.end, 0, "sets .end" );
2015-05-18 21:11:21 +00:00
assert.equal(
tween.easing,
jQuery.easing._default,
"sets .easing to default when not provided"
);
assert.equal( tween.unit, "px", "sets .unit to px when not provided" );
2015-05-18 21:11:21 +00:00
assert.equal( tween.start, 100, "Reads .start value during construction" );
assert.equal( tween.now, 100, "Reads .now value during construction" );
2015-05-18 21:11:21 +00:00
easingSpy = this.sandbox.spy( jQuery.easing, "swing" );
assert.equal( tween.run( 0.1 ), tween, ".run() returns this" );
assert.equal( tween.pos, jQuery.easing.swing( 0.1 ), "set .pos" );
2015-05-18 21:11:21 +00:00
eased = 100 - ( jQuery.easing.swing( 0.1 ) * 100 );
assert.equal( tween.now, eased, "Calculated tween" );
2015-05-18 21:11:21 +00:00
assert.ok(
easingSpy.calledWith( 0.1, 0.1 * testOptions.duration, 0, 1, testOptions.duration ),
"...using jQuery.easing.linear with back-compat arguments"
);
assert.equal(
parseFloat( testElement.style.height ).toFixed( 2 ),
eased.toFixed( 2 ), "Set value"
);
2015-05-18 21:11:21 +00:00
tween.run( 1 );
assert.equal( testElement.style.height, "0px", "Checking another value" );
2015-05-18 21:11:21 +00:00
tween.run( 0 );
assert.equal( testElement.style.height, "100px", "Can even go back in time" );
2015-05-18 21:11:21 +00:00
} );
QUnit.test( "jQuery.Tween - No duration", function( assert ) {
assert.expect( 3 );
2015-05-18 21:11:21 +00:00
var testObject = { test: 100 },
testOptions = { duration: 0 },
tween, easingSpy;
tween = jQuery.Tween( testObject, testOptions, "test", 0 );
easingSpy = this.sandbox.spy( jQuery.easing, "swing" );
tween.run( 0.5 );
assert.equal( tween.pos, 0.5, "set .pos correctly" );
assert.equal( testObject.test, 50, "set value on object correctly" );
assert.equal( easingSpy.callCount, 0, "didn't ease the value" );
2015-05-18 21:11:21 +00:00
} );
QUnit.test( "jQuery.Tween - step function option", function( assert ) {
assert.expect( 4 );
2015-05-18 21:11:21 +00:00
var testObject = { test: 100 },
testOptions = { duration: 100, step: this.sandbox.spy() },
tween, propHookSpy;
propHookSpy = this.sandbox.spy( jQuery.Tween.propHooks._default, "set" );
tween = jQuery.Tween( testObject, testOptions, "test", 0, "linear" );
assert.equal( testOptions.step.callCount, 0, "didn't call step on create" );
2015-05-18 21:11:21 +00:00
tween.run( 0.5 );
assert.ok(
testOptions.step.calledOn( testObject ),
"Called step function in context of animated object"
);
assert.ok(
testOptions.step.calledWith( 50, tween ),
"Called step function with correct parameters"
);
assert.ok(
testOptions.step.calledBefore( propHookSpy ),
"Called step function before calling propHook.set"
);
2015-05-18 21:11:21 +00:00
} );
QUnit.test( "jQuery.Tween - custom propHooks", function( assert ) {
assert.expect( 3 );
2015-05-18 21:11:21 +00:00
var testObject = {},
testOptions = { duration: 100, step: this.sandbox.spy() },
propHook = {
get: sinon.stub().returns( 100 ),
set: sinon.stub()
},
tween;
jQuery.Tween.propHooks.testHooked = propHook;
tween = jQuery.Tween( testObject, testOptions, "testHooked", 0, "linear" );
assert.ok( propHook.get.calledWith( tween ), "called propHook.get on create" );
assert.equal( tween.now, 100, "Used return value from propHook.get" );
2015-05-18 21:11:21 +00:00
tween.run( 0.5 );
assert.ok(
propHook.set.calledWith( tween ),
"Called propHook.set function with correct parameters"
);
2015-05-18 21:11:21 +00:00
delete jQuery.Tween.propHooks.testHooked;
} );
QUnit.test( "jQuery.Tween - custom propHooks - advanced values", function( assert ) {
assert.expect( 5 );
2015-05-18 21:11:21 +00:00
var testObject = {},
testOptions = { duration: 100, step: this.sandbox.spy() },
propHook = {
get: sinon.stub().returns( [ 0, 0 ] ),
set: sinon.spy()
},
tween;
jQuery.Tween.propHooks.testHooked = propHook;
tween = jQuery.Tween( testObject, testOptions, "testHooked", [ 1, 1 ], "linear" );
assert.ok( propHook.get.calledWith( tween ), "called propHook.get on create" );
assert.deepEqual( tween.start, [ 0, 0 ], "Used return value from get" );
2015-05-18 21:11:21 +00:00
tween.run( 0.5 );
// Some day this NaN assumption might change - perhaps add a "calc" helper to the hooks?
assert.ok( isNaN( tween.now ), "Used return value from propHook.get" );
assert.equal( tween.pos, 0.5, "But the eased percent is still available" );
assert.ok(
propHook.set.calledWith( tween ),
"Called propHook.set function with correct parameters"
);
2015-05-18 21:11:21 +00:00
delete jQuery.Tween.propHooks.testHooked;
} );
} )();