mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 23:36:41 +00:00
be34e7fa9a
Add tests for capabilities which have been updated to work when only a model (and not whole objects) are cached; that change was introduced to prevent misbehavior of the Remove action in Edit mode, WTD-473.
52 lines
1.7 KiB
JavaScript
52 lines
1.7 KiB
JavaScript
/*global define,describe,it,expect,beforeEach,jasmine*/
|
|
|
|
define(
|
|
["../../src/capabilities/EditableContextCapability"],
|
|
function (EditableContextCapability) {
|
|
"use strict";
|
|
|
|
describe("An editable context capability", function () {
|
|
var mockContext,
|
|
mockEditableObject,
|
|
mockDomainObject,
|
|
mockTestObject,
|
|
someValue,
|
|
mockFactory,
|
|
capability;
|
|
|
|
beforeEach(function () {
|
|
// EditableContextCapability should watch ALL
|
|
// methods for domain objects, so give it an
|
|
// arbitrary interface to wrap.
|
|
mockContext =
|
|
jasmine.createSpyObj("context", [ "getDomainObject" ]);
|
|
mockTestObject = jasmine.createSpyObj(
|
|
"domainObject",
|
|
[ "getId", "getModel", "getCapability" ]
|
|
);
|
|
mockFactory =
|
|
jasmine.createSpyObj("factory", ["getEditableObject"]);
|
|
|
|
someValue = { x: 42 };
|
|
|
|
mockContext.getDomainObject.andReturn(mockTestObject);
|
|
mockFactory.getEditableObject.andReturn(someValue);
|
|
|
|
capability = new EditableContextCapability(
|
|
mockContext,
|
|
mockEditableObject,
|
|
mockDomainObject,
|
|
mockFactory
|
|
);
|
|
|
|
});
|
|
|
|
it("presumes idempotence of its wrapped capability", function () {
|
|
expect(capability.getDomainObject())
|
|
.toEqual(capability.getDomainObject());
|
|
expect(mockContext.getDomainObject.calls.length).toEqual(1);
|
|
});
|
|
|
|
});
|
|
}
|
|
); |