mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 15:02:23 +00:00
112 lines
4.5 KiB
JavaScript
112 lines
4.5 KiB
JavaScript
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2009-2016, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
|
|
define(
|
|
["../../src/controllers/TimerFormatter"],
|
|
function (TimerFormatter) {
|
|
|
|
var MS_IN_SEC = 1000,
|
|
MS_IN_MIN = MS_IN_SEC * 60,
|
|
MS_IN_HR = MS_IN_MIN * 60,
|
|
MS_IN_DAY = MS_IN_HR * 24;
|
|
|
|
describe("The timer value formatter", function () {
|
|
var formatter = new TimerFormatter();
|
|
|
|
function sum(a, b) {
|
|
return a + b;
|
|
}
|
|
|
|
function toDuration(days, hours, mins, secs) {
|
|
return [
|
|
days * MS_IN_DAY,
|
|
hours * MS_IN_HR,
|
|
mins * MS_IN_MIN,
|
|
secs * MS_IN_SEC
|
|
].reduce(sum, 0);
|
|
}
|
|
|
|
it("formats short-form values (no days)", function () {
|
|
expect(formatter.short(toDuration(0, 123, 2, 3) + 123))
|
|
.toEqual("123:02:03");
|
|
});
|
|
|
|
it("formats negative short-form values (no days)", function () {
|
|
expect(formatter.short(-toDuration(0, 123, 2, 3) + 123))
|
|
.toEqual("123:02:03");
|
|
});
|
|
|
|
it("formats long-form values (with days)", function () {
|
|
expect(formatter.long(toDuration(0, 123, 2, 3) + 123))
|
|
.toEqual("5D 03:02:03");
|
|
});
|
|
|
|
it("formats negative long-form values (no days)", function () {
|
|
expect(formatter.long(-toDuration(0, 123, 2, 3) + 123))
|
|
.toEqual("5D 03:02:03");
|
|
});
|
|
|
|
it("rounds seconds down for positive durations", function () {
|
|
expect(formatter.short(MS_IN_SEC + 600))
|
|
.toEqual("00:00:01");
|
|
});
|
|
|
|
it("rounds seconds up for negative durations", function () {
|
|
expect(formatter.short(-MS_IN_SEC - 600))
|
|
.toEqual("00:00:02");
|
|
});
|
|
|
|
it("short-formats correctly around negative time borders", function () {
|
|
expect(formatter.short(-1)).toEqual("00:00:01");
|
|
expect(formatter.short(-1000)).toEqual("00:00:01");
|
|
expect(formatter.short(-1001)).toEqual("00:00:02");
|
|
expect(formatter.short(-2000)).toEqual("00:00:02");
|
|
expect(formatter.short(-59001)).toEqual("00:01:00");
|
|
expect(formatter.short(-60000)).toEqual("00:01:00");
|
|
|
|
expect(formatter.short(-MS_IN_HR + 999)).toEqual("01:00:00");
|
|
expect(formatter.short(-MS_IN_HR)).toEqual("01:00:00");
|
|
});
|
|
|
|
it("differentiates between values around zero", function () {
|
|
// These are more than 1000 ms apart so should not appear
|
|
// as the same second
|
|
expect(formatter.short(-999))
|
|
.not.toEqual(formatter.short(999));
|
|
});
|
|
|
|
it("handles negative days", function () {
|
|
expect(formatter.long(-10 * MS_IN_DAY))
|
|
.toEqual("10D 00:00:00");
|
|
expect(formatter.long(-10 * MS_IN_DAY + 100))
|
|
.toEqual("10D 00:00:00");
|
|
expect(formatter.long(-10 * MS_IN_DAY + 999))
|
|
.toEqual("10D 00:00:00");
|
|
|
|
expect(formatter.short(-10 * MS_IN_DAY + 100))
|
|
.toEqual("240:00:00");
|
|
});
|
|
|
|
});
|
|
}
|
|
);
|