Files
x402-base-facilitator/test/unit/mocks/adapters/index.js
T

134 lines
2.1 KiB
JavaScript
Raw Normal View History

/*
Mocks for the Adapter library.
*/
class IpfsAdapter {
constructor () {
this.ipfs = {
files: {
stat: () => {}
}
}
}
}
class IpfsCoordAdapter {
constructor () {
this.ipfsCoord = {
adapters: {
ipfs: {
connectToPeer: async () => {}
}
},
useCases: {
peer: {
sendPrivateMessage: () => {}
}
},
thisNode: {}
}
}
}
const ipfs = {
ipfsAdapter: new IpfsAdapter(),
2023-10-28 09:17:48 -07:00
ipfsCoordAdapter: new IpfsCoordAdapter(),
getStatus: async () => {},
getPeers: async () => {},
getRelays: async () => {}
}
ipfs.ipfs = ipfs.ipfsAdapter.ipfs
2021-07-10 09:57:25 -07:00
const localdb = {
Users: class Users {
static findById () {}
2021-07-10 21:08:00 -07:00
static find () {}
static findOne () {
return {
validatePassword: localdb.validatePassword
}
}
async save () {
return {}
}
generateToken () {
return '123'
}
toJSON () {
return {}
}
async remove () {
return true
}
2021-07-13 08:57:57 -07:00
async validatePassword () {
return true
}
2021-07-10 21:08:00 -07:00
},
2025-06-27 20:11:27 -04:00
Usage: class Usage {
static findById () {}
static find () {}
static findOne () {
return {
validatePassword: localdb.validatePassword
}
}
async save () {
return {}
}
generateToken () {
return '123'
}
toJSON () {
return {}
}
async remove () {
return true
}
async validatePassword () {
return true
}
static async deleteMany(){
return true
}
},
2021-07-10 21:08:00 -07:00
validatePassword: () => {
return true
2021-07-10 09:57:25 -07:00
}
}
const facilitator = {
facilitator: {
getSupported: async () => {
return {
paymentKinds: ['x402'],
extensions: ['x402']
}
},
settle: async () => {
return {
paymentKinds: ['x402'],
extensions: ['x402']
}
},
verify: async () => {
return {
paymentKinds: ['x402'],
extensions: ['x402']
}
},
}
}
export default { ipfs, localdb, facilitator };