mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 07:16:39 +00:00
76 lines
3.3 KiB
JavaScript
76 lines
3.3 KiB
JavaScript
|
/*****************************************************************************
|
||
|
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
||
|
* as represented by the Administrator of the National Aeronautics and Space
|
||
|
* Administration. All rights reserved.
|
||
|
*
|
||
|
* Open MCT Web 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 Web 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.
|
||
|
*****************************************************************************/
|
||
|
/*global define,describe,it,expect,beforeEach,jasmine,xit,xdescribe*/
|
||
|
|
||
|
define(
|
||
|
["../../src/policies/EditContextualActionPolicy"],
|
||
|
function (EditContextualActionPolicy) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The Edit contextual action policy", function () {
|
||
|
var policy,
|
||
|
navigationService,
|
||
|
mockAction,
|
||
|
context,
|
||
|
navigatedObject,
|
||
|
mockDomainObject,
|
||
|
metadata;
|
||
|
|
||
|
beforeEach(function () {
|
||
|
navigatedObject = jasmine.createSpyObj("navigatedObject", ["hasCapability"]);
|
||
|
navigatedObject.hasCapability.andReturn(false);
|
||
|
|
||
|
mockDomainObject = jasmine.createSpyObj("domainObject", ["hasCapability"]);
|
||
|
mockDomainObject.hasCapability.andReturn(false);
|
||
|
|
||
|
navigationService = jasmine.createSpyObj("navigationService", ["getNavigation"]);
|
||
|
navigationService.getNavigation.andReturn(navigatedObject);
|
||
|
|
||
|
metadata = {key: "move"};
|
||
|
mockAction = jasmine.createSpyObj("action", ["getMetadata"]);
|
||
|
mockAction.getMetadata.andReturn(metadata);
|
||
|
|
||
|
context = {domainObject: mockDomainObject};
|
||
|
|
||
|
policy = new EditContextualActionPolicy(navigationService);
|
||
|
});
|
||
|
|
||
|
it('Allows all actions when navigated object not in edit mode', function() {
|
||
|
expect(policy.allow(mockAction, context)).toBe(true);
|
||
|
});
|
||
|
|
||
|
it('Allows no actions when navigated object in edit mode, but' +
|
||
|
' selected object not in edit mode ', function() {
|
||
|
navigatedObject.hasCapability.andReturn(true);
|
||
|
expect(policy.allow(mockAction, context)).toBe(false);
|
||
|
});
|
||
|
|
||
|
it('Disallows blacklisted actions when navigated object and' +
|
||
|
' selected object in edit mode', function() {
|
||
|
navigatedObject.hasCapability.andReturn(true);
|
||
|
mockDomainObject.hasCapability.andReturn(true);
|
||
|
expect(policy.allow(mockAction, context)).toBe(false);
|
||
|
});
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|