mirror of
https://github.com/serratus/quaggaJS.git
synced 2026-08-13 05:31:37 +08:00
Added un-subscribe event and covered the Events-module
This commit is contained in:
+112
-1
@@ -1,3 +1,114 @@
|
|||||||
define(['events'], function(Events){
|
define(['events'], function(Events){
|
||||||
|
beforeEach(function() {
|
||||||
|
Events.unsubscribe();
|
||||||
|
});
|
||||||
|
describe("subscribe", function() {
|
||||||
|
|
||||||
|
|
||||||
|
it("should call one callback for a single event", function() {
|
||||||
|
var callbackA = sinon.stub(),
|
||||||
|
callbackB = sinon.stub();
|
||||||
|
|
||||||
|
Events.subscribe("test", callbackA);
|
||||||
|
Events.subscribe("test", callbackB);
|
||||||
|
Events.publish("test");
|
||||||
|
|
||||||
|
expect(callbackA.calledOnce).to.be.equal(true);
|
||||||
|
expect(callbackB.calledOnce).to.be.equal(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should call one callback twice if published twice", function() {
|
||||||
|
var callback = sinon.stub();
|
||||||
|
|
||||||
|
Events.subscribe("test", callback);
|
||||||
|
|
||||||
|
Events.publish("test");
|
||||||
|
Events.publish("test");
|
||||||
|
|
||||||
|
expect(callback.calledTwice).to.be.equal(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should call the callback asynchronuously", function(done) {
|
||||||
|
var test = {
|
||||||
|
callback: function() {
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
sinon.stub(test, "callback", function() {
|
||||||
|
expect(test.callback.calledOnce).to.be.true;
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
Events.subscribe("test", test.callback, true);
|
||||||
|
Events.publish("test");
|
||||||
|
expect(test.callback.called).to.be.false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("once", function() {
|
||||||
|
it("should call the callback once, even when published twice", function() {
|
||||||
|
var callbackA = sinon.stub(),
|
||||||
|
callbackB = sinon.stub();
|
||||||
|
|
||||||
|
Events.once("test", callbackA);
|
||||||
|
Events.subscribe("test", callbackB);
|
||||||
|
|
||||||
|
Events.publish("test");
|
||||||
|
Events.publish("test");
|
||||||
|
|
||||||
|
expect(callbackA.calledOnce).to.be.equal(true);
|
||||||
|
expect(callbackB.calledTwice).to.be.equal(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("unsubscribe", function() {
|
||||||
|
it("should unsubscribe all callbacks from a single event", function() {
|
||||||
|
var callbackA = sinon.stub(),
|
||||||
|
callbackB = sinon.stub(),
|
||||||
|
callbackC = sinon.stub();
|
||||||
|
|
||||||
|
Events.subscribe("test", callbackA);
|
||||||
|
Events.subscribe("test", callbackB);
|
||||||
|
Events.subscribe("testC", callbackC);
|
||||||
|
|
||||||
|
Events.publish("test");
|
||||||
|
|
||||||
|
expect(callbackC.called).to.be.equal(false);
|
||||||
|
expect(callbackA.calledOnce).to.be.equal(true);
|
||||||
|
expect(callbackB.calledOnce).to.be.equal(true);
|
||||||
|
|
||||||
|
Events.publish("testC");
|
||||||
|
|
||||||
|
expect(callbackC.calledOnce).to.be.equal(true);
|
||||||
|
expect(callbackA.calledOnce).to.be.equal(true);
|
||||||
|
expect(callbackB.calledOnce).to.be.equal(true);
|
||||||
|
|
||||||
|
Events.unsubscribe("test");
|
||||||
|
Events.publish("test");
|
||||||
|
|
||||||
|
expect(callbackC.calledOnce).to.be.equal(true);
|
||||||
|
expect(callbackA.calledOnce).to.be.equal(true);
|
||||||
|
expect(callbackB.calledOnce).to.be.equal(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should unsubscribe a single callback from a single event", function() {
|
||||||
|
var callbackA = sinon.stub(),
|
||||||
|
callbackB = sinon.stub();
|
||||||
|
|
||||||
|
Events.subscribe("test", callbackA);
|
||||||
|
Events.subscribe("test", callbackB);
|
||||||
|
|
||||||
|
Events.publish("test");
|
||||||
|
|
||||||
|
expect(callbackA.calledOnce).to.be.equal(true);
|
||||||
|
expect(callbackB.calledOnce).to.be.equal(true);
|
||||||
|
|
||||||
|
|
||||||
|
Events.unsubscribe("test", callbackB);
|
||||||
|
Events.publish("test");
|
||||||
|
|
||||||
|
expect(callbackA.calledTwice).to.be.equal(true);
|
||||||
|
expect(callbackB.calledOnce).to.be.equal(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
@@ -16,6 +16,10 @@ define(function() {
|
|||||||
return events[eventName];
|
return events[eventName];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function clearEvents(){
|
||||||
|
events = {};
|
||||||
|
}
|
||||||
|
|
||||||
function publishSubscription(subscription, data) {
|
function publishSubscription(subscription, data) {
|
||||||
if (subscription.async) {
|
if (subscription.async) {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
@@ -63,6 +67,22 @@ define(function() {
|
|||||||
async: async,
|
async: async,
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
unsubscribe: function(eventName, callback) {
|
||||||
|
var event;
|
||||||
|
|
||||||
|
if (eventName) {
|
||||||
|
event = getEvent(eventName);
|
||||||
|
if (event && callback) {
|
||||||
|
event.subscribers = event.subscribers.filter(function(subscriber){
|
||||||
|
return subscriber.callback !== callback;
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
event.subscribers = [];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
clearEvents();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}();
|
}();
|
||||||
|
|||||||
Reference in New Issue
Block a user