mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 23:12:23 +00:00
78b636dafe
Update plot specs to reflect refactoring out of formatter for telemetry values, WTD-599.
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../src/DomainColumn"],
|
|
function (DomainColumn) {
|
|
"use strict";
|
|
|
|
describe("A domain column", function () {
|
|
var mockDataSet,
|
|
testMetadata,
|
|
mockFormatter,
|
|
column;
|
|
|
|
beforeEach(function () {
|
|
mockDataSet = jasmine.createSpyObj(
|
|
"data",
|
|
[ "getDomainValue" ]
|
|
);
|
|
mockFormatter = jasmine.createSpyObj(
|
|
"formatter",
|
|
[ "formatDomainValue", "formatRangeValue" ]
|
|
);
|
|
testMetadata = {
|
|
key: "testKey",
|
|
name: "Test Name"
|
|
};
|
|
column = new DomainColumn(testMetadata, mockFormatter);
|
|
});
|
|
|
|
it("reports a column header from domain metadata", function () {
|
|
expect(column.getTitle()).toEqual("Test Name");
|
|
});
|
|
|
|
it("looks up data from a data set", function () {
|
|
column.getValue(undefined, mockDataSet, 42);
|
|
expect(mockDataSet.getDomainValue)
|
|
.toHaveBeenCalledWith(42, "testKey");
|
|
});
|
|
|
|
it("formats domain values as time", function () {
|
|
mockDataSet.getDomainValue.andReturn(402513731000);
|
|
expect(column.getValue(undefined, mockDataSet, 42))
|
|
.toEqual("1982-276 17:22:11");
|
|
});
|
|
|
|
});
|
|
}
|
|
); |