-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Time Conductor] Adding tests and fixing failing ones. #933
- Loading branch information
Showing
22 changed files
with
1,333 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/***************************************************************************** | ||
* Open MCT Web, Copyright (c) 2014-2015, United States Government | ||
* as represented by the Administrator of the National Aeronautics and Space | ||
* Administration. All rights reserved. | ||
* | ||
* Open MCT Web 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 Web 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([ | ||
"./UTCTimeFormat", | ||
"moment" | ||
], function ( | ||
UTCTimeFormat, | ||
moment | ||
) { | ||
describe("The UTCTimeFormat class", function () { | ||
var format; | ||
var scale; | ||
|
||
beforeEach(function () { | ||
format = new UTCTimeFormat(); | ||
scale = {min: 0, max: 0}; | ||
}); | ||
|
||
it("Provides an appropriately scaled time format based on the input" + | ||
" time", function () { | ||
var TWO_HUNDRED_MS = 200; | ||
var THREE_SECONDS = 3000; | ||
var FIVE_MINUTES = 5 * 60 * 1000; | ||
var ONE_HOUR_TWENTY_MINS = (1 * 60 * 60 * 1000) + (20 * 60 * 1000); | ||
var TEN_HOURS = (10 * 60 * 60 * 1000); | ||
|
||
var JUNE_THIRD = moment.utc("2016-06-03", "YYYY-MM-DD"); | ||
var APRIL = moment.utc("2016-04", "YYYY-MM"); | ||
var TWENTY_SIXTEEN = moment.utc("2016", "YYYY"); | ||
|
||
expect(format.format(TWO_HUNDRED_MS, scale)).toBe(".200"); | ||
expect(format.format(THREE_SECONDS, scale)).toBe(":03"); | ||
expect(format.format(FIVE_MINUTES, scale)).toBe("00:05"); | ||
expect(format.format(ONE_HOUR_TWENTY_MINS, scale)).toBe("01:20"); | ||
expect(format.format(TEN_HOURS, scale)).toBe("10"); | ||
|
||
expect(format.format(JUNE_THIRD, scale)).toBe("Fri 03"); | ||
expect(format.format(APRIL, scale)).toBe("April"); | ||
expect(format.format(TWENTY_SIXTEEN, scale)).toBe("2016"); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
platform/features/conductor-v2/conductor/src/timeSystems/LocalClockSpec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/***************************************************************************** | ||
* Open MCT Web, Copyright (c) 2014-2015, United States Government | ||
* as represented by the Administrator of the National Aeronautics and Space | ||
* Administration. All rights reserved. | ||
* | ||
* Open MCT Web 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 Web 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(["./LocalClock"], function (LocalClock) { | ||
describe("The LocalClock class", function () { | ||
var clock, | ||
mockTimeout, | ||
timeoutHandle = {}; | ||
|
||
beforeEach(function () { | ||
mockTimeout = jasmine.createSpy("timeout"); | ||
mockTimeout.andReturn(timeoutHandle); | ||
mockTimeout.cancel = jasmine.createSpy("cancel"); | ||
|
||
clock = new LocalClock(mockTimeout, 0); | ||
clock.start(); | ||
}); | ||
|
||
it("calls listeners on tick with current time", function () { | ||
var mockListener = jasmine.createSpy("listener"); | ||
clock.listen(mockListener); | ||
clock.tick(); | ||
expect(mockListener).toHaveBeenCalledWith(jasmine.any(Number)); | ||
}); | ||
|
||
it("stops ticking when stop is called", function () { | ||
clock.stop(); | ||
expect(mockTimeout.cancel).toHaveBeenCalledWith(timeoutHandle); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.