2021-02-03 17:09:48 +01:00
|
|
|
const cypressConfig = require("../cypress.json")
|
2021-03-24 16:36:13 +01:00
|
|
|
const path = require("path")
|
|
|
|
|
|
|
|
const tmpdir = path.join(require("os").tmpdir(), ".budibase")
|
2020-08-05 16:18:28 +02:00
|
|
|
|
2021-05-25 16:57:38 +02:00
|
|
|
// these run on ports we don't normally use so that they can run alongside the
|
2021-06-25 17:37:01 +02:00
|
|
|
const fs = require("fs")
|
|
|
|
|
2021-05-25 16:57:38 +02:00
|
|
|
// normal development system
|
|
|
|
const WORKER_PORT = "10002"
|
2021-04-15 17:25:48 +02:00
|
|
|
const MAIN_PORT = cypressConfig.env.PORT
|
2020-08-05 16:18:28 +02:00
|
|
|
process.env.BUDIBASE_API_KEY = "6BE826CB-6B30-4AEC-8777-2E90464633DE"
|
|
|
|
process.env.NODE_ENV = "cypress"
|
2020-09-29 18:28:24 +02:00
|
|
|
process.env.ENABLE_ANALYTICS = "false"
|
2021-04-15 17:25:48 +02:00
|
|
|
process.env.PORT = MAIN_PORT
|
2021-03-24 16:36:13 +01:00
|
|
|
process.env.JWT_SECRET = cypressConfig.env.JWT_SECRET
|
|
|
|
process.env.COUCH_URL = `leveldb://${tmpdir}/.data/`
|
2021-03-24 22:15:14 +01:00
|
|
|
process.env.SELF_HOSTED = 1
|
2021-05-25 16:57:38 +02:00
|
|
|
process.env.WORKER_URL = "http://localhost:10002/"
|
2021-11-16 18:40:31 +01:00
|
|
|
process.env.APPS_URL = `http://localhost:${MAIN_PORT}/`
|
2021-05-25 16:57:38 +02:00
|
|
|
process.env.MINIO_URL = `http://localhost:${MAIN_PORT}/`
|
2021-03-24 22:15:14 +01:00
|
|
|
process.env.MINIO_ACCESS_KEY = "budibase"
|
|
|
|
process.env.MINIO_SECRET_KEY = "budibase"
|
|
|
|
process.env.COUCH_DB_USER = "budibase"
|
|
|
|
process.env.COUCH_DB_PASSWORD = "budibase"
|
2021-06-21 18:13:06 +02:00
|
|
|
process.env.INTERNAL_API_KEY = "budibase"
|
2021-09-14 12:18:02 +02:00
|
|
|
process.env.ALLOW_DEV_AUTOMATIONS = 1
|
2020-08-05 16:18:28 +02:00
|
|
|
|
2020-12-01 15:35:47 +01:00
|
|
|
// Stop info logs polluting test outputs
|
|
|
|
process.env.LOG_LEVEL = "error"
|
|
|
|
|
2021-03-23 12:01:33 +01:00
|
|
|
async function run() {
|
|
|
|
// require("dotenv").config({ path: resolve(dir, ".env") })
|
2021-06-25 17:37:01 +02:00
|
|
|
if (!fs.existsSync("../server/dist")) {
|
|
|
|
console.error("Unable to run cypress, need to build server first")
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
2020-10-28 12:23:26 +01:00
|
|
|
|
2021-07-09 18:50:01 +02:00
|
|
|
// don't make this a variable or top level require
|
2020-10-28 12:23:26 +01:00
|
|
|
// it will cause environment module to be loaded prematurely
|
2021-06-25 17:37:01 +02:00
|
|
|
const server = require("../../server/dist/app")
|
2021-04-15 17:25:48 +02:00
|
|
|
process.env.PORT = WORKER_PORT
|
|
|
|
const worker = require("../../worker/src/index")
|
|
|
|
// reload main port for rest of system
|
|
|
|
process.env.PORT = MAIN_PORT
|
2020-10-28 12:23:26 +01:00
|
|
|
server.on("close", () => console.log("Server Closed"))
|
2021-04-15 17:25:48 +02:00
|
|
|
worker.on("close", () => console.log("Worker Closed"))
|
2020-10-28 12:23:26 +01:00
|
|
|
}
|
|
|
|
|
2021-03-23 12:01:33 +01:00
|
|
|
run()
|