2021-06-24 05:41:36 +07:00
|
|
|
import { Cookie } from "playwright"
|
2021-04-02 04:52:46 +07:00
|
|
|
import { hash } from "../../src/node/util"
|
2021-06-23 04:34:11 +07:00
|
|
|
import { PASSWORD, workspaceDir } from "./constants"
|
|
|
|
import { clean } from "./helpers"
|
2021-02-13 02:41:59 +07:00
|
|
|
import * as wtfnode from "./wtfnode"
|
2021-02-02 04:38:53 +07:00
|
|
|
|
2021-06-23 04:34:11 +07:00
|
|
|
/**
|
|
|
|
* Perform workspace cleanup and authenticate. This should be set up to run
|
|
|
|
* before our tests execute.
|
|
|
|
*/
|
2021-06-10 20:09:38 +07:00
|
|
|
export default async function () {
|
|
|
|
console.log("\n🚨 Running Global Setup for Playwright End-to-End Tests")
|
|
|
|
console.log(" Please hang tight...")
|
|
|
|
|
2021-06-23 04:34:11 +07:00
|
|
|
// Cleanup workspaces from previous tests.
|
|
|
|
await clean(workspaceDir)
|
|
|
|
|
2021-02-13 02:43:11 +07:00
|
|
|
if (process.env.WTF_NODE) {
|
|
|
|
wtfnode.setup()
|
|
|
|
}
|
2021-02-13 02:41:59 +07:00
|
|
|
|
2021-06-24 05:41:36 +07:00
|
|
|
// TODO: Replace this with a call to code-server to get the cookie. To avoid
|
|
|
|
// too much overhead we can do an http POST request and avoid spawning a
|
|
|
|
// browser for it.
|
|
|
|
const cookies: Cookie[] = [
|
|
|
|
{
|
|
|
|
domain: "localhost",
|
|
|
|
expires: -1,
|
|
|
|
httpOnly: false,
|
|
|
|
name: "key",
|
|
|
|
path: "/",
|
|
|
|
sameSite: "Lax",
|
|
|
|
secure: false,
|
|
|
|
value: await hash(PASSWORD),
|
|
|
|
},
|
|
|
|
]
|
2021-02-02 04:38:53 +07:00
|
|
|
|
|
|
|
// Save storage state and store as an env variable
|
2021-06-10 20:09:38 +07:00
|
|
|
// More info: https://playwright.dev/docs/auth/#reuse-authentication-state
|
2021-06-24 05:41:36 +07:00
|
|
|
process.env.STORAGE = JSON.stringify({ cookies })
|
2021-04-02 04:52:46 +07:00
|
|
|
|
2021-06-10 20:09:38 +07:00
|
|
|
console.log("✅ Global Setup for Playwright End-to-End Tests is now complete.")
|
2021-02-02 04:38:53 +07:00
|
|
|
}
|