keyserver/test/unit/util-test.js

155 lines
4.7 KiB
JavaScript
Raw Normal View History

2016-05-31 11:48:59 +00:00
'use strict';
const util = require('../../src/service/util');
describe('Util Unit Tests', () => {
describe('isString', () => {
it('should be true for string', () => {
expect(util.isString('asdf')).to.be.true;
});
it('should be true for String object', () => {
expect(util.isString(String('asdf'))).to.be.true;
});
it('should be true for empty String', () => {
expect(util.isString('')).to.be.true;
});
it('should be false for undefined', () => {
expect(util.isString(undefined)).to.be.false;
});
it('should be false for Object', () => {
expect(util.isString({})).to.be.false;
});
});
describe('isTrue', () => {
it('should be true for "true"', () => {
expect(util.isTrue('true')).to.be.true;
});
it('should be true for true', () => {
expect(util.isTrue(true)).to.be.true;
});
it('should be false for "false"', () => {
expect(util.isTrue('false')).to.be.false;
});
it('should be false for false', () => {
expect(util.isTrue(false)).to.be.false;
});
it('should be true for a random string', () => {
expect(util.isTrue('asdf')).to.be.false;
});
it('should be true for undefined', () => {
expect(util.isTrue(undefined)).to.be.false;
});
it('should be true for null', () => {
expect(util.isTrue(null)).to.be.false;
});
});
2016-06-09 10:58:11 +00:00
describe('isKeyId', () => {
2016-05-31 11:48:59 +00:00
it('should be true for 16 byte hex', () => {
2016-06-09 10:58:11 +00:00
expect(util.isKeyId('0123456789ABCDEF')).to.be.true;
2016-05-31 11:48:59 +00:00
});
it('should be false for 16 byte non-hex', () => {
2016-06-09 10:58:11 +00:00
expect(util.isKeyId('0123456789ABCDEZ')).to.be.false;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for 15 byte hex', () => {
expect(util.isKeyId('0123456789ABCDE')).to.be.false;
});
it('should be false for 17 byte hex', () => {
expect(util.isKeyId('0123456789ABCDEF0')).to.be.false;
2016-05-31 11:48:59 +00:00
});
it('should be false for undefined', () => {
2016-06-09 10:58:11 +00:00
expect(util.isKeyId(undefined)).to.be.false;
2016-05-31 11:48:59 +00:00
});
it('should be false for Object', () => {
2016-06-09 10:58:11 +00:00
expect(util.isKeyId({})).to.be.false;
2016-05-31 11:48:59 +00:00
});
});
2016-06-09 10:58:11 +00:00
describe('isFingerPrint', () => {
it('should be true for 40 byte hex', () => {
expect(util.isFingerPrint('0123456789ABCDEF0123456789ABCDEF01234567')).to.be.true;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for 40 byte non-hex', () => {
expect(util.isKeyId('0123456789ABCDEF0123456789ABCDEF0123456Z')).to.be.false;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for 39 byte hex', () => {
expect(util.isFingerPrint('0123456789ABCDEF0123456789ABCDEF0123456')).to.be.false;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for 41 byte hex', () => {
expect(util.isFingerPrint('0123456789ABCDEF0123456789ABCDEF012345678')).to.be.false;
2016-05-31 11:48:59 +00:00
});
it('should be false for undefined', () => {
2016-06-09 10:58:11 +00:00
expect(util.isFingerPrint(undefined)).to.be.false;
2016-05-31 11:48:59 +00:00
});
it('should be false for Object', () => {
2016-06-09 10:58:11 +00:00
expect(util.isFingerPrint({})).to.be.false;
2016-05-31 11:48:59 +00:00
});
});
2016-06-09 10:58:11 +00:00
describe('isEmail', () => {
it('should be true valid email', () => {
expect(util.isEmail('a@b.co')).to.be.true;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for too short TLD', () => {
expect(util.isEmail('a@b.c')).to.be.false;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for no .', () => {
expect(util.isEmail('a@bco')).to.be.false;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for no @', () => {
expect(util.isEmail('ab.co')).to.be.false;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false invalid cahr', () => {
expect(util.isEmail('a<@b.co')).to.be.false;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for undefined', () => {
expect(util.isEmail(undefined)).to.be.false;
2016-05-31 11:48:59 +00:00
});
2016-06-09 10:58:11 +00:00
it('should be false for Object', () => {
expect(util.isEmail({})).to.be.false;
2016-05-31 11:48:59 +00:00
});
});
describe('throw', () => {
it('should throw error with status and expose', () => {
try {
util.throw(500, 'boom');
expect(true).to.be.false;
2017-08-15 08:03:06 +00:00
} catch (e) {
2016-05-31 11:48:59 +00:00
expect(e.message).to.equal('boom');
expect(e.status).to.equal(500);
expect(e.expose).to.be.true;
}
});
});
describe('random', () => {
it('should generate random 32 char hex string', () => {
expect(util.random().length).to.equal(32);
});
it('should generate random 16 char hex string', () => {
expect(util.random(8).length).to.equal(16);
});
});
2016-06-10 10:06:08 +00:00
describe('origin', () => {
2016-05-31 11:48:59 +00:00
it('should work', () => {
2017-08-15 08:03:06 +00:00
expect(util.origin({secure: true, host: 'h', protocol: 'p'})).to.exist;
2016-06-10 10:06:08 +00:00
});
});
describe('url', () => {
it('should work with resource', () => {
2017-08-15 08:03:06 +00:00
const url = util.url({host: 'localhost', protocol: 'http'}, '/foo');
2016-06-10 10:06:08 +00:00
expect(url).to.equal('http://localhost/foo');
});
it('should work without resource', () => {
2017-08-15 08:03:06 +00:00
const url = util.url({host: 'localhost', protocol: 'http'});
2016-06-10 10:06:08 +00:00
expect(url).to.equal('http://localhost');
2016-05-31 11:48:59 +00:00
});
});
2017-08-15 08:03:06 +00:00
});