initial commit

This commit is contained in:
2025-09-01 22:12:29 +02:00
parent b1873f9c1d
commit 02a54f61c0
5598 changed files with 903558 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
const memoizer = require("./..");
const assert = require("chai").assert;
describe("lru-memoizer (freeze)", function () {
var loadTimes = 0,
memoized;
beforeEach(function () {
loadTimes = 0;
memoized = memoizer({
load: function (key, callback) {
loadTimes++;
callback(null, { foo: "bar", buffer: Buffer.from("1234") });
},
hash: function (key) {
return key;
},
freeze: true,
});
});
it("should return a freeze every time with the same cached structure", function (done) {
memoized("test", function (err, r1) {
assert.isNull(err);
assert.strictEqual(loadTimes, 1);
assert.equal(r1.foo, "bar");
r1.foo = "bax";
assert.isFrozen(r1);
memoized("test", function (err, r2) {
assert.isNull(err);
assert.strictEqual(loadTimes, 1);
assert.equal(r2.foo, "bar");
assert.strictEqual(r1, r2);
assert.isFrozen(r2);
done();
});
});
});
});