1
0
Fork 0
mirror of synced 2024-06-21 11:51:00 +12:00

Fix for cypress test issues, when metadata is updated rapidly it could get into a bad state - this should resolve it.

This commit is contained in:
mike12345567 2021-11-16 20:56:24 +00:00
parent 8d56fe1339
commit 3b9f3d6690
6 changed files with 30 additions and 11 deletions

View file

@ -67,7 +67,19 @@ exports.getAppMetadata = async (appId, CouchDB = null) => {
return metadata
}
exports.invalidateAppMetadata = async appId => {
/**
* Invalidate/reset the cached metadata when a change occurs in the db.
* @param appId {string} the cache key to bust/update.
* @param newMetadata {object|undefined} optional - can simply provide the new metadata to update with.
* @return {Promise<void>} will respond with success when cache is updated.
*/
exports.invalidateAppMetadata = async (appId, newMetadata = null) => {
if (!appId) {
throw "Cannot invalidate if no app ID provided."
}
const client = await redis.getAppClient()
await client.delete(appId)
if (newMetadata) {
await client.store(appId, newMetadata, EXPIRY_SECONDS)
}
}

View file

@ -92,6 +92,10 @@ module.exports = (
finalise(ctx, { authenticated, user, internal, version, publicEndpoint })
return next()
} catch (err) {
// invalid token, clear the cookie
if (err && err.name === "JsonWebTokenError") {
clearCookie(ctx, Cookies.Auth)
}
// allow configuring for public access
if ((opts && opts.publicAllowed) || publicEndpoint) {
finalise(ctx, { authenticated: false, version, publicEndpoint })

View file

@ -5,19 +5,19 @@
const path = require("path")
const tmpdir = path.join(require("os").tmpdir(), ".budibase")
const MAIN_PORT = "4002"
const WORKER_PORT = "4001"
const MAIN_PORT = "10001"
const WORKER_PORT = "10002"
// @ts-ignore
process.env.PORT = "4001"
process.env.PORT = MAIN_PORT
process.env.BUDIBASE_API_KEY = "6BE826CB-6B30-4AEC-8777-2E90464633DE"
process.env.NODE_ENV = "cypress"
process.env.ENABLE_ANALYTICS = "false"
process.env.JWT_SECRET = "budibase"
process.env.COUCH_URL = `leveldb://${tmpdir}/.data/`
process.env.SELF_HOSTED = "1"
process.env.WORKER_URL = "http://localhost:4002/"
process.env.MINIO_URL = `http://localhost:4001/`
process.env.WORKER_URL = `http://localhost:${WORKER_PORT}/`
process.env.MINIO_URL = `http://localhost:${MAIN_PORT}/`
process.env.MINIO_ACCESS_KEY = "budibase"
process.env.MINIO_SECRET_KEY = "budibase"
process.env.COUCH_DB_USER = "budibase"
@ -28,6 +28,6 @@ process.env.ALLOW_DEV_AUTOMATIONS = "1"
// don't make this a variable or top level require
// it will cause environment module to be loaded prematurely
const server = require("../src/app")
process.env.PORT = "4002"
process.env.PORT = WORKER_PORT
const worker = require("../../worker/src/index")
process.env.PORT = "4001"
process.env.PORT = MAIN_PORT

View file

@ -255,6 +255,7 @@ exports.create = async ctx => {
await createApp(appId)
}
await appCache.invalidateAppMetadata(appId, newApplication)
ctx.status = 200
ctx.body = newApplication
}

View file

@ -25,7 +25,8 @@ async function redirect(ctx, method, path = "global") {
)
)
if (response.status !== 200) {
ctx.throw(response.status, response.statusText)
const err = await response.text()
ctx.throw(400, err)
}
const cookie = response.headers.get("set-cookie")
if (cookie) {

View file

@ -51,8 +51,9 @@ async function updateAppUpdatedAt(ctx) {
const db = new CouchDB(appId)
const metadata = await db.get(DocumentTypes.APP_METADATA)
metadata.updatedAt = new Date().toISOString()
await db.put(metadata)
await appCache.invalidateAppMetadata(appId)
const response = await db.put(metadata)
metadata._rev = response.rev
await appCache.invalidateAppMetadata(appId, metadata)
// set a new debounce record with a short TTL
await setDebounce(appId, DEBOUNCE_TIME_SEC)
}