Remove util.isUserId()

It was not really correct anyway; a user id can just be an email address
without < > brackets.
This commit is contained in:
Daniel Huigens 2018-04-27 18:47:16 +02:00
parent fe3c1b4f31
commit 3c224379f6
2 changed files with 0 additions and 38 deletions

View File

@ -594,13 +594,6 @@ export default {
}
},
isUserId: function(data) {
if (!util.isString(data)) {
return false;
}
return /</.test(data) && />$/.test(data);
},
/**
* Normalize line endings to \r\n
*/

View File

@ -116,37 +116,6 @@ describe('Util unit tests', function() {
});
});
describe('isUserId', function() {
it('should return true for valid user id', function() {
const data = 'Test User <test@example.com>';
expect(openpgp.util.isUserId(data)).to.be.true;
});
it('should return false for invalid user id', function() {
const data = 'Test User test@example.com>';
expect(openpgp.util.isUserId(data)).to.be.false;
});
it('should return false for invalid user id', function() {
const data = 'Test User <test@example.com';
expect(openpgp.util.isUserId(data)).to.be.false;
});
it('should return false for invalid user id', function() {
const data = 'Test User test@example.com';
expect(openpgp.util.isUserId(data)).to.be.false;
});
it('should return false for empty string', function() {
const data = '';
expect(openpgp.util.isUserId(data)).to.be.false;
});
it('should return false for undefined', function() {
let data;
expect(openpgp.util.isUserId(data)).to.be.false;
});
it('should return false for Object', function() {
const data = {};
expect(openpgp.util.isUserId(data)).to.be.false;
});
});
describe('getTransferables', function() {
let zero_copyVal;
const buf1 = new Uint8Array(1);