Add unit tests for checkEmail method in keyring

This commit is contained in:
Thomas Oberndörfer 2015-03-05 14:40:59 +01:00
parent be6ae2c464
commit 90d9edd497

View File

@ -181,6 +181,16 @@ describe("Keyring", function() {
expect(keys).to.exist.and.have.length(1);
});
it('publicKeys.getForAddress() - address with regex special char |', function() {
var keys = keyring.publicKeys.getForAddress('whiteout.test|not@t-online.de');
expect(keys).to.be.empty;
});
it('publicKeys.getForAddress() - address with regex special char .', function() {
var keys = keyring.publicKeys.getForAddress('wh.t.out.test@t-online.de');
expect(keys).to.be.empty;
});
it('privateKeys.getForAddress() - unknown address', function() {
var key = keyring.privateKeys.getForAddress('nobody@example.com');
expect(key).to.be.empty;