2016-05-12 23:14:31 +00:00
|
|
|
/*****************************************************************************
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2016, United States Government
|
2016-05-12 23:14:31 +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
|
2016-05-12 23:14:31 +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
|
2016-05-12 23:14:31 +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.
|
|
|
|
*****************************************************************************/
|
2016-05-12 23:50:19 +00:00
|
|
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
2016-05-12 23:14:31 +00:00
|
|
|
|
|
|
|
define(
|
|
|
|
[
|
|
|
|
"../../src/capabilities/TransactionalPersistenceCapability"
|
|
|
|
],
|
|
|
|
function (TransactionalPersistenceCapability) {
|
|
|
|
|
|
|
|
function fastPromise(val) {
|
|
|
|
return {
|
2016-05-19 18:29:13 +00:00
|
|
|
then: function (callback) {
|
2016-05-12 23:14:31 +00:00
|
|
|
return callback(val);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
describe("The transactional persistence decorator", function () {
|
|
|
|
var mockQ,
|
2016-07-14 23:20:29 +00:00
|
|
|
mockTransactionManager,
|
2016-05-12 23:14:31 +00:00
|
|
|
mockPersistence,
|
|
|
|
mockDomainObject,
|
2016-07-15 19:23:33 +00:00
|
|
|
testId,
|
2016-05-12 23:14:31 +00:00
|
|
|
capability;
|
|
|
|
|
2016-05-19 18:29:13 +00:00
|
|
|
beforeEach(function () {
|
2016-07-15 19:23:33 +00:00
|
|
|
testId = "test-id";
|
|
|
|
|
2016-05-12 23:14:31 +00:00
|
|
|
mockQ = jasmine.createSpyObj("$q", ["when"]);
|
|
|
|
mockQ.when.andCallFake(function (val) {
|
|
|
|
return fastPromise(val);
|
|
|
|
});
|
2016-07-14 23:20:29 +00:00
|
|
|
mockTransactionManager = jasmine.createSpyObj(
|
2016-05-12 23:14:31 +00:00
|
|
|
"transactionService",
|
2016-07-14 23:20:29 +00:00
|
|
|
["isActive", "addToTransaction", "clearTransactionsFor"]
|
2016-05-12 23:14:31 +00:00
|
|
|
);
|
|
|
|
mockPersistence = jasmine.createSpyObj(
|
|
|
|
"persistenceCapability",
|
2016-07-14 23:20:29 +00:00
|
|
|
["persist", "refresh", "getSpace"]
|
2016-05-12 23:14:31 +00:00
|
|
|
);
|
2016-05-12 21:20:16 +00:00
|
|
|
mockPersistence.persist.andReturn(fastPromise());
|
|
|
|
mockPersistence.refresh.andReturn(fastPromise());
|
2016-06-01 09:41:01 +00:00
|
|
|
|
|
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
|
|
"domainObject",
|
2016-07-15 19:23:33 +00:00
|
|
|
["getModel", "getId"]
|
2016-06-01 09:41:01 +00:00
|
|
|
);
|
|
|
|
mockDomainObject.getModel.andReturn({persisted: 1});
|
2016-07-15 19:23:33 +00:00
|
|
|
mockDomainObject.getId.andReturn(testId);
|
2016-06-01 09:41:01 +00:00
|
|
|
|
2016-07-14 23:20:29 +00:00
|
|
|
capability = new TransactionalPersistenceCapability(
|
|
|
|
mockQ,
|
|
|
|
mockTransactionManager,
|
|
|
|
mockPersistence,
|
|
|
|
mockDomainObject
|
|
|
|
);
|
2016-05-12 23:14:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("if no transaction is active, passes through to persistence" +
|
2016-05-19 18:29:13 +00:00
|
|
|
" provider", function () {
|
2016-07-14 23:20:29 +00:00
|
|
|
mockTransactionManager.isActive.andReturn(false);
|
2016-05-12 23:14:31 +00:00
|
|
|
capability.persist();
|
|
|
|
expect(mockPersistence.persist).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2016-05-12 21:20:16 +00:00
|
|
|
it("if transaction is active, persist and cancel calls are" +
|
2016-05-19 18:29:13 +00:00
|
|
|
" queued", function () {
|
2016-07-14 23:20:29 +00:00
|
|
|
mockTransactionManager.isActive.andReturn(true);
|
2016-05-12 23:14:31 +00:00
|
|
|
capability.persist();
|
2016-07-14 23:20:29 +00:00
|
|
|
expect(mockTransactionManager.addToTransaction).toHaveBeenCalled();
|
|
|
|
mockTransactionManager.addToTransaction.mostRecentCall.args[1]();
|
2016-05-12 23:14:31 +00:00
|
|
|
expect(mockPersistence.persist).toHaveBeenCalled();
|
2016-07-14 23:20:29 +00:00
|
|
|
mockTransactionManager.addToTransaction.mostRecentCall.args[2]();
|
2016-06-01 09:41:01 +00:00
|
|
|
expect(mockPersistence.refresh).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2016-07-14 23:22:25 +00:00
|
|
|
it("wraps getSpace", function () {
|
|
|
|
mockPersistence.getSpace.andReturn('foo');
|
|
|
|
expect(capability.getSpace()).toEqual('foo');
|
|
|
|
});
|
|
|
|
|
|
|
|
it("clears transactions and delegates refresh calls", function () {
|
|
|
|
capability.refresh();
|
|
|
|
expect(mockTransactionManager.clearTransactionsFor)
|
2016-07-15 19:23:33 +00:00
|
|
|
.toHaveBeenCalledWith(testId);
|
2016-07-14 23:22:25 +00:00
|
|
|
expect(mockPersistence.refresh)
|
|
|
|
.toHaveBeenCalled();
|
|
|
|
});
|
2016-05-12 23:14:31 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
}
|
2016-05-19 18:29:13 +00:00
|
|
|
);
|