Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix build #22

Merged
merged 1 commit into from
Mar 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 38 additions & 18 deletions packages/verified-fetch/test/utils/parse-url-string.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { matchPeerId } from '@libp2p/interface-compliance-tests/matchers'
import { defaultLogger } from '@libp2p/logger'
import { createEd25519PeerId } from '@libp2p/peer-id-factory'
import { type Answer } from '@multiformats/dns'
import { expect } from 'aegir/chai'
import { type IPNSRecord } from 'ipns'
import { CID } from 'multiformats/cid'
import { match } from 'sinon'
import { stubInterface } from 'sinon-ts'
Expand Down Expand Up @@ -167,7 +169,8 @@ describe('parseUrlString', () => {
it('can parse a URL with DNSLinkDomain only', async () => {
ipns.resolveDNSLink.withArgs('mydomain.com').resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
answer: stubInterface<Answer>()
})

await assertMatchUrl(
Expand All @@ -183,7 +186,8 @@ describe('parseUrlString', () => {
it('can parse a URL with DNSLinkDomain+path', async () => {
ipns.resolveDNSLink.withArgs('mydomain.com').resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
answer: stubInterface<Answer>()
})

await assertMatchUrl(
Expand All @@ -199,7 +203,8 @@ describe('parseUrlString', () => {
it('can parse a URL with DNSLinkDomain+queryString', async () => {
ipns.resolveDNSLink.withArgs('mydomain.com').resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
answer: stubInterface<Answer>()
})

await assertMatchUrl(
Expand All @@ -217,7 +222,8 @@ describe('parseUrlString', () => {
it('can parse a URL with DNSLinkDomain+path+queryString', async () => {
ipns.resolveDNSLink.withArgs('mydomain.com').resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
answer: stubInterface<Answer>()
})

await assertMatchUrl(
Expand All @@ -235,7 +241,8 @@ describe('parseUrlString', () => {
it('can parse a URL with DNSLinkDomain+directoryPath+queryString', async () => {
ipns.resolveDNSLink.withArgs('mydomain.com').resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
answer: stubInterface<Answer>()
})

await assertMatchUrl(
Expand Down Expand Up @@ -433,7 +440,8 @@ describe('parseUrlString', () => {
it('can parse a URL with PeerId only', async () => {
ipns.resolve.withArgs(matchPeerId(testPeerId)).resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
record: stubInterface<IPNSRecord>()
})

await assertMatchUrl(
Expand All @@ -449,7 +457,8 @@ describe('parseUrlString', () => {
it('can parse a URL with PeerId+path', async () => {
ipns.resolve.withArgs(matchPeerId(testPeerId)).resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
record: stubInterface<IPNSRecord>()
})

await assertMatchUrl(
Expand All @@ -465,7 +474,8 @@ describe('parseUrlString', () => {
it('can parse a URL with PeerId+path with a trailing slash', async () => {
ipns.resolve.withArgs(matchPeerId(testPeerId)).resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
record: stubInterface<IPNSRecord>()
})

await assertMatchUrl(
Expand All @@ -481,7 +491,8 @@ describe('parseUrlString', () => {
it('can parse a URL with PeerId+queryString', async () => {
ipns.resolve.withArgs(matchPeerId(testPeerId)).resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
record: stubInterface<IPNSRecord>()
})

await assertMatchUrl(
Expand All @@ -499,7 +510,8 @@ describe('parseUrlString', () => {
it('can parse a URL with PeerId+path+queryString', async () => {
ipns.resolve.withArgs(matchPeerId(testPeerId)).resolves({
cid: CID.parse('QmQJ8fxavY54CUsxMSx9aE9Rdcmvhx8awJK2jzJp4iAqCr'),
path: ''
path: '',
record: stubInterface<IPNSRecord>()
})

await assertMatchUrl(
Expand All @@ -522,7 +534,8 @@ describe('parseUrlString', () => {

ipns.resolve.withArgs(matchPeerId(peerId)).resolves({
cid,
path: recordPath
path: recordPath,
record: stubInterface<IPNSRecord>()
})

await assertMatchUrl(
Expand All @@ -543,7 +556,8 @@ describe('parseUrlString', () => {

ipns.resolve.withArgs(matchPeerId(peerId)).resolves({
cid,
path: recordPath
path: recordPath,
record: stubInterface<IPNSRecord>()
})

await assertMatchUrl(
Expand All @@ -564,7 +578,8 @@ describe('parseUrlString', () => {

ipns.resolve.withArgs(matchPeerId(peerId)).resolves({
cid,
path: recordPath
path: recordPath,
record: stubInterface<IPNSRecord>()
})

await assertMatchUrl(
Expand All @@ -587,7 +602,8 @@ describe('parseUrlString', () => {
cid = CID.parse('QmdmQXB2mzChmMeKY47C43LxUdg1NDJ5MWcKMKxDu7RgQm')
ipns.resolve.withArgs(matchPeerId(peerId)).resolves({
cid,
path: ''
path: '',
record: stubInterface<IPNSRecord>()
})
})

Expand Down Expand Up @@ -674,7 +690,8 @@ describe('parseUrlString', () => {
cid = CID.parse('QmdmQXB2mzChmMeKY47C43LxUdg1NDJ5MWcKMKxDu7RgQm')
ipns.resolve.withArgs(matchPeerId(peerId)).resolves({
cid,
path: ''
path: '',
record: stubInterface<IPNSRecord>()
})
})

Expand Down Expand Up @@ -775,18 +792,21 @@ describe('parseUrlString', () => {
if (type === 'peerid') {
ipns.resolve.withArgs(matchPeerId(value as PeerId)).resolves({
cid,
path: ''
path: '',
record: stubInterface<IPNSRecord>()
})
} else if (type === 'dnslink-encoded') {
const matchValue = (value as string).replace(/-/g, '.')
ipns.resolveDNSLink.withArgs(match(matchValue)).resolves({
cid,
path: ''
path: '',
answer: stubInterface<Answer>()
})
} else {
ipns.resolveDNSLink.withArgs(match(value as string)).resolves({
cid,
path: ''
path: '',
answer: stubInterface<Answer>()
})
}
})
Expand Down
Loading