mirror of
https://github.com/nasa/openmct.git
synced 2025-06-06 09:21:43 +00:00
[Core] Test relationship capability
Test relationship capability, WTD-1007.
This commit is contained in:
parent
d1ea5726e2
commit
97fe378751
@ -89,7 +89,7 @@ define(
|
|||||||
* object.
|
* object.
|
||||||
* @returns {string[]} a list of all relationship types
|
* @returns {string[]} a list of all relationship types
|
||||||
*/
|
*/
|
||||||
list: listRelationships,
|
listRelationships: listRelationships,
|
||||||
/**
|
/**
|
||||||
* Request related objects, with a given relationship type.
|
* Request related objects, with a given relationship type.
|
||||||
* This will typically require asynchronous lookup, so this
|
* This will typically require asynchronous lookup, so this
|
||||||
@ -110,7 +110,7 @@ define(
|
|||||||
* @returns {boolean} true if this object has relationships
|
* @returns {boolean} true if this object has relationships
|
||||||
*/
|
*/
|
||||||
RelationshipCapability.appliesTo = function (model) {
|
RelationshipCapability.appliesTo = function (model) {
|
||||||
return Array.isArray((model || {}).relationships);
|
return !!(model || {}).relationships;
|
||||||
};
|
};
|
||||||
|
|
||||||
return RelationshipCapability;
|
return RelationshipCapability;
|
||||||
|
125
platform/core/test/capabilities/RelationshipCapabilitySpec.js
Normal file
125
platform/core/test/capabilities/RelationshipCapabilitySpec.js
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CompositionCapabilitySpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../../src/capabilities/RelationshipCapability"],
|
||||||
|
function (RelationshipCapability) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var DOMAIN_OBJECT_METHODS = [
|
||||||
|
"getId",
|
||||||
|
"getModel",
|
||||||
|
"getCapability",
|
||||||
|
"hasCapability",
|
||||||
|
"useCapability"
|
||||||
|
];
|
||||||
|
|
||||||
|
describe("The relationship capability", function () {
|
||||||
|
var mockDomainObject,
|
||||||
|
mockInjector,
|
||||||
|
mockObjectService,
|
||||||
|
relationship;
|
||||||
|
|
||||||
|
// Composition Capability makes use of promise chaining,
|
||||||
|
// so support that, but don't introduce complication of
|
||||||
|
// native promises.
|
||||||
|
function mockPromise(value) {
|
||||||
|
return {
|
||||||
|
then: function (callback) {
|
||||||
|
return mockPromise(callback(value));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
beforeEach(function () {
|
||||||
|
mockDomainObject = jasmine.createSpyObj(
|
||||||
|
"domainObject",
|
||||||
|
DOMAIN_OBJECT_METHODS
|
||||||
|
);
|
||||||
|
|
||||||
|
mockObjectService = jasmine.createSpyObj(
|
||||||
|
"objectService",
|
||||||
|
[ "getObjects" ]
|
||||||
|
);
|
||||||
|
|
||||||
|
mockInjector = {
|
||||||
|
get: function (name) {
|
||||||
|
return (name === "objectService") && mockObjectService;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
mockObjectService.getObjects.andReturn(mockPromise([]));
|
||||||
|
|
||||||
|
relationship = new RelationshipCapability(
|
||||||
|
mockInjector,
|
||||||
|
mockDomainObject
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("applies only to models with a 'relationships' field", function () {
|
||||||
|
expect(RelationshipCapability.appliesTo({ relationships: {} }))
|
||||||
|
.toBeTruthy();
|
||||||
|
expect(RelationshipCapability.appliesTo({}))
|
||||||
|
.toBeFalsy();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("requests ids found in model's composition from the object service", function () {
|
||||||
|
var ids = [ "a", "b", "c", "xyz" ];
|
||||||
|
|
||||||
|
mockDomainObject.getModel.andReturn({ relationships: { xyz: ids } });
|
||||||
|
|
||||||
|
relationship.getRelatedObjects('xyz');
|
||||||
|
|
||||||
|
expect(mockObjectService.getObjects).toHaveBeenCalledWith(ids);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("provides a list of relationship types", function () {
|
||||||
|
mockDomainObject.getModel.andReturn({ relationships: {
|
||||||
|
abc: [ 'a', 'b' ],
|
||||||
|
def: "not an array, should be ignored",
|
||||||
|
xyz: []
|
||||||
|
} });
|
||||||
|
expect(relationship.listRelationships()).toEqual(['abc', 'xyz']);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("avoids redundant requests", function () {
|
||||||
|
// Lookups can be expensive, so this capability
|
||||||
|
// should have some self-caching
|
||||||
|
var response;
|
||||||
|
|
||||||
|
mockDomainObject.getModel
|
||||||
|
.andReturn({ relationships: { xyz: ['a'] } });
|
||||||
|
|
||||||
|
// Call twice; response should be the same object instance
|
||||||
|
expect(relationship.getRelatedObjects('xyz'))
|
||||||
|
.toBe(relationship.getRelatedObjects('xyz'));
|
||||||
|
|
||||||
|
// Should have only made one call
|
||||||
|
expect(mockObjectService.getObjects.calls.length)
|
||||||
|
.toEqual(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("makes new requests on modification", function () {
|
||||||
|
// Lookups can be expensive, so this capability
|
||||||
|
// should have some self-caching
|
||||||
|
var response, testModel;
|
||||||
|
|
||||||
|
testModel = { relationships: { xyz: ['a'] } };
|
||||||
|
|
||||||
|
mockDomainObject.getModel.andReturn(testModel);
|
||||||
|
|
||||||
|
// Call twice, but as if modification had occurred in between
|
||||||
|
relationship.getRelatedObjects('xyz');
|
||||||
|
testModel.modified = 123;
|
||||||
|
relationship.getRelatedObjects('xyz');
|
||||||
|
|
||||||
|
// Should have only made one call
|
||||||
|
expect(mockObjectService.getObjects.calls.length)
|
||||||
|
.toEqual(2);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
@ -11,6 +11,7 @@
|
|||||||
"capabilities/DelegationCapability",
|
"capabilities/DelegationCapability",
|
||||||
"capabilities/MutationCapability",
|
"capabilities/MutationCapability",
|
||||||
"capabilities/PersistenceCapability",
|
"capabilities/PersistenceCapability",
|
||||||
|
"capabilities/RelationshipCapability",
|
||||||
|
|
||||||
"models/ModelAggregator",
|
"models/ModelAggregator",
|
||||||
"models/PersistedModelProvider",
|
"models/PersistedModelProvider",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user