2015-05-13 23:42:35 +00:00
|
|
|
/*****************************************************************************
|
2017-04-05 21:35:12 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2017, 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.
|
|
|
|
*****************************************************************************/
|
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() {
|
|
|
|
var calls = mockNavigationService.setNavigation.calls.length;
|
|
|
|
waitsFor(function () {
|
2016-12-21 00:42:12 +00:00
|
|
|
return mockNavigationService.setNavigation.calls.length > calls;
|
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
|
|
|
);
|
2016-12-07 21:33:53 +00:00
|
|
|
mockUrlService.urlForLocation.andCallFake(function (mode, object) {
|
|
|
|
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)
|
|
|
|
.andCallThrough();
|
|
|
|
});
|
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
|
|
|
);
|
2016-12-07 21:33:53 +00:00
|
|
|
mockObjectService.getObjects.andReturn(Promise.resolve({
|
2014-11-26 02:30:30 +00:00
|
|
|
ROOT: mockRootObject
|
|
|
|
}));
|
2016-12-07 21:33:53 +00:00
|
|
|
mockRootObject.useCapability.andReturn(Promise.resolve([
|
|
|
|
mockOtherDomainObject,
|
|
|
|
mockDefaultRootObject
|
2015-06-16 22:35:40 +00:00
|
|
|
]));
|
2016-12-07 21:33:53 +00:00
|
|
|
mockRootObject.hasCapability.andReturn(true);
|
|
|
|
mockDefaultRootObject.useCapability.andReturn(Promise.resolve([
|
2015-06-16 22:57:08 +00:00
|
|
|
mockNextObject
|
|
|
|
]));
|
2016-12-07 21:33:53 +00:00
|
|
|
mockDefaultRootObject.hasCapability.andReturn(true);
|
|
|
|
mockOtherDomainObject.hasCapability.andReturn(false);
|
2015-06-16 22:57:08 +00:00
|
|
|
mockNextObject.useCapability.andReturn(undefined);
|
2016-12-07 21:33:53 +00:00
|
|
|
mockNextObject.hasCapability.andReturn(false);
|
2015-06-16 22:57:08 +00:00
|
|
|
mockNextObject.getId.andReturn("next");
|
2016-12-07 21:33:53 +00:00
|
|
|
mockDefaultRootObject.getId.andReturn(testDefaultRoot);
|
2016-06-16 00:10:29 +00:00
|
|
|
|
2015-12-11 20:31:06 +00:00
|
|
|
instantiateController();
|
2016-12-07 21:33:53 +00:00
|
|
|
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();
|
2016-12-07 21:33:53 +00:00
|
|
|
waitsForNavigation();
|
|
|
|
runs(function () {
|
|
|
|
expect(mockNavigationService.setNavigation)
|
|
|
|
.toHaveBeenCalledWith(mockDefaultRootObject);
|
|
|
|
});
|
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
|
2015-12-11 21:21:52 +00:00
|
|
|
.andReturn("something-other-than-the-" + testDefaultRoot);
|
|
|
|
instantiateController();
|
|
|
|
|
2016-12-07 21:33:53 +00:00
|
|
|
waitsForNavigation();
|
|
|
|
runs(function () {
|
|
|
|
expect(mockNavigationService.setNavigation)
|
|
|
|
.toHaveBeenCalledWith(mockDefaultRootObject);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
//
|
2014-11-26 02:30:30 +00:00
|
|
|
it("does not try to override navigation", function () {
|
2016-12-07 21:33:53 +00:00
|
|
|
mockNavigationService.getNavigation.andReturn(mockDefaultRootObject);
|
2015-12-11 20:31:06 +00:00
|
|
|
instantiateController();
|
2016-12-07 21:33:53 +00:00
|
|
|
waitsForNavigation();
|
|
|
|
expect(mockScope.navigatedObject).toBe(mockDefaultRootObject);
|
2014-11-26 02:30:30 +00:00
|
|
|
});
|
2016-12-07 21:33:53 +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
|
|
|
|
mockNavigationService.addListener.mostRecentCall.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)
|
|
|
|
);
|
|
|
|
mockScope.$on.mostRecentCall.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(
|
|
|
|
mockNavigationService.addListener.mostRecentCall.args[0]
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
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();
|
2016-12-07 21:33:53 +00:00
|
|
|
waitsForNavigation();
|
|
|
|
runs(function () {
|
|
|
|
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();
|
2016-12-07 21:33:53 +00:00
|
|
|
waitsForNavigation();
|
|
|
|
runs(function () {
|
|
|
|
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();
|
2016-12-07 21:33:53 +00:00
|
|
|
waitsForNavigation();
|
|
|
|
runs(function () {
|
|
|
|
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');
|
|
|
|
mockLocation.path.andCallFake(function () {
|
|
|
|
expect(mockRoute.current.pathParams.ids)
|
|
|
|
.toBe(testDefaultRoot + '/next');
|
2015-06-16 22:57:08 +00:00
|
|
|
});
|
|
|
|
mockNavigationService.addListener.mostRecentCall.args[0](
|
|
|
|
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
|
|
|
);
|