mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
2f7746df53
Add specs for the save and cancel conclude-editing actions, part of bundle platform/commonUI/edit (Edit Mode) which is transitioned among the various common UI bundles. WTD-574
77 lines
2.6 KiB
JavaScript
77 lines
2.6 KiB
JavaScript
/*global define,describe,it,expect,beforeEach,jasmine*/
|
|
|
|
define(
|
|
["../../src/actions/CancelAction"],
|
|
function (CancelAction) {
|
|
"use strict";
|
|
|
|
describe("The Cancel action", function () {
|
|
var mockLocation,
|
|
mockDomainObject,
|
|
mockEditorCapability,
|
|
actionContext,
|
|
action;
|
|
|
|
function mockPromise(value) {
|
|
return {
|
|
then: function (callback) {
|
|
return mockPromise(callback(value));
|
|
}
|
|
};
|
|
}
|
|
|
|
beforeEach(function () {
|
|
mockLocation = jasmine.createSpyObj(
|
|
"$location",
|
|
[ "path" ]
|
|
);
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
"domainObject",
|
|
[ "getCapability", "hasCapability" ]
|
|
);
|
|
mockEditorCapability = jasmine.createSpyObj(
|
|
"editor",
|
|
[ "save", "cancel" ]
|
|
);
|
|
|
|
|
|
actionContext = {
|
|
domainObject: mockDomainObject
|
|
};
|
|
|
|
mockDomainObject.hasCapability.andReturn(true);
|
|
mockDomainObject.getCapability.andReturn(mockEditorCapability);
|
|
mockEditorCapability.cancel.andReturn(mockPromise(true));
|
|
|
|
action = new CancelAction(mockLocation, actionContext);
|
|
|
|
});
|
|
|
|
it("only applies to domain object with an editor capability", function () {
|
|
expect(CancelAction.appliesTo(actionContext)).toBeTruthy();
|
|
expect(mockDomainObject.hasCapability).toHaveBeenCalledWith("editor");
|
|
|
|
mockDomainObject.hasCapability.andReturn(false);
|
|
mockDomainObject.getCapability.andReturn(undefined);
|
|
expect(CancelAction.appliesTo(actionContext)).toBeFalsy();
|
|
});
|
|
|
|
it("invokes the editor capability's save functionality when performed", function () {
|
|
// Verify precondition
|
|
expect(mockEditorCapability.cancel).not.toHaveBeenCalled();
|
|
action.perform();
|
|
|
|
// Should have called cancel
|
|
expect(mockEditorCapability.cancel).toHaveBeenCalled();
|
|
|
|
// Definitely shouldn't call save!
|
|
expect(mockEditorCapability.save).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("returns to browse when performed", function () {
|
|
action.perform();
|
|
expect(mockLocation.path).toHaveBeenCalledWith("/browse");
|
|
});
|
|
});
|
|
}
|
|
); |