doipjs/test/verify.test.js
2020-10-25 01:54:37 +02:00

93 lines
3.7 KiB
JavaScript

/*
Copyright 2020 Yarmo Mackenbach
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
const chaiMatchPattern = require('chai-match-pattern')
chai.use(chaiMatchPattern)
chai.use(require("chai-as-promised"))
const _ = chaiMatchPattern.getLodashModule()
const doipjs = require('../src')
const pattern = {
serviceprovider: {
type: _.isString,
name: _.isString
},
profile: {
display: _.isString,
uri: _.isString
},
proof: {
uri: (x) => { return _.isString(x) || _.isNull(x) },
fetch: (x) => { return _.isString(x) || _.isNull(x) },
useProxy: _.isBoolean,
format: _.isString
},
claim: {
fingerprint: (x) => { return _.isString(x) || _.isNull(x) },
format: _.isString,
path: _.isArray,
relation: _.isString
},
qr: (x) => { return _.isString(x) || _.isNull(x) }
}
describe('verify', () => {
it('should be a function (3 arguments)', () => {
expect(doipjs.verify).to.be.a('function')
expect(doipjs.verify).to.have.length(3)
})
it('should throw an error for non-valid URIs', () => {
return expect(doipjs.verify('noURI')).to.eventually.be.rejectedWith('Not a valid URI')
return expect(doipjs.verify('domain.org')).to.eventually.be.rejectedWith('Not a valid URI')
})
it('should match "dns:domain.org" to the DNS service provider', async () => {
const matches = await doipjs.verify('dns:domain.org', null, {returnMatchesOnly: true})
expect(matches).to.be.a('array')
expect(matches).to.be.length(1)
expect(matches[0].serviceprovider.name).to.be.equal('domain')
expect(matches[0]).to.matchPattern(pattern)
})
it('should match "xmpp:alice@domain.org" to the XMPP service provider', async () => {
const matches = await doipjs.verify('xmpp:alice@domain.org', null, {returnMatchesOnly: true})
expect(matches).to.be.a('array')
expect(matches).to.be.length(1)
expect(matches[0].serviceprovider.name).to.be.equal('xmpp')
expect(matches[0]).to.matchPattern(pattern)
})
it('should match "https://twitter.com/alice/status/1234567890123456789" to the Twitter service provider', async () => {
const matches = await doipjs.verify('https://twitter.com/alice/status/1234567890123456789', null, {returnMatchesOnly: true})
expect(matches).to.be.a('array')
expect(matches).to.be.length(1)
expect(matches[0].serviceprovider.name).to.be.equal('twitter')
expect(matches[0]).to.matchPattern(pattern)
})
it('should match "https://news.ycombinator.com/user?id=Alice" to the Hackernews service provider', async () => {
const matches = await doipjs.verify('https://news.ycombinator.com/user?id=Alice', null, {returnMatchesOnly: true})
expect(matches).to.be.a('array')
expect(matches).to.be.length(1)
expect(matches[0].serviceprovider.name).to.be.equal('hackernews')
expect(matches[0]).to.matchPattern(pattern)
})
it('should match "https://lobste.rs/u/Alice" to the Lobsters service provider', async () => {
const matches = await doipjs.verify('https://lobste.rs/u/Alice', null, {returnMatchesOnly: true})
expect(matches).to.be.a('array')
expect(matches).to.be.length(1)
expect(matches[0].serviceprovider.name).to.be.equal('lobsters')
expect(matches[0]).to.matchPattern(pattern)
})
})