Skip to content

Commit

Permalink
test: testing freelist module
Browse files Browse the repository at this point in the history
  • Loading branch information
thefourtheye committed Jul 17, 2015
1 parent ab30e0b commit 70414ed
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions test/parallel/test-freelist.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
'use strict';

// Flags: --expose-internals

const assert = require('assert');
const freelist = require('freelist');
const internalFreelist = require('internal/freelist');

assert.equal(typeof freelist, 'object');
assert.equal(typeof freelist.FreeList, 'function');
assert.strictEqual(freelist, internalFreelist);

const flist1 = new freelist.FreeList('flist1', 3, String);

// Allocating when empty, should not change the list size
var result = flist1.alloc('test');
assert.strictEqual(typeof result, 'string');
assert.strictEqual(result, 'test');
assert.strictEqual(flist1.list.length, 0);

// Exhaust the free list
assert(flist1.free('test1'));
assert(flist1.free('test2'));
assert(flist1.free('test3'));

// Now it should not return 'true', as max length is exceeded
assert.strictEqual(flist1.free('test4'), false);
assert.strictEqual(flist1.free('test5'), false);

// At this point 'alloc' should just return the stored values
assert.strictEqual(flist1.alloc(), 'test1');
assert.strictEqual(flist1.alloc(), 'test2');
assert.strictEqual(flist1.alloc(), 'test3');

0 comments on commit 70414ed

Please sign in to comment.