doipjs/test/keys.test.js

149 lines
5.7 KiB
JavaScript
Raw Normal View History

2020-11-18 12:33:08 -07:00
/*
2021-01-13 05:20:33 -07:00
Copyright 2021 Yarmo Mackenbach
2020-11-18 12:33:08 -07:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const chai = require('chai')
const expect = chai.expect
2020-12-05 15:13:44 -07:00
chai.use(require('chai-as-promised'))
2020-11-18 12:33:08 -07:00
2020-11-20 01:13:08 -07:00
const path = require('path')
2020-12-09 18:15:39 -07:00
const openpgp = require('openpgp')
2020-11-18 12:33:08 -07:00
const doipjs = require('../src')
2020-11-18 13:50:58 -07:00
const pubKeyFingerprint = `3637202523e7c1309ab79e99ef2dc5827b445f4b`
2020-12-05 15:13:44 -07:00
const pubKeyEmail = `test@doip.rocks`
const pubKeyPlaintext = `-----BEGIN PGP PUBLIC KEY BLOCK-----
2020-11-18 12:33:08 -07:00
mQGNBF+036UBDACoxWRdp7rBAFB2l/+dxX0XA50NJC92EEacB5L0TnC0lP/MsNHv
fAv/A9vgTwrPudvcHdE/urAjQswfIU3LpFxbBOWNYWOv6ssrzBH4vVGMyxfu2GGu
b2mxjWj0eWXnWXnzkO5fscX2y0HqNjBZjDSkYohHZJTbz91NnxK3a8+Erpk+sgEH
hQH1h75SfaW6GZucuhenxgjwEiGz84UEVS0AEWD9yNgfWCsK/6HuIRnv5Jv5V9z9
bx9Ik7QNGBks3tpNmdbeaaadkHYZpF3Fm8mCoIt2+Xx9OvyuLssZnVkuQdj8C2/z
E45If4+pHRnRcCWXpDrHUWoJaeyGuTq5triePI6h/4lgr/m/du0O/lhOrr6MUhAe
7xc0B+X+bTF/balZmmlbk5bnDoZMzdH8caui5XrkuRif/I0nYPRnc9zrqWJDDO/p
nltpMPrUMTjoiXZ8DbJ4WMK7QPdsbG8Tz/Vl3wigEmwPLfEGifLpec5RXrti5Zd9
FiSOIOetP8p8MSMAEQEAAbRBWWFybW8gTWFja2VuYmFjaCAobWF0ZXJpYWwgZm9y
IHRlc3QgZnJhbWV3b3JrcykgPHRlc3RAZG9pcC5yb2Nrcz6JAfgEEwEKAGICGwMF
CwkIBwIGFQoJCAsCBBYCAwECHgECF4AWIQQ2NyAlI+fBMJq3npnvLcWCe0RfSwUC
X7TgDSkUgAAAAAASAA5wcm9vZkBtZXRhY29kZS5iaXpkbnM6ZG9pcC5yb2NrcwAK
CRDvLcWCe0RfS8XBC/9DtRvmNXI2fjXrhM3+d+bwmg9itY+p0gt+gG13s1aB/jTc
LlI9mGt/ZgzdgAxG9vtRqAPTSkTK4TaIsB+p02f3JntpaItTIXHPb8dRizpbkPCn
iZnVSHM4G4qtr4lQawR1xikSBx9SRyd3KUKfIgpCEonXPZ4Z1Rw558/fwcqNH4LW
Wa18MtVt5Yfc2D7JgBR8nK/YBgZkqdW3u0izn/dbUYtQm8aRIhcB0jbiYVaUFpKq
dgPFM7Gp8zjKYcEg/vlylny8lKCfQ5xMCIUSCxToHckBfo+9QqcWy0LHFaiq/7+N
Fsikjo87GjESOd+QTuKdtQBzegLotgeNtCOFBKOoY2g+24FsbSbIm5H27vw/odgV
cqvy+yineO/jWCWp6pHbALSg1INuVnluwyAqXoM4Gx7rUboISN2nIzYpdjXAUgnX
XxFjll8b3+FRQAH80qkvtuDDZ/z2CQQ/mdJgNJdMwqvwBQZnCMts0PyqTlzw1mcy
x77L7mBkREbuZpFoD/c=
=w7qB
-----END PGP PUBLIC KEY BLOCK-----`
describe('keys.fetch.uri', () => {
it('should be a function (1 argument)', () => {
expect(doipjs.keys.fetch.uri).to.be.a('function')
expect(doipjs.keys.fetch.uri).to.have.length(1)
})
it('should return a Key object when provided a hkp: uri', async () => {
2020-12-05 15:13:44 -07:00
expect(
await doipjs.keys.fetch.uri(`hkp:${pubKeyFingerprint}`)
).to.be.instanceOf(openpgp.key.Key)
2020-11-18 12:33:08 -07:00
})
2020-12-05 15:13:44 -07:00
it('should reject when provided an invalid uri', () => {
return expect(
doipjs.keys.fetch.uri(`inv:${pubKeyFingerprint}`)
).to.eventually.be.rejectedWith('Invalid URI protocol')
2020-11-18 12:33:08 -07:00
})
})
describe('keys.fetch.hkp', () => {
it('should be a function (2 arguments)', () => {
expect(doipjs.keys.fetch.hkp).to.be.a('function')
expect(doipjs.keys.fetch.hkp).to.have.length(2)
})
it('should return a Key object when provided a valid fingerprint', async () => {
2020-11-18 13:50:58 -07:00
expect(await doipjs.keys.fetch.hkp(pubKeyFingerprint)).to.be.instanceOf(
2020-11-18 12:33:08 -07:00
openpgp.key.Key
)
})
it('should return a Key object when provided a valid email address', async () => {
2020-11-18 13:50:58 -07:00
expect(await doipjs.keys.fetch.hkp(pubKeyEmail)).to.be.instanceOf(
2020-11-18 12:33:08 -07:00
openpgp.key.Key
)
})
2020-12-05 15:14:48 -07:00
it('should reject when provided an invalid fingerprint', async () => {
2020-12-05 15:13:44 -07:00
return expect(
doipjs.keys.fetch.hkp('4637202523e7c1309ab79e99ef2dc5827b445f4b')
).to.eventually.be.rejectedWith(
'Key does not exist or could not be fetched'
)
2020-11-18 12:33:08 -07:00
})
2020-12-05 15:14:48 -07:00
it('should reject when provided an invalid email address', async () => {
2020-12-05 15:13:44 -07:00
return expect(
doipjs.keys.fetch.hkp('invalid@doip.rocks')
).to.eventually.be.rejectedWith(
'Key does not exist or could not be fetched'
)
2020-11-18 12:33:08 -07:00
})
})
describe('keys.fetch.plaintext', () => {
it('should be a function (1 argument)', () => {
expect(doipjs.keys.fetch.plaintext).to.be.a('function')
expect(doipjs.keys.fetch.plaintext).to.have.length(1)
})
it('should return a Key object', async () => {
2020-11-18 13:50:58 -07:00
expect(await doipjs.keys.fetch.plaintext(pubKeyPlaintext)).to.be.instanceOf(
2020-11-18 12:33:08 -07:00
openpgp.key.Key
)
})
})
2020-11-18 13:50:58 -07:00
describe('keys.process', () => {
it('should be a function (1 argument)', () => {
expect(doipjs.keys.process).to.be.a('function')
expect(doipjs.keys.process).to.have.length(1)
})
it('should return an object with specific keys', async () => {
const pubKey = await doipjs.keys.fetch.plaintext(pubKeyPlaintext)
const obj = await doipjs.keys.process(pubKey)
2020-11-20 15:19:14 -07:00
expect(obj).to.have.keys(['users', 'fingerprint', 'primaryUserIndex'])
2020-11-18 13:50:58 -07:00
})
})
describe('keys.getFingerprint', () => {
it('should be a function (1 argument)', () => {
expect(doipjs.keys.getFingerprint).to.be.a('function')
expect(doipjs.keys.getFingerprint).to.have.length(1)
})
it('should return a string', async () => {
const pubKey = await doipjs.keys.fetch.plaintext(pubKeyPlaintext)
const fp = await doipjs.keys.getFingerprint(pubKey)
expect(fp).to.be.equal(pubKeyFingerprint)
})
})
2020-11-20 15:19:14 -07:00
describe('keys.getUserData', () => {
2020-11-18 13:50:58 -07:00
it('should be a function (1 argument)', () => {
2020-11-20 15:19:14 -07:00
expect(doipjs.keys.getUserData).to.be.a('function')
expect(doipjs.keys.getUserData).to.have.length(1)
2020-11-18 13:50:58 -07:00
})
2020-11-20 15:19:14 -07:00
it('should return an array of userData objects', async () => {
2020-11-18 13:50:58 -07:00
const pubKey = await doipjs.keys.fetch.plaintext(pubKeyPlaintext)
2020-11-20 15:19:14 -07:00
const userData = await doipjs.keys.getUserData(pubKey)
expect(userData).to.be.lengthOf(1)
expect(userData[0].userData.email).to.be.equal(pubKeyEmail)
expect(userData[0].notations[0]).to.be.equal('dns:doip.rocks')
2020-11-18 13:50:58 -07:00
})
})