mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 15:02:23 +00:00
124 lines
5.1 KiB
JavaScript
124 lines
5.1 KiB
JavaScript
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2014-2016, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT 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 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.
|
|
*****************************************************************************/
|
|
|
|
define(
|
|
["../../src/actions/SaveAndStopEditingAction"],
|
|
function (SaveAndStopEditingAction) {
|
|
|
|
describe("The Save and Stop Editing action", function () {
|
|
|
|
// Some mocks appear unused because the
|
|
// underlying SaveAction that this action
|
|
// depends on is not mocked, so we mock some
|
|
// of SaveAction's own dependencies to make
|
|
// it run.
|
|
var mockDomainObject,
|
|
mockEditorCapability,
|
|
actionContext,
|
|
dialogService,
|
|
mockActionCapability,
|
|
capabilities = {},
|
|
action;
|
|
|
|
function mockPromise(value) {
|
|
return {
|
|
then: function (callback) {
|
|
return mockPromise(callback(value));
|
|
},
|
|
catch: function (callback) {
|
|
return mockPromise(callback(value));
|
|
}
|
|
};
|
|
}
|
|
|
|
beforeEach(function () {
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
"domainObject",
|
|
[
|
|
"getCapability",
|
|
"hasCapability",
|
|
"getModel",
|
|
"getOriginalObject"
|
|
]
|
|
);
|
|
mockEditorCapability = jasmine.createSpyObj(
|
|
"editor",
|
|
["save", "finish", "isEditContextRoot"]
|
|
);
|
|
mockActionCapability = jasmine.createSpyObj(
|
|
"actionCapability",
|
|
["perform"]
|
|
);
|
|
capabilities.editor = mockEditorCapability;
|
|
capabilities.action = mockActionCapability;
|
|
|
|
actionContext = {
|
|
domainObject: mockDomainObject
|
|
};
|
|
dialogService = jasmine.createSpyObj(
|
|
"dialogService",
|
|
["showBlockingMessage"]
|
|
);
|
|
|
|
mockDomainObject.hasCapability.andReturn(true);
|
|
mockDomainObject.getCapability.andCallFake(function (capability) {
|
|
return capabilities[capability];
|
|
});
|
|
mockDomainObject.getModel.andReturn({ persisted: 0 });
|
|
mockEditorCapability.save.andReturn(mockPromise(true));
|
|
mockEditorCapability.isEditContextRoot.andReturn(true);
|
|
|
|
action = new SaveAndStopEditingAction(dialogService, actionContext);
|
|
});
|
|
|
|
|
|
it("only applies to domain object with an editor capability", function () {
|
|
expect(SaveAndStopEditingAction.appliesTo(actionContext)).toBe(true);
|
|
expect(mockDomainObject.hasCapability).toHaveBeenCalledWith("editor");
|
|
|
|
mockDomainObject.hasCapability.andReturn(false);
|
|
mockDomainObject.getCapability.andReturn(undefined);
|
|
expect(SaveAndStopEditingAction.appliesTo(actionContext)).toBe(false);
|
|
});
|
|
|
|
it("only applies to domain object that has already been persisted", function () {
|
|
mockDomainObject.getModel.andReturn({ persisted: undefined });
|
|
expect(SaveAndStopEditingAction.appliesTo(actionContext)).toBe(false);
|
|
});
|
|
|
|
it("does not close the editor before completing the save", function () {
|
|
mockEditorCapability.save.andReturn(new Promise(function () {
|
|
}));
|
|
action.perform();
|
|
expect(mockEditorCapability.save).toHaveBeenCalled();
|
|
expect(mockEditorCapability.finish).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("closes the editor after saving", function () {
|
|
action.perform();
|
|
expect(mockEditorCapability.save).toHaveBeenCalled();
|
|
expect(mockEditorCapability.finish).toHaveBeenCalled();
|
|
});
|
|
});
|
|
}
|
|
);
|