memoryLeaks.test.js
2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
//'use strict';
//
// var Crawler = require('../../lib/crawler').Crawler;
//var expect = require('chai').expect;
//var _ = require('underscore');
//var memwatch = require('memwatch');
//var httpbinHost = 'localhost:8000';
//
//var c;
//
//describe('Leaks', function() {
// afterEach(function(){
// c = {};
// });
// it('should leak with JSDOM enabled and without autoWindowClose', function(done){
//
// //disabled mocha timeout for this particular test
// this.timeout(999999999);
//
// var N = 100;
// var hd;
// c = new Crawler({
// jQuery: true,
// timeout: 500,
// autoWindowClose: false,
// retryTimeout: 1000,
// retries: 1,
// onDrain: function() {
// // Wait a bit for the GC to kick in
// setTimeout(function() {
// var diff = hd.end();
// //Should have grown by more than 2 MB.
// expect(diff.change.size_bytes).to.be.above(2000000);
// done();
// }, 10000);
// }
// });
//
// hd = new memwatch.HeapDiff();
// for (var i=0; i<N; i++) {
// c.queue([{
// uri:'http://'+httpbinHost+'/stream/10'+i,
// callback:function(error,result,$) {}
// }]);
// }
// });
//
// it('should NOT leak with JSDOM disabled, crawling 10k urls', function(done) {
//
// //disabled mocha timeout for this particular test
// this.timeout(999999999);
//
// var N = 10000;
// var hd;
// c = new Crawler({
// jQuery: false,
// timeout: 500,
// autoWindowClose: false,
// retryTimeout: 1000,
// retries: 1,
// onDrain: function() {
// // Wait a bit for the GC to kick in
// setTimeout(function() {
// var diff = hd.end();
// console.log(diff.change.size_bytes);
// //Should have almost not changed, less then 1000kb
// expect(diff.change.size_bytes).to.be.below(1000000);
// done();
// }, 10000);
// }
// });
//
// hd = new memwatch.HeapDiff();
// for (var i=0; i<N; i++) {
// c.queue([{
// uri:'http://'+httpbinHost+'/stream/10'+i,
// callback:function(error,result,$) {}
// }]);
// }
// });
//});