mirror of
https://github.com/videojs/video.js.git
synced 2025-01-08 07:00:10 +02:00
2f96914b8e
Add setFormatTime for Video.js to allow users to change the time format. Example usage: ```js videojs.setFormatTime((seconds, guide) => `${seconds}, ${guide}`)); ``` Add resetFormatTime to reset the time format to the default. Fixes #2931
51 lines
1.9 KiB
JavaScript
51 lines
1.9 KiB
JavaScript
/* eslint-env qunit */
|
|
import formatTime, { setFormatTime, resetFormatTime } from '../../../src/js/utils/format-time.js';
|
|
|
|
QUnit.module('format-time standard implementation', {
|
|
afterEach: resetFormatTime()
|
|
});
|
|
|
|
QUnit.test('should format time as a string', function(assert) {
|
|
assert.ok(formatTime(1) === '0:01');
|
|
assert.ok(formatTime(10) === '0:10');
|
|
assert.ok(formatTime(60) === '1:00');
|
|
assert.ok(formatTime(600) === '10:00');
|
|
assert.ok(formatTime(3600) === '1:00:00');
|
|
assert.ok(formatTime(36000) === '10:00:00');
|
|
assert.ok(formatTime(360000) === '100:00:00');
|
|
|
|
// Using guide should provide extra leading zeros
|
|
assert.ok(formatTime(1, 1) === '0:01');
|
|
assert.ok(formatTime(1, 10) === '0:01');
|
|
assert.ok(formatTime(1, 60) === '0:01');
|
|
assert.ok(formatTime(1, 600) === '00:01');
|
|
assert.ok(formatTime(1, 3600) === '0:00:01');
|
|
// Don't do extra leading zeros for hours
|
|
assert.ok(formatTime(1, 36000) === '0:00:01');
|
|
assert.ok(formatTime(1, 360000) === '0:00:01');
|
|
|
|
// Do not display negative time
|
|
assert.ok(formatTime(-1) === '0:00');
|
|
assert.ok(formatTime(-1, 3600) === '0:00:00');
|
|
});
|
|
|
|
QUnit.test('should format invalid times as dashes', function(assert) {
|
|
assert.equal(formatTime(Infinity, 90), '-:-');
|
|
assert.equal(formatTime(NaN), '-:-');
|
|
assert.equal(formatTime(10, Infinity), '0:00:10');
|
|
assert.equal(formatTime(90, NaN), '1:30');
|
|
});
|
|
|
|
QUnit.test('setFormatTime', function(assert) {
|
|
setFormatTime((seconds, guide) => `custom:${seconds}:${guide}`);
|
|
assert.equal(formatTime(1, 2), 'custom:1:2', 'it should replace the default formatTime implementation');
|
|
});
|
|
|
|
QUnit.test('resetFormatTime ', function(assert) {
|
|
setFormatTime((seconds, guide) => `custom:${seconds}:${guide}`);
|
|
assert.equal(formatTime(1, 2), 'custom:1:2');
|
|
resetFormatTime();
|
|
assert.equal(formatTime(1), '0:01', 'it should reset formatTime to the default implementation');
|
|
});
|
|
|