mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
63345bbd3b
Add test to detect plot failing to release its subscriptions, which causes WTD-840.
191 lines
7.4 KiB
JavaScript
191 lines
7.4 KiB
JavaScript
/*global define,Promise,describe,it,expect,xit,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../src/PlotController"],
|
|
function (PlotController) {
|
|
"use strict";
|
|
|
|
describe("The plot controller", function () {
|
|
var mockScope,
|
|
mockFormatter,
|
|
mockSubscriber,
|
|
mockSubscription,
|
|
mockDomainObject,
|
|
controller;
|
|
|
|
|
|
beforeEach(function () {
|
|
mockScope = jasmine.createSpyObj(
|
|
"$scope",
|
|
[ "$watch", "$on" ]
|
|
);
|
|
mockFormatter = jasmine.createSpyObj(
|
|
"formatter",
|
|
[ "formatDomainValue", "formatRangeValue" ]
|
|
);
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
"domainObject",
|
|
[ "getId", "getModel", "getCapability" ]
|
|
);
|
|
mockSubscriber = jasmine.createSpyObj(
|
|
"telemetrySubscriber",
|
|
["subscribe"]
|
|
);
|
|
mockSubscription = jasmine.createSpyObj(
|
|
"subscription",
|
|
[
|
|
"unsubscribe",
|
|
"getTelemetryObjects",
|
|
"getMetadata",
|
|
"getDomainValue",
|
|
"getRangeValue"
|
|
]
|
|
);
|
|
|
|
mockSubscriber.subscribe.andReturn(mockSubscription);
|
|
mockSubscription.getTelemetryObjects.andReturn([mockDomainObject]);
|
|
mockSubscription.getMetadata.andReturn([{}]);
|
|
mockSubscription.getDomainValue.andReturn(123);
|
|
mockSubscription.getRangeValue.andReturn(42);
|
|
|
|
controller = new PlotController(mockScope, mockFormatter, mockSubscriber);
|
|
});
|
|
|
|
it("provides plot colors", function () {
|
|
// PlotPalette will have its own tests
|
|
expect(controller.getColor(0))
|
|
.toEqual(jasmine.any(String));
|
|
|
|
// Colors should be unique
|
|
expect(controller.getColor(0))
|
|
.not.toEqual(controller.getColor(1));
|
|
});
|
|
|
|
it("subscribes to telemetry when a domain object appears in scope", function () {
|
|
// Make sure we're using the right watch here
|
|
expect(mockScope.$watch.mostRecentCall.args[0])
|
|
.toEqual("domainObject");
|
|
// Make an object available
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
|
// Should have subscribed
|
|
expect(mockSubscriber.subscribe).toHaveBeenCalledWith(
|
|
mockDomainObject,
|
|
jasmine.any(Function),
|
|
true // Lossless
|
|
);
|
|
});
|
|
|
|
it("draws lines when data becomes available", function () {
|
|
// Make an object available
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
|
|
|
// Verify precondition
|
|
controller.getSubPlots().forEach(function (subplot) {
|
|
expect(subplot.getDrawingObject().lines)
|
|
.not.toBeDefined();
|
|
});
|
|
|
|
// Make sure there actually are subplots being verified
|
|
expect(controller.getSubPlots().length > 0).toBeTruthy();
|
|
|
|
// Broadcast data
|
|
mockSubscriber.subscribe.mostRecentCall.args[1]();
|
|
|
|
controller.getSubPlots().forEach(function (subplot) {
|
|
expect(subplot.getDrawingObject().lines)
|
|
.toBeDefined();
|
|
});
|
|
});
|
|
|
|
it("unsubscribes when domain object changes", function () {
|
|
// Make an object available
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
|
// Verify precondition - shouldn't unsubscribe yet
|
|
expect(mockSubscription.unsubscribe).not.toHaveBeenCalled();
|
|
// Remove the domain object
|
|
mockScope.$watch.mostRecentCall.args[1](undefined);
|
|
// Should have unsubscribed
|
|
expect(mockSubscription.unsubscribe).toHaveBeenCalled();
|
|
});
|
|
|
|
|
|
it("changes modes depending on number of objects", function () {
|
|
// Act like one object is available
|
|
mockSubscription.getTelemetryObjects.andReturn([
|
|
mockDomainObject
|
|
]);
|
|
|
|
// Make an object available
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
|
|
|
expect(controller.getModeOptions().length).toEqual(1);
|
|
|
|
// Act like one object is available
|
|
mockSubscription.getTelemetryObjects.andReturn([
|
|
mockDomainObject,
|
|
mockDomainObject,
|
|
mockDomainObject
|
|
]);
|
|
|
|
// Make an object available
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
|
|
|
expect(controller.getModeOptions().length).toEqual(2);
|
|
});
|
|
|
|
// Interface tests follow; these will be delegated (mostly
|
|
// to PlotModeOptions, which is tested separately).
|
|
it("provides access to available plot mode options", function () {
|
|
expect(Array.isArray(controller.getModeOptions()))
|
|
.toBeTruthy();
|
|
});
|
|
|
|
it("provides a current plot mode", function () {
|
|
expect(controller.getMode().name)
|
|
.toEqual(jasmine.any(String));
|
|
});
|
|
|
|
it("allows plot mode to be changed", function () {
|
|
expect(function () {
|
|
controller.setMode(controller.getMode());
|
|
}).not.toThrow();
|
|
});
|
|
|
|
it("provides an array of sub-plots", function () {
|
|
expect(Array.isArray(controller.getSubPlots()))
|
|
.toBeTruthy();
|
|
});
|
|
|
|
it("allows plots to be updated", function () {
|
|
expect(controller.update).not.toThrow();
|
|
});
|
|
|
|
it("allows changing pan-zoom state", function () {
|
|
expect(controller.isZoomed).not.toThrow();
|
|
expect(controller.stepBackPanZoom).not.toThrow();
|
|
expect(controller.unzoom).not.toThrow();
|
|
});
|
|
|
|
it("indicates if a request is pending", function () {
|
|
// Placeholder; need to support requesting telemetry
|
|
expect(controller.isRequestPending()).toBeFalsy();
|
|
});
|
|
|
|
it("unsubscribes when destroyed", function () {
|
|
// Make an object available
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
|
// Make sure $destroy is what's listened for
|
|
expect(mockScope.$on.mostRecentCall.args[0]).toEqual('$destroy');
|
|
// Also verify precondition
|
|
expect(mockSubscription.unsubscribe).not.toHaveBeenCalled();
|
|
// Destroy the scope
|
|
mockScope.$on.mostRecentCall.args[1]();
|
|
// Should have unsubscribed
|
|
expect(mockSubscription.unsubscribe).toHaveBeenCalled();
|
|
});
|
|
});
|
|
}
|
|
); |