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 { UnbindRequest } = 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 UnbindRequest());
|
|
|
|
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 req = new UnbindRequest({});
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(req);
|
|
|
|
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
|
|
|
|
2019-08-27 18:17:33 +00:00
|
|
|
const req = new UnbindRequest();
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(req._parse(new BerReader(ber.buffer)));
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
2012-02-18 08:15:52 +00:00
|
|
|
test('toBer', function (t) {
|
2019-08-27 18:17:33 +00:00
|
|
|
const req = new UnbindRequest({
|
2011-08-04 20:32:01 +00:00
|
|
|
messageID: 123
|
|
|
|
});
|
|
|
|
t.ok(req);
|
|
|
|
|
2019-08-27 18:17:33 +00:00
|
|
|
const ber = new BerReader(req.toBer());
|
2011-08-04 20:32:01 +00:00
|
|
|
t.ok(ber);
|
|
|
|
t.equal(ber.readSequence(), 0x30);
|
|
|
|
t.equal(ber.readInt(), 123);
|
|
|
|
t.end();
|
|
|
|
});
|