2020-03-13 12:14:06 -04:00
|
|
|
const streamifier = require('streamifier')
|
|
|
|
const rp = require('request-promise-native').defaults({
|
2021-07-13 07:04:46 -04:00
|
|
|
resolveWithFullResponse: true,
|
2020-03-13 12:14:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
const { expect } = require('chai')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
uploadStringToPersistor,
|
|
|
|
getStringFromPersistor,
|
|
|
|
expectPersistorToHaveFile,
|
|
|
|
expectPersistorNotToHaveFile,
|
|
|
|
streamToString,
|
2021-07-13 07:04:46 -04:00
|
|
|
getMetric,
|
2020-03-13 12:14:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function getMetric(filestoreUrl, metric) {
|
|
|
|
const res = await rp.get(`${filestoreUrl}/metrics`)
|
|
|
|
expect(res.statusCode).to.equal(200)
|
|
|
|
const metricRegex = new RegExp(`^${metric}{[^}]+} ([0-9]+)$`, 'm')
|
|
|
|
const found = metricRegex.exec(res.body)
|
|
|
|
return parseInt(found ? found[1] : 0) || 0
|
|
|
|
}
|
|
|
|
|
|
|
|
function streamToString(stream) {
|
|
|
|
const chunks = []
|
|
|
|
return new Promise((resolve, reject) => {
|
2021-07-13 07:04:46 -04:00
|
|
|
stream.on('data', chunk => chunks.push(chunk))
|
2020-03-13 12:14:06 -04:00
|
|
|
stream.on('error', reject)
|
|
|
|
stream.on('end', () => resolve(Buffer.concat(chunks).toString('utf8')))
|
|
|
|
stream.resume()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async function uploadStringToPersistor(persistor, bucket, key, content) {
|
|
|
|
const fileStream = streamifier.createReadStream(content)
|
2020-07-07 08:49:54 -04:00
|
|
|
await persistor.sendStream(bucket, key, fileStream)
|
2020-03-13 12:14:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function getStringFromPersistor(persistor, bucket, key) {
|
2020-07-07 08:49:54 -04:00
|
|
|
const stream = await persistor.getObjectStream(bucket, key, {})
|
2020-03-13 12:14:06 -04:00
|
|
|
return streamToString(stream)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function expectPersistorToHaveFile(persistor, bucket, key, content) {
|
|
|
|
const foundContent = await getStringFromPersistor(persistor, bucket, key)
|
|
|
|
expect(foundContent).to.equal(content)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function expectPersistorNotToHaveFile(persistor, bucket, key) {
|
|
|
|
await expect(
|
|
|
|
getStringFromPersistor(persistor, bucket, key)
|
|
|
|
).to.eventually.have.been.rejected.with.property('name', 'NotFoundError')
|
|
|
|
}
|