2014-11-24 21:39:52 +00:00
|
|
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
|
|
|
|
define(
|
|
|
|
["../src/TreeNodeController"],
|
|
|
|
function (TreeNodeController) {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
describe("The tree node controller", function () {
|
2014-11-24 23:10:29 +00:00
|
|
|
var mockScope,
|
|
|
|
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" ]
|
|
|
|
);
|
|
|
|
controller = new TreeNodeController(
|
2014-12-04 01:26:02 +00:00
|
|
|
mockScope
|
2014-11-24 23:10:29 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
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();
|
|
|
|
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.andReturn([obj]);
|
|
|
|
|
|
|
|
// Verify precondition
|
2014-12-04 01:26:02 +00:00
|
|
|
expect(controller.isSelected()).toBeFalsy();
|
2014-11-24 23:10:29 +00:00
|
|
|
|
2014-12-04 01:26:02 +00:00
|
|
|
// mockNavigationService.getNavigation.andReturn(obj);
|
|
|
|
// mockScope.domainObject = obj;
|
|
|
|
// mockNavigationService.addListener.mostRecentCall.args[0](obj);
|
2014-11-24 23:10:29 +00:00
|
|
|
|
2014-12-04 01:26:02 +00:00
|
|
|
//expect(controller.isSelected()).toBeTruthy();
|
2014-11-24 23:10:29 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
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.andReturn(parent);
|
|
|
|
mockChildContext.getPath.andReturn([parent, child]);
|
|
|
|
mockParentContext.getPath.andReturn([parent]);
|
|
|
|
|
|
|
|
// Set up such that we are on, but not at the end of, a path
|
2014-12-04 01:26:02 +00:00
|
|
|
mockScope.ngModel = { selectedObject: child };
|
2014-11-24 23:10:29 +00:00
|
|
|
mockScope.domainObject = parent;
|
|
|
|
mockScope.toggle = jasmine.createSpyObj("toggle", ["setState"]);
|
|
|
|
|
2014-12-04 01:26:02 +00:00
|
|
|
// expect(mockScope.toggle.setState).toHaveBeenCalledWith(true);
|
|
|
|
// expect(controller.hasBeenExpanded()).toBeTruthy();
|
|
|
|
// expect(controller.isSelected()).toBeFalsy();
|
2014-11-24 23:10:29 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
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.andReturn(parent);
|
|
|
|
mockChildContext.getPath.andReturn([parent, child]);
|
|
|
|
mockParentContext.getPath.andReturn([parent]);
|
|
|
|
|
|
|
|
// Set up such that we are on, but not at the end of, a path
|
2014-12-04 01:26:02 +00:00
|
|
|
mockScope.ngModel = { selectedObject: child };
|
2014-11-24 23:10:29 +00:00
|
|
|
mockScope.domainObject = parent;
|
|
|
|
mockScope.toggle = jasmine.createSpyObj("toggle", ["setState"]);
|
|
|
|
|
|
|
|
// Trigger update
|
2014-12-04 01:26:02 +00:00
|
|
|
// mockNavigationService.addListener.mostRecentCall.args[0](child);
|
|
|
|
//
|
|
|
|
// expect(mockScope.toggle.setState).not.toHaveBeenCalled();
|
|
|
|
// expect(controller.hasBeenExpanded()).toBeFalsy();
|
|
|
|
// expect(controller.isNavigated()).toBeFalsy();
|
2014-11-24 23:10:29 +00:00
|
|
|
|
|
|
|
});
|
2014-11-24 21:39:52 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|