/var/www/myprog.com.ua/server/node/node_modules/ws/test
NameSizeModeActions
fixtures/-0755rm
autobahn-server.js7320644editdlrm
autobahn.js14110644editdlrm
BufferPool.test.js19370644editdlrm
hybi-common.js22510644editdlrm
Receiver.hixie.test.js37020644editdlrm
Receiver.test.js88500644editdlrm
Sender.hixie.test.js40270644editdlrm
Sender.test.js7390644editdlrm
testserver.js45680644editdlrm
Validation.test.js18750644editdlrm
WebSocket.integration.js11200644editdlrm
WebSocket.test.js534100644editdlrm
WebSocketServer.test.js354590644editdlrm
Edit: /var/www/myprog.com.ua/server/node/node_modules/ws/test/BufferPool.test.js (1937B)
var BufferPool = require('../lib/BufferPool'); require('should'); describe('BufferPool', function() { describe('#ctor', function() { it('allocates pool', function() { var db = new BufferPool(1000); db.size.should.eql(1000); }); }); describe('#get', function() { it('grows the pool if necessary', function() { var db = new BufferPool(1000); var buf = db.get(2000); db.size.should.be.above(1000); db.used.should.eql(2000); buf.length.should.eql(2000); }); it('grows the pool after the first call, if necessary', function() { var db = new BufferPool(1000); var buf = db.get(1000); db.used.should.eql(1000); db.size.should.eql(1000); buf.length.should.eql(1000); var buf2 = db.get(1000); db.used.should.eql(2000); db.size.should.be.above(1000); buf2.length.should.eql(1000); }); it('grows the pool according to the growStrategy if necessary', function() { var db = new BufferPool(1000, function(db, length) { return db.size + 2345; }); var buf = db.get(2000); db.size.should.eql(3345); buf.length.should.eql(2000); }); it('doesnt grow the pool if theres enough room available', function() { var db = new BufferPool(1000); var buf = db.get(1000); db.size.should.eql(1000); buf.length.should.eql(1000); }); }); describe('#reset', function() { it('shinks the pool', function() { var db = new BufferPool(1000); var buf = db.get(2000); db.reset(true); db.size.should.eql(1000); }); it('shrinks the pool according to the shrinkStrategy', function() { var db = new BufferPool(1000, function(db, length) { return db.used + length; }, function(db) { return 0; }); var buf = db.get(2000); db.reset(true); db.size.should.eql(0); }); }); });