2015-05-13 23:42:35 +00:00
|
|
|
/*****************************************************************************
|
2022-01-18 19:27:28 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2022, 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.
|
|
|
|
*****************************************************************************/
|
2015-04-11 01:09:02 +00:00
|
|
|
|
|
|
|
define(
|
|
|
|
["../src/CompositionPolicy"],
|
|
|
|
function (CompositionPolicy) {
|
|
|
|
describe("Composition policy", function () {
|
2017-03-27 00:02:00 +00:00
|
|
|
var mockParentObject,
|
|
|
|
typeA,
|
2017-02-21 23:14:35 +00:00
|
|
|
typeB,
|
|
|
|
typeC,
|
|
|
|
mockChildObject,
|
2015-04-11 01:16:40 +00:00
|
|
|
policy;
|
|
|
|
|
|
|
|
beforeEach(function () {
|
2017-03-27 00:02:00 +00:00
|
|
|
mockParentObject = jasmine.createSpyObj('domainObject', [
|
|
|
|
'getCapability'
|
|
|
|
]);
|
|
|
|
|
2017-02-21 23:14:35 +00:00
|
|
|
typeA = jasmine.createSpyObj(
|
|
|
|
'type A-- the particular kind',
|
|
|
|
['getKey', 'getDefinition']
|
2015-04-11 01:16:40 +00:00
|
|
|
);
|
2018-06-30 00:32:59 +00:00
|
|
|
typeA.getKey.and.returnValue('a');
|
|
|
|
typeA.getDefinition.and.returnValue({
|
2017-02-21 23:14:35 +00:00
|
|
|
contains: ['a']
|
|
|
|
});
|
|
|
|
|
|
|
|
typeB = jasmine.createSpyObj(
|
|
|
|
'type B-- anything goes',
|
|
|
|
['getKey', 'getDefinition']
|
|
|
|
);
|
2018-06-30 00:32:59 +00:00
|
|
|
typeB.getKey.and.returnValue('b');
|
|
|
|
typeB.getDefinition.and.returnValue({
|
2017-02-21 23:14:35 +00:00
|
|
|
contains: ['a', 'b']
|
|
|
|
});
|
|
|
|
|
|
|
|
typeC = jasmine.createSpyObj(
|
|
|
|
'type C-- distinguishing and interested in telemetry',
|
|
|
|
['getKey', 'getDefinition']
|
2015-04-11 01:16:40 +00:00
|
|
|
);
|
2018-06-30 00:32:59 +00:00
|
|
|
typeC.getKey.and.returnValue('c');
|
|
|
|
typeC.getDefinition.and.returnValue({
|
2017-02-21 23:14:35 +00:00
|
|
|
contains: [{has: 'telemetry'}]
|
2015-04-11 01:16:40 +00:00
|
|
|
});
|
|
|
|
|
2017-02-21 23:14:35 +00:00
|
|
|
mockChildObject = jasmine.createSpyObj(
|
|
|
|
'childObject',
|
|
|
|
['getCapability', 'hasCapability']
|
|
|
|
);
|
|
|
|
|
|
|
|
policy = new CompositionPolicy();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('enforces simple containment rules', function () {
|
|
|
|
|
|
|
|
it('allows when type matches', function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockParentObject.getCapability.and.returnValue(typeA);
|
2017-03-27 00:02:00 +00:00
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
mockChildObject.getCapability.and.returnValue(typeA);
|
2017-03-27 00:02:00 +00:00
|
|
|
expect(policy.allow(mockParentObject, mockChildObject))
|
2017-02-21 23:14:35 +00:00
|
|
|
.toBeTruthy();
|
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
mockParentObject.getCapability.and.returnValue(typeB);
|
2017-03-27 00:02:00 +00:00
|
|
|
expect(policy.allow(mockParentObject, mockChildObject))
|
2017-02-21 23:14:35 +00:00
|
|
|
.toBeTruthy();
|
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
mockChildObject.getCapability.and.returnValue(typeB);
|
2017-03-27 00:02:00 +00:00
|
|
|
expect(policy.allow(mockParentObject, mockChildObject))
|
2017-02-21 23:14:35 +00:00
|
|
|
.toBeTruthy();
|
2015-04-11 01:16:40 +00:00
|
|
|
});
|
|
|
|
|
2017-02-21 23:14:35 +00:00
|
|
|
it('disallows when type doesn\'t match', function () {
|
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
mockParentObject.getCapability.and.returnValue(typeA);
|
|
|
|
mockChildObject.getCapability.and.returnValue(typeB);
|
2017-03-27 00:02:00 +00:00
|
|
|
expect(policy.allow(mockParentObject, mockChildObject))
|
2017-02-21 23:14:35 +00:00
|
|
|
.toBeFalsy();
|
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
mockChildObject.getCapability.and.returnValue(typeC);
|
2017-03-27 00:02:00 +00:00
|
|
|
expect(policy.allow(mockParentObject, mockChildObject))
|
2017-02-21 23:14:35 +00:00
|
|
|
.toBeFalsy();
|
|
|
|
});
|
|
|
|
|
2015-04-11 01:16:40 +00:00
|
|
|
});
|
|
|
|
|
2017-02-21 23:14:35 +00:00
|
|
|
describe('enforces capability-based containment rules', function () {
|
|
|
|
it('allows when object has capability', function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockParentObject.getCapability.and.returnValue(typeC);
|
2017-03-27 00:02:00 +00:00
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
mockChildObject.hasCapability.and.returnValue(true);
|
2017-03-27 00:02:00 +00:00
|
|
|
expect(policy.allow(mockParentObject, mockChildObject))
|
2017-02-21 23:14:35 +00:00
|
|
|
.toBeTruthy();
|
|
|
|
expect(mockChildObject.hasCapability)
|
|
|
|
.toHaveBeenCalledWith('telemetry');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('skips when object doesn\'t have capability', function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockChildObject.hasCapability.and.returnValue(false);
|
2017-03-27 00:02:00 +00:00
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
mockParentObject.getCapability.and.returnValue(typeC);
|
2017-03-27 00:02:00 +00:00
|
|
|
|
|
|
|
expect(policy.allow(mockParentObject, mockChildObject))
|
2017-02-21 23:14:35 +00:00
|
|
|
.toBeFalsy();
|
|
|
|
expect(mockChildObject.hasCapability)
|
|
|
|
.toHaveBeenCalledWith('telemetry');
|
|
|
|
});
|
2015-04-11 01:16:40 +00:00
|
|
|
});
|
2015-04-11 01:09:02 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
}
|
2016-05-19 18:29:13 +00:00
|
|
|
);
|