2019-08-27 18:17:33 +00:00
|
|
|
'use strict';
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2019-08-27 18:17:33 +00:00
|
|
|
const { test } = require('tap');
|
|
|
|
const { BerReader, BerWriter } = require('asn1');
|
|
|
|
const { Attribute } = require('../lib');
|
2011-08-04 20:32:01 +00:00
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('new no args', function (t) {
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(new Attribute());
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('new with args', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const attr = new Attribute({
|
2011-08-04 20:32:01 +00:00
|
|
|
type: 'cn',
|
|
|
|
vals: ['foo', 'bar']
|
|
|
|
});
|
|
|
|
t.ok(attr);
|
|
|
|
attr.addValue('baz');
|
|
|
|
t.equal(attr.type, 'cn');
|
|
|
|
t.equal(attr.vals.length, 3);
|
|
|
|
t.equal(attr.vals[0], 'foo');
|
|
|
|
t.equal(attr.vals[1], 'bar');
|
|
|
|
t.equal(attr.vals[2], 'baz');
|
2015-10-28 02:21:25 +00:00
|
|
|
t.throws(function () {
|
|
|
|
attr = new Attribute('not an object');
|
|
|
|
});
|
|
|
|
t.throws(function () {
|
2019-08-27 18:17:33 +00:00
|
|
|
const typeThatIsNotAString = 1;
|
2015-10-28 02:21:25 +00:00
|
|
|
attr = new Attribute({
|
|
|
|
type: typeThatIsNotAString
|
|
|
|
});
|
|
|
|
});
|
2011-08-04 20:32:01 +00:00
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('toBer', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const attr = new Attribute({
|
2011-08-04 20:32:01 +00:00
|
|
|
type: 'cn',
|
|
|
|
vals: ['foo', 'bar']
|
|
|
|
});
|
|
|
|
t.ok(attr);
|
2019-08-27 18:17:33 +00:00
|
|
|
const ber = new BerWriter();
|
2011-08-04 20:32:01 +00:00
|
|
|
attr.toBer(ber);
|
2019-08-27 18:17:33 +00:00
|
|
|
const reader = new BerReader(ber.buffer);
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(reader.readSequence());
|
|
|
|
t.equal(reader.readString(), 'cn');
|
|
|
|
t.equal(reader.readSequence(), 0x31); // lber set
|
|
|
|
t.equal(reader.readString(), 'foo');
|
|
|
|
t.equal(reader.readString(), 'bar');
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('parse', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const ber = new BerWriter();
|
2011-08-04 20:32:01 +00:00
|
|
|
ber.startSequence();
|
|
|
|
ber.writeString('cn');
|
|
|
|
ber.startSequence(0x31);
|
|
|
|
ber.writeStringArray(['foo', 'bar']);
|
|
|
|
ber.endSequence();
|
|
|
|
ber.endSequence();
|
|
|
|
|
2019-08-27 18:17:33 +00:00
|
|
|
const attr = new Attribute();
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(attr);
|
|
|
|
t.ok(attr.parse(new BerReader(ber.buffer)));
|
|
|
|
|
|
|
|
t.equal(attr.type, 'cn');
|
|
|
|
t.equal(attr.vals.length, 2);
|
|
|
|
t.equal(attr.vals[0], 'foo');
|
|
|
|
t.equal(attr.vals[1], 'bar');
|
|
|
|
t.end();
|
|
|
|
});
|
2014-07-17 18:33:02 +00:00
|
|
|
|
2015-10-28 02:21:25 +00:00
|
|
|
test('parse - without 0x31', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const ber = new BerWriter;
|
2015-08-18 14:22:11 +00:00
|
|
|
ber.startSequence();
|
|
|
|
ber.writeString('sn');
|
|
|
|
ber.endSequence();
|
|
|
|
|
2019-08-27 18:17:33 +00:00
|
|
|
const attr = new Attribute;
|
2015-08-18 14:22:11 +00:00
|
|
|
t.ok(attr);
|
|
|
|
t.ok(attr.parse(new BerReader(ber.buffer)));
|
|
|
|
|
|
|
|
t.equal(attr.type, 'sn');
|
|
|
|
t.equal(attr.vals.length, 0);
|
|
|
|
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
2015-10-28 02:21:25 +00:00
|
|
|
test('toString', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const attr = new Attribute({
|
2015-08-18 14:22:11 +00:00
|
|
|
type: 'foobar',
|
|
|
|
vals: ['asdf']
|
|
|
|
});
|
2019-08-27 18:17:33 +00:00
|
|
|
const expected = attr.toString();
|
|
|
|
const actual = JSON.stringify(attr.json);
|
2015-08-18 14:22:11 +00:00
|
|
|
t.equal(actual, expected);
|
|
|
|
t.end();
|
|
|
|
});
|
2014-07-17 18:33:02 +00:00
|
|
|
|
|
|
|
test('isAttribute', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const isA = Attribute.isAttribute;
|
2014-07-17 18:33:02 +00:00
|
|
|
t.notOk(isA(null));
|
|
|
|
t.notOk(isA('asdf'));
|
|
|
|
t.ok(isA(new Attribute({
|
|
|
|
type: 'foobar',
|
|
|
|
vals: ['asdf']
|
|
|
|
})));
|
|
|
|
|
|
|
|
t.ok(isA({
|
|
|
|
type: 'foo',
|
2019-08-27 18:17:33 +00:00
|
|
|
vals: ['item', Buffer.alloc(5)],
|
2014-07-17 18:33:02 +00:00
|
|
|
toBer: function () { /* placeholder */ }
|
|
|
|
}));
|
|
|
|
|
|
|
|
// bad type in vals
|
|
|
|
t.notOk(isA({
|
|
|
|
type: 'foo',
|
|
|
|
vals: ['item', null],
|
|
|
|
toBer: function () { /* placeholder */ }
|
|
|
|
}));
|
|
|
|
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('compare', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const comp = Attribute.compare;
|
|
|
|
const a = new Attribute({
|
2014-07-17 18:33:02 +00:00
|
|
|
type: 'foo',
|
|
|
|
vals: ['bar']
|
|
|
|
});
|
2019-08-27 18:17:33 +00:00
|
|
|
const b = new Attribute({
|
2014-07-17 18:33:02 +00:00
|
|
|
type: 'foo',
|
|
|
|
vals: ['bar']
|
|
|
|
});
|
2019-08-27 18:17:33 +00:00
|
|
|
const notAnAttribute = 'this is not an attribute';
|
2015-08-18 14:22:11 +00:00
|
|
|
|
2015-10-28 02:21:25 +00:00
|
|
|
t.throws(function () {
|
2015-08-18 14:22:11 +00:00
|
|
|
comp(a, notAnAttribute);
|
|
|
|
});
|
2015-10-28 02:21:25 +00:00
|
|
|
t.throws(function () {
|
|
|
|
comp(notAnAttribute, b);
|
2015-08-18 14:22:11 +00:00
|
|
|
});
|
|
|
|
|
2014-07-17 18:33:02 +00:00
|
|
|
t.equal(comp(a, b), 0);
|
|
|
|
|
|
|
|
// Different types
|
|
|
|
a.type = 'boo';
|
|
|
|
t.equal(comp(a, b), -1);
|
|
|
|
t.equal(comp(b, a), 1);
|
|
|
|
a.type = 'foo';
|
|
|
|
|
|
|
|
// Different value counts
|
|
|
|
a.vals = ['bar', 'baz'];
|
|
|
|
t.equal(comp(a, b), 1);
|
|
|
|
t.equal(comp(b, a), -1);
|
|
|
|
|
|
|
|
// Different value contents (same count)
|
|
|
|
a.vals = ['baz'];
|
|
|
|
t.equal(comp(a, b), 1);
|
|
|
|
t.equal(comp(b, a), -1);
|
|
|
|
|
|
|
|
t.end();
|
|
|
|
});
|