mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 15:02:23 +00:00
433dee0314
* Updated Karma and Jasmine versions * Added DOMObserver class. Supports promise-based testing of DOM changes Update asynchronous test specs to use promises or done() instead of waitsFor/runs * Modified ActionCapability to duplicate context object properties as own properties for better object equality comparisons * Global find + replace to fix syntax issues * Fixed various issues caused by non-deterministic runtime order of tests in Jasmine 3. Fixed issues caused by changes to determination of object equality * Addressed review comments * Resolved merge conflicts with master * Fixed style errors * Use spy.calls.count() instead of manually tracking
211 lines
9.2 KiB
JavaScript
211 lines
9.2 KiB
JavaScript
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2014-2018, 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/TreeNodeController"],
|
|
function (TreeNodeController) {
|
|
|
|
describe("The tree node controller", function () {
|
|
var mockScope,
|
|
mockTimeout,
|
|
mockDomainObject,
|
|
controller;
|
|
|
|
function TestObject(id, context) {
|
|
return {
|
|
getId: function () {
|
|
return id;
|
|
},
|
|
getCapability: function (key) {
|
|
return key === 'context' ? context : undefined;
|
|
}
|
|
};
|
|
}
|
|
|
|
beforeEach(function () {
|
|
mockScope = jasmine.createSpyObj("$scope", ["$watch", "$on", "$emit"]);
|
|
mockTimeout = jasmine.createSpy("$timeout");
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
"domainObject",
|
|
["getId", "getCapability", "getModel", "useCapability"]
|
|
);
|
|
|
|
controller = new TreeNodeController(mockScope, mockTimeout);
|
|
});
|
|
|
|
it("allows tracking of expansion state", function () {
|
|
// The tree node tracks whether or not it has ever
|
|
// been expanded in order to lazily load the expanded
|
|
// portion of the tree.
|
|
expect(controller.hasBeenExpanded()).toBeFalsy();
|
|
controller.trackExpansion();
|
|
|
|
// Expansion is tracked on a timeout, because too
|
|
// much expansion can result in an unstable digest.
|
|
expect(mockTimeout).toHaveBeenCalled();
|
|
mockTimeout.calls.mostRecent().args[0]();
|
|
|
|
expect(controller.hasBeenExpanded()).toBeTruthy();
|
|
controller.trackExpansion();
|
|
expect(controller.hasBeenExpanded()).toBeTruthy();
|
|
});
|
|
|
|
it("tracks whether or not the represented object is currently navigated-to", function () {
|
|
// This is needed to highlight the current selection
|
|
var mockContext = jasmine.createSpyObj(
|
|
"context",
|
|
["getParent", "getPath", "getRoot"]
|
|
),
|
|
obj = new TestObject("test-object", mockContext);
|
|
|
|
mockContext.getPath.and.returnValue([obj]);
|
|
|
|
// Verify precondition
|
|
expect(controller.isSelected()).toBeFalsy();
|
|
|
|
// Change the represented domain object
|
|
mockScope.domainObject = obj;
|
|
|
|
// Invoke the watch with the new selection
|
|
mockScope.$watch.calls.all()[0].args[1](obj);
|
|
|
|
expect(controller.isSelected()).toBeTruthy();
|
|
});
|
|
|
|
it("expands a node if it is on the navigation path", function () {
|
|
var mockParentContext = jasmine.createSpyObj(
|
|
"parentContext",
|
|
["getParent", "getPath", "getRoot"]
|
|
),
|
|
mockChildContext = jasmine.createSpyObj(
|
|
"childContext",
|
|
["getParent", "getPath", "getRoot"]
|
|
),
|
|
parent = new TestObject("parent", mockParentContext),
|
|
child = new TestObject("child", mockChildContext);
|
|
|
|
mockChildContext.getParent.and.returnValue(parent);
|
|
mockChildContext.getPath.and.returnValue([parent, child]);
|
|
mockParentContext.getPath.and.returnValue([parent]);
|
|
|
|
// Set up such that we are on, but not at the end of, a path
|
|
mockScope.ngModel = { selectedObject: child };
|
|
mockScope.domainObject = parent;
|
|
mockScope.toggle = jasmine.createSpyObj("toggle", ["setState"]);
|
|
|
|
// Invoke the watch with the new selection
|
|
mockScope.$watch.calls.all()[0].args[1](child);
|
|
|
|
// Expansion is tracked on a timeout, because too
|
|
// much expansion can result in an unstable digest.
|
|
// Trigger that timeout.
|
|
expect(mockTimeout).toHaveBeenCalled();
|
|
mockTimeout.calls.mostRecent().args[0]();
|
|
|
|
expect(mockScope.toggle.setState).toHaveBeenCalledWith(true);
|
|
expect(controller.hasBeenExpanded()).toBeTruthy();
|
|
expect(controller.isSelected()).toBeFalsy();
|
|
|
|
});
|
|
|
|
it("does not expand a node if it is not on the navigation path", function () {
|
|
var mockParentContext = jasmine.createSpyObj(
|
|
"parentContext",
|
|
["getParent", "getPath", "getRoot"]
|
|
),
|
|
mockChildContext = jasmine.createSpyObj(
|
|
"childContext",
|
|
["getParent", "getPath", "getRoot"]
|
|
),
|
|
parent = new TestObject("parent", mockParentContext),
|
|
child = new TestObject("child", mockChildContext);
|
|
|
|
mockChildContext.getParent.and.returnValue(parent);
|
|
mockChildContext.getPath.and.returnValue([child, child]);
|
|
mockParentContext.getPath.and.returnValue([parent]);
|
|
|
|
// Set up such that we are on, but not at the end of, a path
|
|
mockScope.ngModel = { selectedObject: child };
|
|
mockScope.domainObject = parent;
|
|
mockScope.toggle = jasmine.createSpyObj("toggle", ["setState"]);
|
|
|
|
// Invoke the watch with the new selection
|
|
mockScope.$watch.calls.all()[0].args[1](child);
|
|
|
|
// Expansion is tracked on a timeout, because too
|
|
// much expansion can result in an unstable digest.
|
|
// We want to make sure no timeouts are pending here.
|
|
expect(mockTimeout).not.toHaveBeenCalled();
|
|
expect(controller.hasBeenExpanded()).toBeFalsy();
|
|
expect(controller.isSelected()).toBeFalsy();
|
|
});
|
|
|
|
|
|
it("does not expand a node if no context is available", function () {
|
|
var mockParentContext = jasmine.createSpyObj(
|
|
"parentContext",
|
|
["getParent", "getPath", "getRoot"]
|
|
),
|
|
mockChildContext = jasmine.createSpyObj(
|
|
"childContext",
|
|
["getParent", "getPath", "getRoot"]
|
|
),
|
|
parent = new TestObject("parent", mockParentContext),
|
|
child = new TestObject("child", undefined);
|
|
|
|
mockChildContext.getParent.and.returnValue(parent);
|
|
mockChildContext.getPath.and.returnValue([parent, child]);
|
|
mockParentContext.getPath.and.returnValue([parent]);
|
|
|
|
// Set up such that we are on, but not at the end of, a path
|
|
mockScope.ngModel = { selectedObject: child };
|
|
mockScope.domainObject = parent;
|
|
mockScope.toggle = jasmine.createSpyObj("toggle", ["setState"]);
|
|
|
|
// Invoke the watch with the new selection
|
|
mockScope.$watch.calls.all()[0].args[1](child);
|
|
|
|
expect(mockScope.toggle.setState).not.toHaveBeenCalled();
|
|
expect(controller.hasBeenExpanded()).toBeFalsy();
|
|
expect(controller.isSelected()).toBeFalsy();
|
|
|
|
});
|
|
|
|
it("exposes selected objects in scope", function () {
|
|
mockScope.domainObject = mockDomainObject;
|
|
mockScope.ngModel = {};
|
|
controller.select();
|
|
expect(mockScope.ngModel.selectedObject)
|
|
.toEqual(mockDomainObject);
|
|
});
|
|
|
|
it("invokes optional callbacks upon selection", function () {
|
|
mockScope.parameters =
|
|
{ callback: jasmine.createSpy('callback') };
|
|
controller.select();
|
|
expect(mockScope.parameters.callback).toHaveBeenCalled();
|
|
});
|
|
|
|
});
|
|
}
|
|
);
|