Compare commits

...
20 Commits
Author SHA1 Message Date
Chris Troutner 1c9e0858de Merge pull request #37 from Permissionless-Software-Foundation/ct-unstable
fix(hydrateUtxos): Using local calls to the REST API
2020-10-01 20:22:57 -07:00
Chris Troutner 41a3cd91fc fix(hydrateUtxos): Using local calls to the REST API 2020-10-01 20:20:28 -07:00
Chris Troutner 0b4038eeb4 Merge pull request #36 from Permissionless-Software-Foundation/ct-unstable
Ct unstable
2020-10-01 17:38:38 -07:00
Chris Troutner 86bf504b78 Fixing unit tests 2020-10-01 17:34:36 -07:00
Chris Troutner d56e6d6b3a linting 2020-10-01 17:26:31 -07:00
Chris Troutner 7339b8554f fix(basic auth): Disabling Basic Authentication 2020-10-01 17:25:52 -07:00
Chris Troutner e6dcaa2f24 Merge pull request #34 from Permissionless-Software-Foundation/ct-unstable
fix(rate limits): Fixing hydrateUtxos rate limits
2020-09-28 20:24:43 -07:00
Chris Troutner 698ac38251 fix(rate limits): Fixing hydrateUtxos rate limits 2020-09-28 20:17:07 -07:00
Chris Troutner 7c66ce7f73 Merge pull request #33 from Permissionless-Software-Foundation/ct-unstable
Increasing rate limits for hydrateUtxos()
2020-09-28 19:57:55 -07:00
Chris Troutner 9e3dfd9848 Updating package lock 2020-09-28 19:55:28 -07:00
Chris Troutner 10eb4da112 fix(rate limits): Increasing rate limits for internal calls 2020-09-28 19:49:49 -07:00
Chris Troutner f4f5f02a2f fix(bch-js): bumping to version 3.6.3 2020-09-28 19:45:47 -07:00
Chris Troutner bb69a6dee9 Merge pull request #32 from Permissionless-Software-Foundation/ct-unstable
fix(rate limits): Increasing internal rate limits
2020-09-28 18:35:29 -07:00
Chris Troutner d67b3aa052 fix(rate limits): Increasing internal rate limits 2020-09-28 18:32:43 -07:00
Chris Troutner 7e1c3d6a73 Merge pull request #31 from Permissionless-Software-Foundation/ct-unstable
fix(hydrateUtxos): Bumping bch-js version to fix hydateUtxos
2020-09-28 18:13:43 -07:00
Chris Troutner 6165001790 fix(hydrateUtxos): Bumping bch-js version to fix hydateUtxos 2020-09-28 18:10:49 -07:00
Chris Troutner 77ba06d68c Merge pull request #30 from Permissionless-Software-Foundation/ct-unstable
fix(internal calls): Applying paid rate limits to internal calls
2020-09-28 08:48:00 -07:00
Chris Troutner 40f6b17d3b fix(internal calls): Applying paid rate limits to internal calls 2020-09-28 08:37:34 -07:00
Chris Troutner 4d40a7cb01 Merge pull request #29 from Permissionless-Software-Foundation/ct-unstable
fix(hydrateUtxos): Adjusting input to match output of Electrumx.utxo()
2020-09-27 17:30:20 -07:00
Chris Troutner 0a14ca08a4 fix(hydrateUtxos): Adjusting input to match output of Electrumx.utxo() 2020-09-27 17:26:34 -07:00
9 changed files with 650 additions and 785 deletions
+336 -524
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -28,7 +28,7 @@
"node": ">=10.15.1" "node": ">=10.15.1"
}, },
"dependencies": { "dependencies": {
"@psf/bch-js": "^3.5.5", "@psf/bch-js": "^3.6.3",
"apidoc": "^0.23.0", "apidoc": "^0.23.0",
"axios": "^0.19.0", "axios": "^0.19.0",
"bitcore-lib-cash": "^8.20.3", "bitcore-lib-cash": "^8.20.3",
+49 -49
View File
@@ -22,9 +22,9 @@
'use strict' 'use strict'
const passport = require('passport') const passport = require('passport')
const BasicStrategy = require('passport-http').BasicStrategy // const BasicStrategy = require('passport-http').BasicStrategy
const AnonymousStrategy = require('passport-anonymous') const AnonymousStrategy = require('passport-anonymous')
const wlogger = require('../util/winston-logging') // const wlogger = require('../util/winston-logging')
// Used for debugging and iterrogating JS objects. // Used for debugging and iterrogating JS objects.
const util = require('util') const util = require('util')
@@ -33,9 +33,9 @@ util.inspect.defaultOptions = { depth: 1 }
// let _this // let _this
// Set default rate limit value for testing // Set default rate limit value for testing
const PRO_PASSES = process.env.PRO_PASS ? process.env.PRO_PASS : 'BITBOX' // const PRO_PASSES = process.env.PRO_PASS ? process.env.PRO_PASS : 'BITBOX'
// Convert the pro-tier password string into an array split by ':'. // Convert the pro-tier password string into an array split by ':'.
const PRO_PASS = PRO_PASSES.split(':') // const PRO_PASS = PRO_PASSES.split(':')
// wlogger.verbose(`PRO_PASS set to: ${PRO_PASS}`) // wlogger.verbose(`PRO_PASS set to: ${PRO_PASS}`)
@@ -48,55 +48,55 @@ class AuthMW {
passport.use(new AnonymousStrategy()) passport.use(new AnonymousStrategy())
// Initialize passport for 'basic' authentication. // Initialize passport for 'basic' authentication.
passport.use( // passport.use(
new BasicStrategy({ passReqToCallback: true }, function ( // new BasicStrategy({ passReqToCallback: true }, function (
req, // req,
username, // username,
password, // password,
done // done
) { // ) {
// console.log(`req: ${util.inspect(req)}`) // // console.log(`req: ${util.inspect(req)}`)
// console.log(`username: ${username}`) // // console.log(`username: ${username}`)
// console.log(`password: ${password}`) // // console.log(`password: ${password}`)
//
// Create the req.locals property if it does not yet exist. // // Create the req.locals property if it does not yet exist.
if (!req.locals) { // if (!req.locals) {
req.locals = { // req.locals = {
// default values // // default values
proLimit: false, // proLimit: false,
apiLevel: 0 // apiLevel: 0
} // }
} // }
//
// Set pro-tier rate limit to flag to false by default. // // Set pro-tier rate limit to flag to false by default.
req.locals.proLimit = false // req.locals.proLimit = false
//
// Evaluate the username and password and set the rate limit accordingly. // // Evaluate the username and password and set the rate limit accordingly.
// if (username === "BITBOX" && password === PRO_PASS) { // // if (username === "BITBOX" && password === PRO_PASS) {
if (username === 'BITBOX') { // if (username === 'BITBOX') {
for (let i = 0; i < PRO_PASS.length; i++) { // for (let i = 0; i < PRO_PASS.length; i++) {
const thisPass = PRO_PASS[i] // const thisPass = PRO_PASS[i]
//
if (password === thisPass) { // if (password === thisPass) {
wlogger.verbose(`${req.url} called by ${password.slice(0, 6)}`) // wlogger.verbose(`${req.url} called by ${password.slice(0, 6)}`)
//
// Success // // Success
req.locals.proLimit = true // req.locals.proLimit = true
break // break
} // }
} // }
} // }
//
// console.log(`req.locals: ${util.inspect(req.locals)}`) // // console.log(`req.locals: ${util.inspect(req.locals)}`)
//
return done(null, true) // return done(null, true)
}) // })
) // )
} }
// Middleware called by the route. // Middleware called by the route.
mw () { mw () {
return passport.authenticate(['basic', 'anonymous'], { return passport.authenticate(['anonymous'], {
session: false session: false
}) })
} }
+18 -12
View File
@@ -20,7 +20,7 @@ const redisClient = new Redis(redisOptions)
const { RateLimiterRedis } = require('rate-limiter-flexible') const { RateLimiterRedis } = require('rate-limiter-flexible')
const rateLimitOptions = { const rateLimitOptions = {
storeClient: redisClient, storeClient: redisClient,
points: 100, // Number of points points: 1000, // Number of points
duration: 60 // Per minute (per 60 seconds) duration: 60 // Per minute (per 60 seconds)
} }
@@ -98,8 +98,8 @@ class RateLimits {
wlogger.debug('No JWT token found!') wlogger.debug('No JWT token found!')
} }
// Used for displaying error message. Default value is 3. // Used for displaying error message. Default value is 30.
let rateLimit = 3 let rateLimit = 30
// Code here for the rate limiter is adapted from this example: // Code here for the rate limiter is adapted from this example:
// https://github.com/animir/node-rate-limiter-flexible/wiki/Overall-example#authorized-and-not-authorized-users // https://github.com/animir/node-rate-limiter-flexible/wiki/Overall-example#authorized-and-not-authorized-users
@@ -131,6 +131,12 @@ class RateLimits {
origin.toString().indexOf('sandbox.fullstack.cash') > -1 || origin.toString().indexOf('sandbox.fullstack.cash') > -1 ||
origin === 'slp-api') origin === 'slp-api')
) { ) {
pointsToConsume = 10
res.locals.pointsToConsume = pointsToConsume // Feedback for tests.
}
// Apply paid-access rate limits based on key/IP
if (key.toString().indexOf('172.17.') > -1) {
pointsToConsume = 1 pointsToConsume = 1
res.locals.pointsToConsume = pointsToConsume // Feedback for tests. res.locals.pointsToConsume = pointsToConsume // Feedback for tests.
} }
@@ -139,7 +145,7 @@ class RateLimits {
`User ${key} consuming ${pointsToConsume} point for resource ${resource}.` `User ${key} consuming ${pointsToConsume} point for resource ${resource}.`
) )
rateLimit = Math.floor(100 / pointsToConsume) rateLimit = Math.floor(1000 / pointsToConsume)
// Update the key so that rate limits track both the user and the resource. // Update the key so that rate limits track both the user and the resource.
key = `${key}-${resource}` key = `${key}-${resource}`
@@ -169,7 +175,7 @@ class RateLimits {
// Calculates the points consumed, based on the jwt information and the route // Calculates the points consumed, based on the jwt information and the route
// requested. // requested.
calcPoints (jwtInfo) { calcPoints (jwtInfo) {
let retVal = 30 // By default, use anonymous tier. let retVal = 300 // By default, use anonymous tier.
try { try {
// console.log(`jwtInfo: ${JSON.stringify(jwtInfo, null, 2)}`) // console.log(`jwtInfo: ${JSON.stringify(jwtInfo, null, 2)}`)
@@ -186,22 +192,22 @@ class RateLimits {
if (jwtInfo.id) { if (jwtInfo.id) {
// SLP indexer routes // SLP indexer routes
if (level40Routes.includes(resource)) { if (level40Routes.includes(resource)) {
if (apiLevel >= 40) retVal = 1 if (apiLevel >= 40) retVal = 10
// else if (apiLevel >= 10) retVal = 10 // else if (apiLevel >= 10) retVal = 10
else retVal = 10 else retVal = 100
// Normal indexer routes // Normal indexer routes
} else if (level30Routes.includes(resource)) { } else if (level30Routes.includes(resource)) {
if (apiLevel >= 30) retVal = 1 if (apiLevel >= 30) retVal = 10
else retVal = 10 else retVal = 100
// Full node tier // Full node tier
} else if (apiLevel >= 20) { } else if (apiLevel >= 20) {
retVal = 1 retVal = 10
// Free tier, full node only. // Free tier, full node only.
} else { } else {
retVal = 10 retVal = 100
} }
} }
@@ -209,7 +215,7 @@ class RateLimits {
} catch (err) { } catch (err) {
wlogger.error('Error in route-ratelimit.js/calcPoints()') wlogger.error('Error in route-ratelimit.js/calcPoints()')
// throw err // throw err
retVal = 30 retVal = 300
} }
return retVal return retVal
+16 -5
View File
@@ -13,8 +13,11 @@ const Slpdb = require('./services/slpdb')
// const strftime = require('strftime') // const strftime = require('strftime')
const wlogger = require('../../util/winston-logging') const wlogger = require('../../util/winston-logging')
const LOCAL_RESTURL = process.env.LOCAL_RESTURL
? process.env.LOCAL_RESTURL
: 'https://api.fullstack.cash/v3/'
const BCHJS = require('@psf/bch-js') const BCHJS = require('@psf/bch-js')
const bchjs = new BCHJS() const bchjs = new BCHJS({ restURL: LOCAL_RESTURL })
// Used to convert error messages to strings, to safely pass to users. // Used to convert error messages to strings, to safely pass to users.
const util = require('util') const util = require('util')
@@ -1567,12 +1570,20 @@ class Slp {
}) })
} }
// Get Token Utxo Details // Loop through each address and query the UTXOs for that element.
const details = await _this.bchjs.SLP.Utils.tokenUtxoDetails(utxos) for (let i = 0; i < utxos.length; i++) {
// console.log('details : ', details) const theseUtxos = utxos[i].utxos
// Get SLP token details.
const details = await _this.bchjs.SLP.Utils.tokenUtxoDetails(theseUtxos)
// console.log('details : ', details)
// Replace the original UTXO data with the hydrated data.
utxos[i].utxos = details
}
res.status(200) res.status(200)
return res.json({ slpUtxos: details }) return res.json({ slpUtxos: utxos })
} catch (err) { } catch (err) {
wlogger.error('Error in slp.js/hydrateUtxos().', err) wlogger.error('Error in slp.js/hydrateUtxos().', err)
+76 -75
View File
@@ -16,9 +16,10 @@ util.inspect.defaultOptions = { depth: 1 }
// const SERVER = `http://192.168.0.36:12400/v3/` // const SERVER = `http://192.168.0.36:12400/v3/`
const SERVER = 'http://localhost:3000/v3/' const SERVER = 'http://localhost:3000/v3/'
// const SERVER = 'https://api.fullstack.cash/v3/'
const TEST_JWT = const TEST_JWT =
'eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjVlM2EwNDE1ZWIyOWE5NjJkYTI3MDhiNCIsImFwaUxldmVsIjowLCJyYXRlTGltaXQiOjEwLCJpYXQiOjE1ODA4NjA0NjcsImV4cCI6MTU4MzQ1MjQ2N30.fuY5S-YrF0J11h5uyMjPe7wiVkYRnIyXi4dL9-V-C6pLJm33p0dSq_pSheVVWw78n5kAvL_9kFHngbnmQiOJYQ' 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjVlODhhY2JmMDIyMWMxMDAxMmFkOTNmZiIsImVtYWlsIjoiY2hyaXMudHJvdXRuZXJAZ21haWwuY29tIiwiYXBpTGV2ZWwiOjQwLCJyYXRlTGltaXQiOjMsImlhdCI6MTYwMDYyODk1MSwiZXhwIjoxNjAzMjIwOTUxfQ.JPXDJQsxJFtCGZjHOd-hRfJuY41Ef_FQ4ET06CtYdNk'
describe('#rate limits', () => { describe('#rate limits', () => {
it('should get control/getNetworkInfo() with no auth', async () => { it('should get control/getNetworkInfo() with no auth', async () => {
@@ -35,7 +36,7 @@ describe('#rate limits', () => {
assert.hasAnyKeys(result.data, ['version']) assert.hasAnyKeys(result.data, ['version'])
}) })
it('should trigger rate-limit handler if rate limits exceeds 30 request per minute', async () => { it('should trigger rate-limit handler if rate limits exceeds 5 request per minute', async () => {
try { try {
// Actual rate limit is 60 per minute X 4 nodes = 240 rpm. // Actual rate limit is 60 per minute X 4 nodes = 240 rpm.
const options = { const options = {
@@ -44,7 +45,7 @@ describe('#rate limits', () => {
} }
const promises = [] const promises = []
for (let i = 0; i < 30; i++) { for (let i = 0; i < 5; i++) {
const promise = axios(options) const promise = axios(options)
promises.push(promise) promises.push(promise)
} }
@@ -60,79 +61,79 @@ describe('#rate limits', () => {
} }
}) })
it('should not trigger rate-limit handler if correct pro-tier password is used', async () => { // it('should not trigger rate-limit handler if correct pro-tier password is used', async () => {
try { // try {
const username = 'BITBOX' // const username = 'BITBOX'
//
// // Pro-tier is accessed by using the right password.
// const password = 'BITBOX'
// // const password = "something"
//
// const combined = `${username}:${password}`
// const base64Credential = Buffer.from(combined).toString('base64')
// const readyCredential = `Basic ${base64Credential}`
//
// const options = {
// method: 'GET',
// url: `${SERVER}control/getNetworkInfo`,
// headers: { Authorization: readyCredential }
// }
//
// const promises = []
// for (let i = 0; i < 30; i++) {
// const promise = axios(options)
// promises.push(promise)
// }
//
// await Promise.all(promises)
//
// assert.equal(true, true, 'Not throwing an error is a pass!')
// } catch (err) {
// // console.log(`err.response: ${util.inspect(err.response)}`)
//
// assert.equal(
// true,
// false,
// 'This error handler should not have been triggered. Is the password correct?'
// )
// }
// })
// Pro-tier is accessed by using the right password. // it('should trigger rate-limit handler if rate limits exceeds pro-tier limit', async () => {
const password = 'BITBOX' // try {
// const password = "something" // const username = 'BITBOX'
//
const combined = `${username}:${password}` // // Pro-tier is accessed by using the right password.
const base64Credential = Buffer.from(combined).toString('base64') // const password = 'BITBOX'
const readyCredential = `Basic ${base64Credential}` // // const password = "something"
//
const options = { // const combined = `${username}:${password}`
method: 'GET', // const base64Credential = Buffer.from(combined).toString('base64')
url: `${SERVER}control/getNetworkInfo`, // const readyCredential = `Basic ${base64Credential}`
headers: { Authorization: readyCredential } //
} // // Actual rate limit is 60 per minute X 4 nodes = 240 rpm.
// const options = {
const promises = [] // method: 'GET',
for (let i = 0; i < 30; i++) { // url: `${SERVER}control/getNetworkInfo`,
const promise = axios(options) // headers: { Authorization: readyCredential }
promises.push(promise) // }
} //
// const promises = []
await Promise.all(promises) // for (let i = 0; i < 80; i++) {
// const promise = axios(options)
assert.equal(true, true, 'Not throwing an error is a pass!') // promises.push(promise)
} catch (err) { // }
// console.log(`err.response: ${util.inspect(err.response)}`) //
// await Promise.all(promises)
assert.equal( //
true, // assert.equal(true, false, 'Unexpected result!')
false, // } catch (err) {
'This error handler should not have been triggered. Is the password correct?' // // console.log(`err.response: ${util.inspect(err.response)}`)
) //
} // assert.equal(err.response.status, 429)
}) // assert.include(err.response.data.error, 'Too many requests')
// }
it('should trigger rate-limit handler if rate limits exceeds pro-tier limit', async () => { // })
try {
const username = 'BITBOX'
// Pro-tier is accessed by using the right password.
const password = 'BITBOX'
// const password = "something"
const combined = `${username}:${password}`
const base64Credential = Buffer.from(combined).toString('base64')
const readyCredential = `Basic ${base64Credential}`
// Actual rate limit is 60 per minute X 4 nodes = 240 rpm.
const options = {
method: 'GET',
url: `${SERVER}control/getNetworkInfo`,
headers: { Authorization: readyCredential }
}
const promises = []
for (let i = 0; i < 80; i++) {
const promise = axios(options)
promises.push(promise)
}
await Promise.all(promises)
assert.equal(true, false, 'Unexpected result!')
} catch (err) {
// console.log(`err.response: ${util.inspect(err.response)}`)
assert.equal(err.response.status, 429)
assert.include(err.response.data.error, 'Too many requests')
}
})
it('should unlock pro-tier for a valid JWT token', async () => { it('should unlock pro-tier for a valid JWT token', async () => {
try { try {
+72 -42
View File
@@ -22,6 +22,9 @@ if (!process.env.SLPDB_URL) {
const SLP = require('../../../src/routes/v3/slp') const SLP = require('../../../src/routes/v3/slp')
const slp = new SLP() const slp = new SLP()
const BCHJS = require('@psf/bch-js')
const bchjs = new BCHJS()
const { mockReq, mockRes } = require('../mocks/express-mocks') const { mockReq, mockRes } = require('../mocks/express-mocks')
describe('#slp', () => { describe('#slp', () => {
@@ -126,22 +129,26 @@ describe('#slp', () => {
it('should return utxo details', async () => { it('should return utxo details', async () => {
const utxos = [ const utxos = [
{ {
txid: utxos: [
'd56a2b446d8149c39ca7e06163fe8097168c3604915f631bc58777d669135a56', {
vout: 3, txid:
value: '6816', 'd56a2b446d8149c39ca7e06163fe8097168c3604915f631bc58777d669135a56',
height: 606848, vout: 3,
confirmations: 13, value: '6816',
satoshis: 6816 height: 606848,
}, confirmations: 13,
{ satoshis: 6816
txid: },
'd56a2b446d8149c39ca7e06163fe8097168c3604915f631bc58777d669135a56', {
vout: 2, txid:
value: '546', 'd56a2b446d8149c39ca7e06163fe8097168c3604915f631bc58777d669135a56',
height: 606848, vout: 2,
confirmations: 13, value: '546',
satoshis: 546 height: 606848,
confirmations: 13,
satoshis: 546
}
]
} }
] ]
@@ -151,36 +158,59 @@ describe('#slp', () => {
// Test the general structure of the output. // Test the general structure of the output.
assert.isArray(result.slpUtxos) assert.isArray(result.slpUtxos)
assert.equal(result.slpUtxos.length, 2) assert.equal(result.slpUtxos.length, 1)
assert.equal(result.slpUtxos[0].utxos.length, 2)
// Test the non-slp UTXO. // Test the non-slp UTXO.
assert.property(result.slpUtxos[0], 'txid') assert.property(result.slpUtxos[0].utxos[0], 'txid')
assert.property(result.slpUtxos[0], 'vout') assert.property(result.slpUtxos[0].utxos[0], 'vout')
assert.property(result.slpUtxos[0], 'value') assert.property(result.slpUtxos[0].utxos[0], 'value')
assert.property(result.slpUtxos[0], 'height') assert.property(result.slpUtxos[0].utxos[0], 'height')
assert.property(result.slpUtxos[0], 'confirmations') assert.property(result.slpUtxos[0].utxos[0], 'confirmations')
assert.property(result.slpUtxos[0], 'satoshis') assert.property(result.slpUtxos[0].utxos[0], 'satoshis')
assert.property(result.slpUtxos[0], 'isValid') assert.property(result.slpUtxos[0].utxos[0], 'isValid')
assert.equal(result.slpUtxos[0].isValid, false) assert.equal(result.slpUtxos[0].utxos[0].isValid, false)
// Test the slp UTXO. // Test the slp UTXO.
assert.property(result.slpUtxos[1], 'txid') assert.property(result.slpUtxos[0].utxos[1], 'txid')
assert.property(result.slpUtxos[1], 'vout') assert.property(result.slpUtxos[0].utxos[1], 'vout')
assert.property(result.slpUtxos[1], 'value') assert.property(result.slpUtxos[0].utxos[1], 'value')
assert.property(result.slpUtxos[1], 'height') assert.property(result.slpUtxos[0].utxos[1], 'height')
assert.property(result.slpUtxos[1], 'confirmations') assert.property(result.slpUtxos[0].utxos[1], 'confirmations')
assert.property(result.slpUtxos[1], 'satoshis') assert.property(result.slpUtxos[0].utxos[1], 'satoshis')
assert.property(result.slpUtxos[1], 'isValid') assert.property(result.slpUtxos[0].utxos[1], 'isValid')
assert.equal(result.slpUtxos[1].isValid, true) assert.equal(result.slpUtxos[0].utxos[1].isValid, true)
assert.property(result.slpUtxos[1], 'transactionType') assert.property(result.slpUtxos[0].utxos[1], 'transactionType')
assert.property(result.slpUtxos[1], 'tokenId') assert.property(result.slpUtxos[0].utxos[1], 'tokenId')
assert.property(result.slpUtxos[1], 'tokenTicker') assert.property(result.slpUtxos[0].utxos[1], 'tokenTicker')
assert.property(result.slpUtxos[1], 'tokenName') assert.property(result.slpUtxos[0].utxos[1], 'tokenName')
assert.property(result.slpUtxos[1], 'tokenDocumentUrl') assert.property(result.slpUtxos[0].utxos[1], 'tokenDocumentUrl')
assert.property(result.slpUtxos[1], 'tokenDocumentHash') assert.property(result.slpUtxos[0].utxos[1], 'tokenDocumentHash')
assert.property(result.slpUtxos[1], 'decimals') assert.property(result.slpUtxos[0].utxos[1], 'decimals')
assert.property(result.slpUtxos[1], 'tokenType') assert.property(result.slpUtxos[0].utxos[1], 'tokenType')
assert.property(result.slpUtxos[1], 'tokenQty') assert.property(result.slpUtxos[0].utxos[1], 'tokenQty')
})
it('should process data directly from Electrumx', async () => {
const addrs = [
'bitcoincash:qq6mvsm7l92d77zpymmltvaw09p5uzghyuyx7spygg',
'bitcoincash:qpjdrs8qruzh8xvusdfmutjx62awcepnhyperm3g89',
'bitcoincash:qzygn28zpgeemnptkn26xzyuzzfu9l8f9vfvq7kptk'
]
const utxos = await bchjs.Electrumx.utxo(addrs)
// console.log(`utxos: ${JSON.stringify(utxos, null, 2)}`)
req.body.utxos = utxos.utxos
const result = await slp.hydrateUtxos(req, res)
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
// Test the general structure of the output.
assert.isArray(result.slpUtxos)
assert.equal(result.slpUtxos.length, 3)
assert.equal(result.slpUtxos[0].utxos.length, 1)
assert.equal(result.slpUtxos[1].utxos.length, 1)
assert.equal(result.slpUtxos[2].utxos.length, 2)
}) })
}) })
}) })
+35 -35
View File
@@ -105,14 +105,14 @@ describe('#route-ratelimits & jwt-auth', () => {
}) })
describe('#calcPoints', () => { describe('#calcPoints', () => {
it('should return 30 points for anonymous user', () => { it('should return 300 points for anonymous user', () => {
const result = rateLimits.calcPoints() const result = rateLimits.calcPoints()
// console.log(`result: ${result}`) // console.log(`result: ${result}`)
assert.equal(result, 30) assert.equal(result, 300)
}) })
it('should return 10 points for free tier requesting full node access', () => { it('should return 100 points for free tier requesting full node access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 10, apiLevel: 10,
resource: 'blockchain', resource: 'blockchain',
@@ -120,10 +120,10 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 10) assert.equal(result, 100)
}) })
it('should return 10 points for free tier requesting indexer access', () => { it('should return 100 points for free tier requesting indexer access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 10, apiLevel: 10,
resource: 'blockbook', resource: 'blockbook',
@@ -131,10 +131,10 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 10) assert.equal(result, 100)
}) })
it('should return 10 points for free tier requesting SLPDB access', () => { it('should return 100 points for free tier requesting SLPDB access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 10, apiLevel: 10,
resource: 'slp', resource: 'slp',
@@ -142,10 +142,10 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 10) assert.equal(result, 100)
}) })
it('should return 1 point for full node tier requesting full node access', () => { it('should return 10 points for full node tier requesting full node access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 20, apiLevel: 20,
resource: 'blockchain', resource: 'blockchain',
@@ -153,10 +153,10 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 1) assert.equal(result, 10)
}) })
it('should return 10 points for full-node tier requesting indexer access', () => { it('should return 100 points for full-node tier requesting indexer access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 20, apiLevel: 20,
resource: 'blockbook', resource: 'blockbook',
@@ -164,10 +164,10 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 10) assert.equal(result, 100)
}) })
it('should return 10 points for full node tier requesting SLPDB access', () => { it('should return 100 points for full node tier requesting SLPDB access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 20, apiLevel: 20,
resource: 'slp', resource: 'slp',
@@ -175,10 +175,10 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 10) assert.equal(result, 100)
}) })
it('should return 1 point for indexer tier requesting full node access', () => { it('should return 10 point for indexer tier requesting full node access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 30, apiLevel: 30,
resource: 'blockchain', resource: 'blockchain',
@@ -186,32 +186,32 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 1) assert.equal(result, 10)
}) })
it('should return 1 points for indexer tier requesting indexer access', () => { it('should return 10 points for indexer tier requesting indexer access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 30, apiLevel: 30,
resource: 'blockbook', resource: 'blockbook',
id: '5e3a0415eb29a962da2708b4' id: '5e3a0415eb29a962da2708b4'
} }
const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 1)
})
it('should return 10 points for indexer tier requesting SLPDB access', () => {
const jwtInfo = {
apiLevel: 30,
resource: 'slp',
id: '5e3a0415eb29a962da2708b4'
}
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 10) assert.equal(result, 10)
}) })
it('should return 1 point for SLP tier requesting full node access', () => { it('should return 100 points for indexer tier requesting SLPDB access', () => {
const jwtInfo = {
apiLevel: 30,
resource: 'slp',
id: '5e3a0415eb29a962da2708b4'
}
const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 100)
})
it('should return 10 point for SLP tier requesting full node access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 40, apiLevel: 40,
resource: 'blockchain', resource: 'blockchain',
@@ -219,10 +219,10 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 1) assert.equal(result, 10)
}) })
it('should return 1 points for SLP tier requesting indexer access', () => { it('should return 10 points for SLP tier requesting indexer access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 40, apiLevel: 40,
resource: 'blockbook', resource: 'blockbook',
@@ -230,10 +230,10 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 1) assert.equal(result, 10)
}) })
it('should return 1 points for SLP tier requesting SLPDB access', () => { it('should return 10 points for SLP tier requesting SLPDB access', () => {
const jwtInfo = { const jwtInfo = {
apiLevel: 40, apiLevel: 40,
resource: 'slp', resource: 'slp',
@@ -241,7 +241,7 @@ describe('#route-ratelimits & jwt-auth', () => {
} }
const result = rateLimits.calcPoints(jwtInfo) const result = rateLimits.calcPoints(jwtInfo)
assert.equal(result, 1) assert.equal(result, 10)
}) })
}) })
@@ -442,7 +442,7 @@ describe('#route-ratelimits & jwt-auth', () => {
// Issues with token secret should treat incoming requests as anonymous // Issues with token secret should treat incoming requests as anonymous
// calls with 30 points or 3 RPM. // calls with 30 points or 3 RPM.
assert.equal(res.locals.pointsToConsume, 30) assert.equal(res.locals.pointsToConsume, 300)
}) })
}) })
}) })
+47 -42
View File
@@ -938,22 +938,26 @@ describe('#SLP', () => {
it('should return utxo details', async () => { it('should return utxo details', async () => {
const utxos = [ const utxos = [
{ {
txid: utxos: [
'd56a2b446d8149c39ca7e06163fe8097168c3604915f631bc58777d669135a56', {
vout: 3, txid:
value: '6816', 'd56a2b446d8149c39ca7e06163fe8097168c3604915f631bc58777d669135a56',
height: 606848, vout: 3,
confirmations: 13, value: '6816',
satoshis: 6816 height: 606848,
}, confirmations: 13,
{ satoshis: 6816
txid: },
'd56a2b446d8149c39ca7e06163fe8097168c3604915f631bc58777d669135a56', {
vout: 2, txid:
value: '546', 'd56a2b446d8149c39ca7e06163fe8097168c3604915f631bc58777d669135a56',
height: 606848, vout: 2,
confirmations: 13, value: '546',
satoshis: 546 height: 606848,
confirmations: 13,
satoshis: 546
}
]
} }
] ]
@@ -998,36 +1002,37 @@ describe('#SLP', () => {
// Test the general structure of the output. // Test the general structure of the output.
assert.isArray(result.slpUtxos) assert.isArray(result.slpUtxos)
assert.equal(result.slpUtxos.length, 2) assert.equal(result.slpUtxos.length, 1)
assert.equal(result.slpUtxos[0].utxos.length, 2)
// Test the non-slp UTXO. // Test the non-slp UTXO.
assert.property(result.slpUtxos[0], 'txid') assert.property(result.slpUtxos[0].utxos[0], 'txid')
assert.property(result.slpUtxos[0], 'vout') assert.property(result.slpUtxos[0].utxos[0], 'vout')
assert.property(result.slpUtxos[0], 'value') assert.property(result.slpUtxos[0].utxos[0], 'value')
assert.property(result.slpUtxos[0], 'height') assert.property(result.slpUtxos[0].utxos[0], 'height')
assert.property(result.slpUtxos[0], 'confirmations') assert.property(result.slpUtxos[0].utxos[0], 'confirmations')
assert.property(result.slpUtxos[0], 'satoshis') assert.property(result.slpUtxos[0].utxos[0], 'satoshis')
assert.property(result.slpUtxos[0], 'isValid') assert.property(result.slpUtxos[0].utxos[0], 'isValid')
assert.equal(result.slpUtxos[0].isValid, false) assert.equal(result.slpUtxos[0].utxos[0].isValid, false)
// Test the slp UTXO. // Test the slp UTXO.
assert.property(result.slpUtxos[1], 'txid') assert.property(result.slpUtxos[0].utxos[1], 'txid')
assert.property(result.slpUtxos[1], 'vout') assert.property(result.slpUtxos[0].utxos[1], 'vout')
assert.property(result.slpUtxos[1], 'value') assert.property(result.slpUtxos[0].utxos[1], 'value')
assert.property(result.slpUtxos[1], 'height') assert.property(result.slpUtxos[0].utxos[1], 'height')
assert.property(result.slpUtxos[1], 'confirmations') assert.property(result.slpUtxos[0].utxos[1], 'confirmations')
assert.property(result.slpUtxos[1], 'satoshis') assert.property(result.slpUtxos[0].utxos[1], 'satoshis')
assert.property(result.slpUtxos[1], 'isValid') assert.property(result.slpUtxos[0].utxos[1], 'isValid')
assert.equal(result.slpUtxos[1].isValid, true) assert.equal(result.slpUtxos[0].utxos[1].isValid, true)
assert.property(result.slpUtxos[1], 'transactionType') assert.property(result.slpUtxos[0].utxos[1], 'transactionType')
assert.property(result.slpUtxos[1], 'tokenId') assert.property(result.slpUtxos[0].utxos[1], 'tokenId')
assert.property(result.slpUtxos[1], 'tokenTicker') assert.property(result.slpUtxos[0].utxos[1], 'tokenTicker')
assert.property(result.slpUtxos[1], 'tokenName') assert.property(result.slpUtxos[0].utxos[1], 'tokenName')
assert.property(result.slpUtxos[1], 'tokenDocumentUrl') assert.property(result.slpUtxos[0].utxos[1], 'tokenDocumentUrl')
assert.property(result.slpUtxos[1], 'tokenDocumentHash') assert.property(result.slpUtxos[0].utxos[1], 'tokenDocumentHash')
assert.property(result.slpUtxos[1], 'decimals') assert.property(result.slpUtxos[0].utxos[1], 'decimals')
assert.property(result.slpUtxos[1], 'tokenType') assert.property(result.slpUtxos[0].utxos[1], 'tokenType')
assert.property(result.slpUtxos[1], 'tokenQty') assert.property(result.slpUtxos[0].utxos[1], 'tokenQty')
}) })
}) })
}) })