%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 188.40.95.74 / Your IP : 216.73.216.142 Web Server : Apache System : Linux cp01.striminghost.net 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64 User : vlasotin ( 1054) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/cpanel/ea-ruby27/src/passenger-release-6.0.23/test/node/ |
Upload File : |
var util = require('util'); var EventEmitter = require('events').EventEmitter; var assert = require('assert'); require('should'); function FakeStream() { EventEmitter.call(this); this.paused = false; this.connection = {}; } util.inherits(FakeStream, EventEmitter); FakeStream.prototype.resume = function() { this.paused = false; this.flowing = true; } FakeStream.prototype.pause = function() { this.paused = true; this.flowing = false; } FakeStream.prototype.on = function(event, listener) { EventEmitter.prototype.on.call(this, event, listener); // If listening to data, and it has not explicitly been paused, // then call resume to start the flow of data. if (event == 'data' && this.flowing !== false) { this.resume(); } } exports.FakeStream = FakeStream; var Helper = { eventually: function(timeout, check, done) { var startTime = new Date(); var id = setInterval(function() { if (check()) { clearInterval(id); done(); } else if (new Date() - startTime > timeout) { clearInterval(id); assert.fail("Something which should eventually happen never happened"); } }, 10); }, shouldNeverHappen: function(timeout, check, done) { var startTime = new Date(); var id = setInterval(function() { if (check()) { clearInterval(id); assert.fail("Something which should never happen, happened anyway"); } else if (new Date() - startTime > timeout) { clearInterval(id); done(); } }, 10); } }; exports.Helper = Helper;