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.
|
|
|
|
*****************************************************************************/
|
2014-11-26 02:30:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
|
|
|
*/
|
2016-12-21 00:42:12 +00:00
|
|
|
define([
|
|
|
|
"../../src/navigation/NavigateAction"
|
|
|
|
], function (
|
|
|
|
NavigateAction
|
|
|
|
) {
|
|
|
|
|
|
|
|
describe("The navigate action", function () {
|
|
|
|
var mockNavigationService,
|
|
|
|
mockDomainObject,
|
|
|
|
action;
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
mockNavigationService = jasmine.createSpyObj(
|
|
|
|
"navigationService",
|
|
|
|
[
|
|
|
|
"shouldNavigate",
|
|
|
|
"setNavigation"
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
mockDomainObject = {};
|
|
|
|
|
|
|
|
action = new NavigateAction(
|
|
|
|
mockNavigationService,
|
|
|
|
{ domainObject: mockDomainObject }
|
|
|
|
);
|
|
|
|
});
|
2014-11-26 04:26:37 +00:00
|
|
|
|
2016-12-21 00:42:12 +00:00
|
|
|
it("sets navigation if it is allowed", function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockNavigationService.shouldNavigate.and.returnValue(true);
|
|
|
|
return action.perform()
|
|
|
|
.then(function () {
|
|
|
|
expect(mockNavigationService.setNavigation)
|
2018-08-07 21:47:50 +00:00
|
|
|
.toHaveBeenCalledWith(mockDomainObject, true);
|
2018-06-30 00:32:59 +00:00
|
|
|
});
|
2016-12-21 00:42:12 +00:00
|
|
|
});
|
2016-09-21 23:12:09 +00:00
|
|
|
|
2016-12-21 00:42:12 +00:00
|
|
|
it("does not set navigation if it is not allowed", function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockNavigationService.shouldNavigate.and.returnValue(false);
|
2016-12-21 00:42:12 +00:00
|
|
|
var onSuccess = jasmine.createSpy('onSuccess');
|
2018-06-30 00:32:59 +00:00
|
|
|
return action.perform()
|
|
|
|
.then(onSuccess, function () {
|
|
|
|
expect(onSuccess).not.toHaveBeenCalled();
|
|
|
|
expect(mockNavigationService.setNavigation)
|
|
|
|
.not
|
|
|
|
.toHaveBeenCalledWith(mockDomainObject);
|
|
|
|
});
|
2016-12-21 00:42:12 +00:00
|
|
|
});
|
2014-11-26 02:30:30 +00:00
|
|
|
|
2016-12-21 00:42:12 +00:00
|
|
|
it("is only applicable when a domain object is in context", function () {
|
|
|
|
expect(NavigateAction.appliesTo({})).toBeFalsy();
|
|
|
|
expect(NavigateAction.appliesTo({
|
|
|
|
domainObject: mockDomainObject
|
|
|
|
})).toBeTruthy();
|
2014-11-26 02:30:30 +00:00
|
|
|
});
|
2016-12-21 00:42:12 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
});
|