summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuguru Motegi <suguru.motegi@gmail.com>2016-04-26 20:56:45 -0700
committerSuguru Motegi <suguru.motegi@gmail.com>2016-04-26 20:56:45 -0700
commit8578287ef84ccad8dd0e5eea47b53c434b5bd261 (patch)
tree3df3609ee8e16f1484a66e0fbe286c407fe74c68
parentd18000b71d9c2a7d61b9ff9621513f2b0b6c3122 (diff)
downloadasync-8578287ef84ccad8dd0e5eea47b53c434b5bd261.tar.gz
add `queue` and `priortyQueue` test
-rw-r--r--mocha_test/priorityQueue.js38
-rw-r--r--mocha_test/queue.js38
2 files changed, 74 insertions, 2 deletions
diff --git a/mocha_test/priorityQueue.js b/mocha_test/priorityQueue.js
index 6ac3d15..b777815 100644
--- a/mocha_test/priorityQueue.js
+++ b/mocha_test/priorityQueue.js
@@ -108,7 +108,43 @@ describe('priorityQueue', function() {
};
});
-
+ context('q.saturated(): ', function() {
+ it('should call the saturated callback if tasks length is concurrency', function(done) {
+ var calls = [];
+ var q = async.priorityQueue(function(task, cb) {
+ calls.push('process ' + task);
+ async.setImmediate(cb);
+ }, 4);
+ q.saturated = function() {
+ calls.push('saturated');
+ };
+ q.empty = function() {
+ expect(calls.indexOf('saturated')).to.be.above(-1);
+ setTimeout(function() {
+ expect(calls).eql([
+ 'process foo4',
+ 'process foo3',
+ 'process foo2',
+ "saturated",
+ 'process foo1',
+ 'foo4 cb',
+ "saturated",
+ 'process foo0',
+ 'foo3 cb',
+ 'foo2 cb',
+ 'foo1 cb',
+ 'foo0 cb'
+ ]);
+ done();
+ }, 50);
+ };
+ q.push('foo0', 5, function () {calls.push('foo0 cb');});
+ q.push('foo1', 4, function () {calls.push('foo1 cb');});
+ q.push('foo2', 3, function () {calls.push('foo2 cb');});
+ q.push('foo3', 2, function () {calls.push('foo3 cb');});
+ q.push('foo4', 1, function () {calls.push('foo4 cb');});
+ });
+ });
context('q.unsaturated(): ',function() {
it('should have a default buffer property that equals 25% of the concurrenct rate', function(done) {
diff --git a/mocha_test/queue.js b/mocha_test/queue.js
index 2baf124..a51efb3 100644
--- a/mocha_test/queue.js
+++ b/mocha_test/queue.js
@@ -599,7 +599,43 @@ describe('queue', function(){
done();
});
-
+ context('q.saturated(): ', function() {
+ it('should call the saturated callback if tasks length is concurrency', function(done) {
+ var calls = [];
+ var q = async.queue(function(task, cb) {
+ calls.push('process ' + task);
+ async.setImmediate(cb);
+ }, 4);
+ q.saturated = function() {
+ calls.push('saturated');
+ };
+ q.empty = function() {
+ expect(calls.indexOf('saturated')).to.be.above(-1);
+ setTimeout(function() {
+ expect(calls).eql([
+ 'process foo0',
+ 'process foo1',
+ 'process foo2',
+ "saturated",
+ 'process foo3',
+ 'foo0 cb',
+ "saturated",
+ 'process foo4',
+ 'foo1 cb',
+ 'foo2 cb',
+ 'foo3 cb',
+ 'foo4 cb'
+ ]);
+ done();
+ }, 50);
+ };
+ q.push('foo0', function () {calls.push('foo0 cb');});
+ q.push('foo1', function () {calls.push('foo1 cb');});
+ q.push('foo2', function () {calls.push('foo2 cb');});
+ q.push('foo3', function () {calls.push('foo3 cb');});
+ q.push('foo4', function () {calls.push('foo4 cb');});
+ });
+ });
context('q.unsaturated(): ',function() {
it('should have a default buffer property that equals 25% of the concurrenct rate', function(done){