summaryrefslogtreecommitdiff
path: root/platform/node
diff options
context:
space:
mode:
authorMike Morris <mikemorris@users.noreply.github.com>2016-07-12 16:18:02 -0400
committerMike Morris <mikemorris@users.noreply.github.com>2016-07-14 13:47:02 -0400
commit480be63396abe016ce8f1c8c5acd8621412a0fa3 (patch)
treef516474389565309ac9e0877b1d38e0ddc5bba74 /platform/node
parentce8f053adb91e2d78c67716bc5d1af797e6b2743 (diff)
downloadqtlocation-mapboxgl-480be63396abe016ce8f1c8c5acd8621412a0fa3.tar.gz
[node] move memory growth test into separate npm script
webp support in memory test
Diffstat (limited to 'platform/node')
-rw-r--r--platform/node/test/memory.test.js (renamed from platform/node/test/js/memory.test.js)26
1 files changed, 14 insertions, 12 deletions
diff --git a/platform/node/test/js/memory.test.js b/platform/node/test/memory.test.js
index 536342a649..e958f8a29b 100644
--- a/platform/node/test/js/memory.test.js
+++ b/platform/node/test/memory.test.js
@@ -1,16 +1,15 @@
'use strict';
var fs = require('fs');
-var mbgl = require('../../../../lib/mapbox-gl-native');
+var mbgl = require('../../../lib/mapbox-gl-native');
var path = require('path');
var test = require('tape');
var testParams = {
mapPoolSize: 10,
- numRenderings: 30,
- heapGrowthThreshould: 256 * 1024, // 256 KB
-
- ratio: 2,
+ numRenderings: 100,
+ heapGrowthThreshold: 0,
+ ratio: 2
};
function readFixture(file) {
@@ -28,6 +27,11 @@ var tile_raster = readFixture('raster.tile');
var tile_vector = readFixture('vector.tile');
test('Memory', function(t) {
+ // Trigger garbage collection before starting test, then initialize
+ // heap size
+ if (typeof gc === 'function') gc();
+ var lastHeapSize = process.memoryUsage()['heapUsed'];
+
var options = {
request: function(req, callback) {
if (req.url == null) {
@@ -40,7 +44,7 @@ test('Memory', function(t) {
callback(null, { data: glyph });
} else if (req.url.endsWith('mapbox.satellite')) {
callback(null, { data: source_raster });
- } else if (req.url.indexOf('satellite') > -1 && req.url.endsWith('png')) {
+ } else if (req.url.indexOf('satellite') > -1 && (req.url.endsWith('png') || req.url.endsWith('webp'))) {
callback(null, { data: tile_raster });
} else if (req.url.endsWith('mapbox.mapbox-streets-v7')) {
callback(null, { data: source_vector });
@@ -62,7 +66,6 @@ test('Memory', function(t) {
var renderCount = 0;
var heapGrowth = 0;
- var lastHeapSize = 0;
var interval = setInterval(function () {
if (mapPool.length == 0) {
@@ -81,22 +84,21 @@ test('Memory', function(t) {
mapPool.push(map);
if (renderCount % (testParams.numRenderings / 10) == 0) {
+ // Manually trigger garbage collection
+ if (typeof gc === 'function') gc();
+
var currentHeapSize = process.memoryUsage()['heapUsed'];
// Print some progress, so slow build bots don't timeout.
t.comment("Rendering (" + renderCount.toString() +
"/" + testParams.numRenderings.toString() + ")");
- if (lastHeapSize == 0) {
- lastHeapSize = currentHeapSize;
- }
-
heapGrowth = heapGrowth + currentHeapSize - lastHeapSize;
lastHeapSize = currentHeapSize;
}
if (++renderCount == testParams.numRenderings) {
- t.ok(heapGrowth < testParams.heapGrowthThreshould, heapGrowth);
+ t.ok(heapGrowth < testParams.heapGrowthThreshold, heapGrowth);
t.end();
clearInterval(interval);