summaryrefslogtreecommitdiff
path: root/alarm/node_modules/side-channel/test
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-10-18 08:59:09 +0200
committerMinteck <contact@minteck.org>2022-10-18 08:59:09 +0200
commit2c4ae43e688a9873e86211ea0e7aeb9ba770dd77 (patch)
tree17848d95522dab25d3cdeb9c4a6450e2a234861f /alarm/node_modules/side-channel/test
parent108525534c28013cfe1897c30e4565f9893f3766 (diff)
downloadpluralconnect-2c4ae43e688a9873e86211ea0e7aeb9ba770dd77.tar.gz
pluralconnect-2c4ae43e688a9873e86211ea0e7aeb9ba770dd77.tar.bz2
pluralconnect-2c4ae43e688a9873e86211ea0e7aeb9ba770dd77.zip
Update
Diffstat (limited to 'alarm/node_modules/side-channel/test')
-rw-r--r--alarm/node_modules/side-channel/test/index.js78
1 files changed, 78 insertions, 0 deletions
diff --git a/alarm/node_modules/side-channel/test/index.js b/alarm/node_modules/side-channel/test/index.js
new file mode 100644
index 0000000..3b92ef7
--- /dev/null
+++ b/alarm/node_modules/side-channel/test/index.js
@@ -0,0 +1,78 @@
+'use strict';
+
+var test = require('tape');
+
+var getSideChannel = require('../');
+
+test('export', function (t) {
+ t.equal(typeof getSideChannel, 'function', 'is a function');
+ t.equal(getSideChannel.length, 0, 'takes no arguments');
+
+ var channel = getSideChannel();
+ t.ok(channel, 'is truthy');
+ t.equal(typeof channel, 'object', 'is an object');
+
+ t.end();
+});
+
+test('assert', function (t) {
+ var channel = getSideChannel();
+ t['throws'](
+ function () { channel.assert({}); },
+ TypeError,
+ 'nonexistent value throws'
+ );
+
+ var o = {};
+ channel.set(o, 'data');
+ t.doesNotThrow(function () { channel.assert(o); }, 'existent value noops');
+
+ t.end();
+});
+
+test('has', function (t) {
+ var channel = getSideChannel();
+ var o = [];
+
+ t.equal(channel.has(o), false, 'nonexistent value yields false');
+
+ channel.set(o, 'foo');
+ t.equal(channel.has(o), true, 'existent value yields true');
+
+ t.end();
+});
+
+test('get', function (t) {
+ var channel = getSideChannel();
+ var o = {};
+ t.equal(channel.get(o), undefined, 'nonexistent value yields undefined');
+
+ var data = {};
+ channel.set(o, data);
+ t.equal(channel.get(o), data, '"get" yields data set by "set"');
+
+ t.end();
+});
+
+test('set', function (t) {
+ var channel = getSideChannel();
+ var o = function () {};
+ t.equal(channel.get(o), undefined, 'value not set');
+
+ channel.set(o, 42);
+ t.equal(channel.get(o), 42, 'value was set');
+
+ channel.set(o, Infinity);
+ t.equal(channel.get(o), Infinity, 'value was set again');
+
+ var o2 = {};
+ channel.set(o2, 17);
+ t.equal(channel.get(o), Infinity, 'o is not modified');
+ t.equal(channel.get(o2), 17, 'o2 is set');
+
+ channel.set(o, 14);
+ t.equal(channel.get(o), 14, 'o is modified');
+ t.equal(channel.get(o2), 17, 'o2 is not modified');
+
+ t.end();
+});