forked from videojs/mux.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow add/remove listeners in callbacks (videojs#119) (videojs#121)
Using a callback to mutate the listeners (e.g. removing yourself), previously changed the iterated array, causing bugs. Remove the problem by always copying the array, so on()/off() become safe to call at any time.
- Loading branch information
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
'use strict'; | ||
|
||
var | ||
stream, | ||
Stream = require('../lib/utils/stream'), | ||
QUnit = require('qunit'); | ||
|
||
QUnit.module('Stream', { | ||
beforeEach: function() { | ||
stream = new Stream(); | ||
stream.init(); | ||
} | ||
}); | ||
|
||
QUnit.test('trigger calls listeners', function() { | ||
var args = []; | ||
|
||
stream.on('test', function(data) { | ||
args.push(data); | ||
}); | ||
|
||
stream.trigger('test', 1); | ||
stream.trigger('test', 2); | ||
|
||
QUnit.deepEqual(args, [1, 2]); | ||
}); | ||
|
||
QUnit.test('callbacks can remove themselves', function() { | ||
var args1 = [], args2 = [], args3 = []; | ||
|
||
stream.on('test', function(event) { | ||
args1.push(event); | ||
}); | ||
stream.on('test', function t(event) { | ||
args2.push(event); | ||
stream.off('test', t); | ||
}); | ||
stream.on('test', function(event) { | ||
args3.push(event); | ||
}); | ||
|
||
stream.trigger('test', 1); | ||
stream.trigger('test', 2); | ||
|
||
QUnit.deepEqual(args1, [1, 2], 'first callback ran all times'); | ||
QUnit.deepEqual(args2, [1], 'second callback removed after first run'); | ||
QUnit.deepEqual(args3, [1, 2], 'third callback ran all times'); | ||
}); |