2018-02-18 13:53:20 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
function run_test() {
|
|
|
|
test_listener_set();
|
|
|
|
test_observer_set();
|
|
|
|
test_operation_group();
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_listener_set() {
|
2018-09-23 02:20:13 +03:00
|
|
|
let set = new cal.data.ListenerSet(Ci.calIOperationListener);
|
2018-02-18 13:53:20 +03:00
|
|
|
let listener1Id = null;
|
|
|
|
let listener2Id = null;
|
|
|
|
|
|
|
|
let listener1 = cal.createAdapter("calIOperationListener", {
|
|
|
|
onOperationComplete: function(aCalendar, aStatus, aOpType, aId, aDetail) {
|
|
|
|
listener1Id = aId;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
let listener2 = cal.createAdapter("calIOperationListener", {
|
|
|
|
onOperationComplete: function(aCalendar, aStatus, aOpType, aId, aDetail) {
|
|
|
|
listener2Id = aId;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
set.add(listener1);
|
|
|
|
set.add(listener2);
|
|
|
|
set.notify("onOperationComplete", [null, null, null, "test", null]);
|
|
|
|
equal(listener1Id, "test");
|
|
|
|
equal(listener2Id, "test");
|
|
|
|
|
|
|
|
set.delete(listener2);
|
|
|
|
listener1Id = listener2Id = null;
|
|
|
|
set.notify("onOperationComplete", [null, null, null, "test2", null]);
|
|
|
|
equal(listener1Id, "test2");
|
|
|
|
strictEqual(listener2Id, null);
|
|
|
|
|
|
|
|
// Re-adding the listener may lead to an endless loop if the notify
|
|
|
|
// function uses a live list of observers.
|
|
|
|
let called = 0;
|
|
|
|
let listener3 = cal.createAdapter("calIOperationListener", {
|
|
|
|
onOperationComplete: function(aCalendar, aStatus, aOpType, aId, aDetail) {
|
|
|
|
set.delete(listener3);
|
|
|
|
if (called == 0) {
|
|
|
|
set.add(listener3);
|
|
|
|
}
|
|
|
|
called++;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
set.add(listener3);
|
|
|
|
set.notify("onOperationComplete", [null, null, null, "test3", null]);
|
|
|
|
equal(called, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_observer_set() {
|
2018-09-23 02:20:13 +03:00
|
|
|
let set = new cal.data.ObserverSet(Ci.calIObserver);
|
2018-02-18 13:53:20 +03:00
|
|
|
let listenerCountBegin1 = 0;
|
|
|
|
let listenerCountBegin2 = 0;
|
|
|
|
let listenerCountEnd1 = 0;
|
|
|
|
let listenerCountEnd2 = 0;
|
|
|
|
|
|
|
|
let listener1 = cal.createAdapter("calIObserver", {
|
|
|
|
onStartBatch: function() {
|
|
|
|
listenerCountBegin1++;
|
|
|
|
},
|
|
|
|
onEndBatch: function() {
|
|
|
|
listenerCountEnd1++;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
let listener2 = cal.createAdapter("calIObserver", {
|
|
|
|
onStartBatch: function() {
|
|
|
|
listenerCountBegin2++;
|
|
|
|
},
|
|
|
|
onEndBatch: function() {
|
|
|
|
listenerCountEnd2++;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
set.add(listener1);
|
|
|
|
equal(listenerCountBegin1, 0);
|
|
|
|
equal(listenerCountEnd1, 0);
|
|
|
|
equal(set.batchCount, 0);
|
|
|
|
|
|
|
|
set.notify("onStartBatch");
|
|
|
|
equal(listenerCountBegin1, 1);
|
|
|
|
equal(listenerCountEnd1, 0);
|
|
|
|
equal(set.batchCount, 1);
|
|
|
|
|
|
|
|
set.add(listener2);
|
|
|
|
equal(listenerCountBegin1, 1);
|
|
|
|
equal(listenerCountEnd1, 0);
|
|
|
|
equal(listenerCountBegin2, 1);
|
|
|
|
equal(listenerCountEnd2, 0);
|
|
|
|
equal(set.batchCount, 1);
|
|
|
|
|
|
|
|
set.add(listener1);
|
|
|
|
equal(listenerCountBegin1, 1);
|
|
|
|
equal(listenerCountEnd1, 0);
|
|
|
|
equal(listenerCountBegin2, 1);
|
|
|
|
equal(listenerCountEnd2, 0);
|
|
|
|
equal(set.batchCount, 1);
|
|
|
|
|
|
|
|
set.notify("onEndBatch");
|
|
|
|
equal(listenerCountBegin1, 1);
|
|
|
|
equal(listenerCountEnd1, 1);
|
|
|
|
equal(listenerCountBegin2, 1);
|
|
|
|
equal(listenerCountEnd2, 1);
|
|
|
|
equal(set.batchCount, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_operation_group() {
|
|
|
|
let calledCancel = false;
|
|
|
|
let calledOperationCancel = null;
|
|
|
|
let group = new cal.data.OperationGroup();
|
|
|
|
ok(group.id.endsWith("-0"));
|
|
|
|
ok(group.isPending);
|
2018-09-23 02:20:13 +03:00
|
|
|
equal(group.status, Cr.NS_OK);
|
2018-02-18 13:53:20 +03:00
|
|
|
ok(group.isEmpty);
|
|
|
|
|
|
|
|
let operation = {
|
|
|
|
id: 123,
|
|
|
|
isPending: true,
|
|
|
|
cancel: (status) => {
|
|
|
|
calledOperationCancel = status;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
group.add(operation);
|
|
|
|
ok(!group.isEmpty);
|
|
|
|
|
2018-09-23 02:20:13 +03:00
|
|
|
group.notifyCompleted(Cr.NS_ERROR_FAILURE);
|
2018-02-18 13:53:20 +03:00
|
|
|
ok(!group.isPending);
|
2018-09-23 02:20:13 +03:00
|
|
|
equal(group.status, Cr.NS_ERROR_FAILURE);
|
2018-02-18 13:53:20 +03:00
|
|
|
strictEqual(calledOperationCancel, null);
|
|
|
|
|
|
|
|
group.remove(operation);
|
|
|
|
ok(group.isEmpty);
|
|
|
|
|
|
|
|
group = new cal.data.OperationGroup(() => {
|
|
|
|
calledCancel = true;
|
|
|
|
});
|
|
|
|
ok(group.id.endsWith("-1"));
|
|
|
|
group.add(operation);
|
|
|
|
|
|
|
|
group.cancel();
|
2018-09-23 02:20:13 +03:00
|
|
|
equal(group.status, Ci.calIErrors.OPERATION_CANCELLED);
|
|
|
|
equal(calledOperationCancel, Ci.calIErrors.OPERATION_CANCELLED);
|
2018-02-18 13:53:20 +03:00
|
|
|
ok(calledCancel);
|
|
|
|
}
|