2015-05-13 23:42:35 +00:00
|
|
|
/*****************************************************************************
|
2018-05-14 22:46:17 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2018, 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-03-24 23:13:59 +00:00
|
|
|
|
|
|
|
define(
|
2015-03-25 17:10:06 +00:00
|
|
|
["../src/PersistenceFailureHandler", "../src/PersistenceFailureConstants"],
|
|
|
|
function (PersistenceFailureHandler, Constants) {
|
2015-03-24 23:13:59 +00:00
|
|
|
|
|
|
|
describe("The persistence failure handler", function () {
|
2015-03-25 17:10:06 +00:00
|
|
|
var mockQ,
|
|
|
|
mockDialogService,
|
|
|
|
mockFailures,
|
|
|
|
mockPromise,
|
|
|
|
handler;
|
|
|
|
|
|
|
|
function makeMockFailure(id, index) {
|
|
|
|
var mockFailure = jasmine.createSpyObj(
|
|
|
|
'failure-' + id,
|
|
|
|
['requeue']
|
|
|
|
),
|
|
|
|
mockPersistence = jasmine.createSpyObj(
|
|
|
|
'persistence-' + id,
|
|
|
|
['refresh', 'persist']
|
|
|
|
);
|
|
|
|
mockFailure.domainObject = jasmine.createSpyObj(
|
|
|
|
'domainObject',
|
|
|
|
['getCapability', 'useCapability', 'getModel']
|
|
|
|
);
|
2018-06-30 00:32:59 +00:00
|
|
|
mockFailure.domainObject.getCapability.and.callFake(function (c) {
|
2015-03-25 17:10:06 +00:00
|
|
|
return (c === 'persistence') && mockPersistence;
|
|
|
|
});
|
2020-07-31 19:11:03 +00:00
|
|
|
mockFailure.domainObject.getModel.and.returnValue({
|
|
|
|
id: id,
|
|
|
|
modified: index
|
|
|
|
});
|
2015-03-25 17:10:06 +00:00
|
|
|
mockFailure.persistence = mockPersistence;
|
|
|
|
mockFailure.id = id;
|
|
|
|
mockFailure.error = { key: Constants.REVISION_ERROR_KEY };
|
2020-07-31 19:11:03 +00:00
|
|
|
|
2015-03-25 17:10:06 +00:00
|
|
|
return mockFailure;
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
mockQ = jasmine.createSpyObj('$q', ['all', 'when']);
|
|
|
|
mockDialogService = jasmine.createSpyObj('dialogService', ['getUserChoice']);
|
|
|
|
mockFailures = ['a', 'b', 'c'].map(makeMockFailure);
|
|
|
|
mockPromise = jasmine.createSpyObj('promise', ['then']);
|
2018-06-30 00:32:59 +00:00
|
|
|
mockDialogService.getUserChoice.and.returnValue(mockPromise);
|
|
|
|
mockQ.all.and.returnValue(mockPromise);
|
|
|
|
mockPromise.then.and.returnValue(mockPromise);
|
2015-03-25 17:10:06 +00:00
|
|
|
handler = new PersistenceFailureHandler(mockQ, mockDialogService);
|
|
|
|
});
|
|
|
|
|
2019-03-28 20:55:39 +00:00
|
|
|
it("discards on handle", function () {
|
2015-03-25 17:10:06 +00:00
|
|
|
handler.handle(mockFailures);
|
2016-03-04 20:56:14 +00:00
|
|
|
mockFailures.forEach(function (mockFailure) {
|
2015-03-25 17:10:06 +00:00
|
|
|
expect(mockFailure.persistence.refresh).toHaveBeenCalled();
|
|
|
|
expect(mockFailure.requeue).not.toHaveBeenCalled();
|
|
|
|
expect(mockFailure.domainObject.useCapability).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
2015-03-24 23:13:59 +00:00
|
|
|
});
|
|
|
|
}
|
2016-05-19 18:29:13 +00:00
|
|
|
);
|