2015-05-13 23:42:35 +00:00
|
|
|
/*****************************************************************************
|
2018-05-14 22:46:17 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2018, United States Government
|
2015-05-13 23:42:35 +00:00
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
2015-05-13 23:42:35 +00:00
|
|
|
* "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.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT includes source code licensed under additional open source
|
2015-05-13 23:42:35 +00:00
|
|
|
* 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.
|
|
|
|
*****************************************************************************/
|
2018-06-30 00:32:59 +00:00
|
|
|
/*global console*/
|
2014-11-26 02:30:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
|
|
|
*/
|
|
|
|
define(
|
2016-12-21 00:42:12 +00:00
|
|
|
[
|
|
|
|
"../src/BrowseController",
|
|
|
|
"../src/navigation/NavigationService"
|
|
|
|
],
|
|
|
|
function (
|
|
|
|
BrowseController,
|
|
|
|
NavigationService
|
|
|
|
) {
|
2014-11-26 02:30:30 +00:00
|
|
|
|
2016-02-27 01:12:35 +00:00
|
|
|
describe("The browse controller", function () {
|
2014-11-26 02:30:30 +00:00
|
|
|
var mockScope,
|
2015-06-16 22:35:40 +00:00
|
|
|
mockRoute,
|
|
|
|
mockLocation,
|
2014-11-26 02:30:30 +00:00
|
|
|
mockObjectService,
|
|
|
|
mockNavigationService,
|
|
|
|
mockRootObject,
|
2015-06-24 21:06:09 +00:00
|
|
|
mockUrlService,
|
2016-12-07 21:33:53 +00:00
|
|
|
mockDefaultRootObject,
|
|
|
|
mockOtherDomainObject,
|
2015-06-16 22:57:08 +00:00
|
|
|
mockNextObject,
|
2015-12-11 20:31:06 +00:00
|
|
|
testDefaultRoot,
|
2014-11-26 02:30:30 +00:00
|
|
|
controller;
|
|
|
|
|
2016-12-07 21:33:53 +00:00
|
|
|
function waitsForNavigation() {
|
2018-06-30 00:32:59 +00:00
|
|
|
return new Promise(function (resolve) {
|
|
|
|
mockNavigationService.setNavigation.and.callFake(function (obj) {
|
|
|
|
var returnValue;
|
|
|
|
try {
|
|
|
|
returnValue = NavigationService.prototype.setNavigation.call(mockNavigationService, obj);
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
//Not rejecting because 'setNavigation' has been called, which is what's being tested here.
|
|
|
|
//Rejecting will fail tests.
|
|
|
|
}
|
|
|
|
resolve();
|
|
|
|
return returnValue;
|
|
|
|
});
|
2016-12-07 21:33:53 +00:00
|
|
|
});
|
2014-11-26 02:30:30 +00:00
|
|
|
}
|
|
|
|
|
2015-12-11 20:31:06 +00:00
|
|
|
function instantiateController() {
|
|
|
|
controller = new BrowseController(
|
|
|
|
mockScope,
|
|
|
|
mockRoute,
|
|
|
|
mockLocation,
|
|
|
|
mockObjectService,
|
|
|
|
mockNavigationService,
|
|
|
|
mockUrlService,
|
|
|
|
testDefaultRoot
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-11-26 02:30:30 +00:00
|
|
|
beforeEach(function () {
|
2015-12-11 20:31:06 +00:00
|
|
|
testDefaultRoot = "some-root-level-domain-object";
|
|
|
|
|
2014-12-04 01:26:02 +00:00
|
|
|
mockScope = jasmine.createSpyObj(
|
|
|
|
"$scope",
|
2016-05-19 18:29:13 +00:00
|
|
|
["$on", "$watch"]
|
2014-12-04 01:26:02 +00:00
|
|
|
);
|
2016-12-07 21:33:53 +00:00
|
|
|
mockRoute = { current: { params: {}, pathParams: {} } };
|
2015-06-24 21:06:09 +00:00
|
|
|
mockUrlService = jasmine.createSpyObj(
|
|
|
|
"urlService",
|
2015-06-25 17:10:13 +00:00
|
|
|
["urlForLocation"]
|
2015-06-24 21:06:09 +00:00
|
|
|
);
|
2018-06-30 00:32:59 +00:00
|
|
|
mockUrlService.urlForLocation.and.callFake(function (mode, object) {
|
2016-12-07 21:33:53 +00:00
|
|
|
if (object === mockDefaultRootObject) {
|
|
|
|
return [mode, testDefaultRoot].join('/');
|
|
|
|
}
|
|
|
|
if (object === mockOtherDomainObject) {
|
|
|
|
return [mode, 'other'].join('/');
|
|
|
|
}
|
|
|
|
if (object === mockNextObject) {
|
|
|
|
return [mode, testDefaultRoot, 'next'].join('/');
|
|
|
|
}
|
|
|
|
throw new Error('Tried to get url for unexpected object');
|
|
|
|
});
|
|
|
|
mockLocation = jasmine.createSpyObj(
|
|
|
|
"$location",
|
|
|
|
["path"]
|
|
|
|
);
|
2014-11-26 02:30:30 +00:00
|
|
|
mockObjectService = jasmine.createSpyObj(
|
|
|
|
"objectService",
|
2016-05-19 18:29:13 +00:00
|
|
|
["getObjects"]
|
2014-11-26 02:30:30 +00:00
|
|
|
);
|
2016-12-21 00:42:12 +00:00
|
|
|
mockNavigationService = new NavigationService({});
|
|
|
|
[
|
|
|
|
"getNavigation",
|
|
|
|
"setNavigation",
|
|
|
|
"addListener",
|
|
|
|
"removeListener"
|
|
|
|
].forEach(function (method) {
|
|
|
|
spyOn(mockNavigationService, method)
|
2018-06-30 00:32:59 +00:00
|
|
|
.and.callThrough();
|
2016-12-21 00:42:12 +00:00
|
|
|
});
|
2014-11-26 02:30:30 +00:00
|
|
|
mockRootObject = jasmine.createSpyObj(
|
2016-12-07 21:33:53 +00:00
|
|
|
"rootObjectContainer",
|
|
|
|
["getId", "getCapability", "getModel", "useCapability", "hasCapability"]
|
|
|
|
);
|
|
|
|
mockDefaultRootObject = jasmine.createSpyObj(
|
|
|
|
"defaultRootObject",
|
|
|
|
["getId", "getCapability", "getModel", "useCapability", "hasCapability"]
|
2014-11-26 02:30:30 +00:00
|
|
|
);
|
2016-12-07 21:33:53 +00:00
|
|
|
mockOtherDomainObject = jasmine.createSpyObj(
|
|
|
|
"otherDomainObject",
|
|
|
|
["getId", "getCapability", "getModel", "useCapability", "hasCapability"]
|
2014-11-26 02:30:30 +00:00
|
|
|
);
|
2015-06-16 22:57:08 +00:00
|
|
|
mockNextObject = jasmine.createSpyObj(
|
2016-12-07 21:33:53 +00:00
|
|
|
"nestedDomainObject",
|
|
|
|
["getId", "getCapability", "getModel", "useCapability", "hasCapability"]
|
2015-06-16 22:57:08 +00:00
|
|
|
);
|
2018-06-30 00:32:59 +00:00
|
|
|
mockObjectService.getObjects.and.returnValue(Promise.resolve({
|
2014-11-26 02:30:30 +00:00
|
|
|
ROOT: mockRootObject
|
|
|
|
}));
|
2018-06-30 00:32:59 +00:00
|
|
|
mockRootObject.useCapability.and.returnValue(Promise.resolve([
|
2016-12-07 21:33:53 +00:00
|
|
|
mockOtherDomainObject,
|
|
|
|
mockDefaultRootObject
|
2015-06-16 22:35:40 +00:00
|
|
|
]));
|
2018-06-30 00:32:59 +00:00
|
|
|
mockRootObject.hasCapability.and.returnValue(true);
|
|
|
|
mockDefaultRootObject.useCapability.and.returnValue(Promise.resolve([
|
2015-06-16 22:57:08 +00:00
|
|
|
mockNextObject
|
|
|
|
]));
|
2018-06-30 00:32:59 +00:00
|
|
|
mockDefaultRootObject.hasCapability.and.returnValue(true);
|
|
|
|
mockOtherDomainObject.hasCapability.and.returnValue(false);
|
|
|
|
mockNextObject.useCapability.and.returnValue(undefined);
|
|
|
|
mockNextObject.hasCapability.and.returnValue(false);
|
|
|
|
mockNextObject.getId.and.returnValue("next");
|
|
|
|
mockDefaultRootObject.getId.and.returnValue(testDefaultRoot);
|
2016-06-16 00:10:29 +00:00
|
|
|
|
2015-12-11 20:31:06 +00:00
|
|
|
instantiateController();
|
2018-06-30 00:32:59 +00:00
|
|
|
return waitsForNavigation();
|
2014-11-26 02:30:30 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("uses composition to set the navigated object, if there is none", function () {
|
2015-12-11 20:31:06 +00:00
|
|
|
instantiateController();
|
2018-06-30 00:32:59 +00:00
|
|
|
return waitsForNavigation().then(function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
expect(mockNavigationService.setNavigation)
|
2018-08-07 21:47:50 +00:00
|
|
|
.toHaveBeenCalledWith(mockDefaultRootObject);
|
2016-12-07 21:33:53 +00:00
|
|
|
});
|
2014-11-26 02:30:30 +00:00
|
|
|
});
|
|
|
|
|
2015-12-11 21:21:52 +00:00
|
|
|
it("navigates to a root-level object, even when default path is not found", function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
mockDefaultRootObject.getId
|
2018-06-30 00:32:59 +00:00
|
|
|
.and.returnValue("something-other-than-the-" + testDefaultRoot);
|
2015-12-11 21:21:52 +00:00
|
|
|
instantiateController();
|
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
return waitsForNavigation().then(function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
expect(mockNavigationService.setNavigation)
|
2018-08-07 21:47:50 +00:00
|
|
|
.toHaveBeenCalledWith(mockDefaultRootObject);
|
2016-12-07 21:33:53 +00:00
|
|
|
});
|
|
|
|
});
|
2018-06-30 00:32:59 +00:00
|
|
|
|
2014-11-26 02:30:30 +00:00
|
|
|
it("does not try to override navigation", function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockNavigationService.getNavigation.and.returnValue(mockDefaultRootObject);
|
2015-12-11 20:31:06 +00:00
|
|
|
instantiateController();
|
2018-06-30 00:32:59 +00:00
|
|
|
return waitsForNavigation().then(function () {
|
|
|
|
expect(mockScope.navigatedObject).toBe(mockDefaultRootObject);
|
|
|
|
});
|
2014-11-26 02:30:30 +00:00
|
|
|
});
|
2018-06-30 00:32:59 +00:00
|
|
|
|
2014-11-26 02:30:30 +00:00
|
|
|
it("updates scope when navigated object changes", function () {
|
|
|
|
// Should have registered a listener - call it
|
2018-06-30 00:32:59 +00:00
|
|
|
mockNavigationService.addListener.calls.mostRecent().args[0](
|
2016-12-07 21:33:53 +00:00
|
|
|
mockOtherDomainObject
|
2014-11-26 02:30:30 +00:00
|
|
|
);
|
2016-12-07 21:33:53 +00:00
|
|
|
expect(mockScope.navigatedObject).toEqual(mockOtherDomainObject);
|
2014-11-26 02:30:30 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it("releases its navigation listener when its scope is destroyed", function () {
|
|
|
|
expect(mockScope.$on).toHaveBeenCalledWith(
|
|
|
|
"$destroy",
|
|
|
|
jasmine.any(Function)
|
|
|
|
);
|
2018-06-30 00:32:59 +00:00
|
|
|
mockScope.$on.calls.mostRecent().args[1]();
|
2015-09-15 19:06:35 +00:00
|
|
|
|
2014-11-26 02:30:30 +00:00
|
|
|
// Should remove the listener it added earlier
|
|
|
|
expect(mockNavigationService.removeListener).toHaveBeenCalledWith(
|
2018-06-30 00:32:59 +00:00
|
|
|
mockNavigationService.addListener.calls.mostRecent().args[0]
|
2014-11-26 02:30:30 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2015-06-16 22:57:08 +00:00
|
|
|
it("uses route parameters to choose initially-navigated object", function () {
|
2015-12-11 20:31:06 +00:00
|
|
|
mockRoute.current.params.ids = testDefaultRoot + "/next";
|
|
|
|
instantiateController();
|
2018-06-30 00:32:59 +00:00
|
|
|
return waitsForNavigation().then(function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
expect(mockScope.navigatedObject).toBe(mockNextObject);
|
|
|
|
expect(mockNavigationService.setNavigation)
|
|
|
|
.toHaveBeenCalledWith(mockNextObject);
|
|
|
|
});
|
2015-06-16 22:57:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("handles invalid IDs by going as far as possible", function () {
|
|
|
|
// Idea here is that if we get a bad path of IDs,
|
|
|
|
// browse controller should traverse down it until
|
|
|
|
// it hits an invalid ID.
|
2015-12-11 20:31:06 +00:00
|
|
|
mockRoute.current.params.ids = testDefaultRoot + "/junk";
|
|
|
|
instantiateController();
|
2018-06-30 00:32:59 +00:00
|
|
|
return waitsForNavigation().then(function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
expect(mockScope.navigatedObject).toBe(mockDefaultRootObject);
|
|
|
|
expect(mockNavigationService.setNavigation)
|
|
|
|
.toHaveBeenCalledWith(mockDefaultRootObject);
|
|
|
|
});
|
2015-06-16 22:57:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("handles compositionless objects by going as far as possible", function () {
|
|
|
|
// Idea here is that if we get a path which passes
|
|
|
|
// through an object without a composition, browse controller
|
|
|
|
// should stop at it since remaining IDs cannot be loaded.
|
2015-12-11 20:31:06 +00:00
|
|
|
mockRoute.current.params.ids = testDefaultRoot + "/next/junk";
|
|
|
|
instantiateController();
|
2018-06-30 00:32:59 +00:00
|
|
|
return waitsForNavigation().then(function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
expect(mockScope.navigatedObject).toBe(mockNextObject);
|
|
|
|
expect(mockNavigationService.setNavigation)
|
|
|
|
.toHaveBeenCalledWith(mockNextObject);
|
|
|
|
});
|
2015-06-16 22:57:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("updates the displayed route to reflect current navigation", function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
// In order to trigger a route update and not a route change,
|
|
|
|
// the current route must be updated before location.path is
|
|
|
|
// called.
|
|
|
|
expect(mockRoute.current.pathParams.ids)
|
|
|
|
.not
|
|
|
|
.toBe(testDefaultRoot + '/next');
|
2018-06-30 00:32:59 +00:00
|
|
|
mockLocation.path.and.callFake(function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
expect(mockRoute.current.pathParams.ids)
|
|
|
|
.toBe(testDefaultRoot + '/next');
|
2015-06-16 22:57:08 +00:00
|
|
|
});
|
2018-06-30 00:32:59 +00:00
|
|
|
mockNavigationService.addListener.calls.mostRecent().args[0](
|
2015-06-16 22:57:08 +00:00
|
|
|
mockNextObject
|
|
|
|
);
|
2015-06-24 21:06:09 +00:00
|
|
|
expect(mockLocation.path).toHaveBeenCalledWith(
|
2016-12-07 21:33:53 +00:00
|
|
|
'/browse/' + testDefaultRoot + '/next'
|
2015-06-24 21:06:09 +00:00
|
|
|
);
|
2015-06-16 22:57:08 +00:00
|
|
|
});
|
|
|
|
|
2014-11-26 02:30:30 +00:00
|
|
|
});
|
|
|
|
}
|
2015-06-16 22:35:40 +00:00
|
|
|
);
|