2021-04-19 22:25:57 +00:00
|
|
|
import { Page } from "playwright"
|
|
|
|
import { CODE_SERVER_ADDRESS } from "../../utils/constants"
|
|
|
|
// This is a Page Object Model
|
|
|
|
// We use these to simplify e2e test authoring
|
|
|
|
// See Playwright docs: https://playwright.dev/docs/pom/
|
|
|
|
export class CodeServer {
|
|
|
|
page: Page
|
|
|
|
|
|
|
|
constructor(page: Page) {
|
|
|
|
this.page = page
|
|
|
|
}
|
2021-04-20 19:41:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Navigates to CODE_SERVER_ADDRESS
|
|
|
|
*/
|
2021-04-19 22:25:57 +00:00
|
|
|
async navigate() {
|
|
|
|
await this.page.goto(CODE_SERVER_ADDRESS, { waitUntil: "networkidle" })
|
2021-04-20 19:41:54 +00:00
|
|
|
|
|
|
|
let editorIsVisible = await this.isEditorVisible()
|
|
|
|
let reloadCount = 0
|
|
|
|
|
|
|
|
// Occassionally code-server timeouts in Firefox
|
|
|
|
// we're not sure why
|
|
|
|
// but usually a reload or two fixes it
|
|
|
|
// TODO@jsjoeio @oxy look into Firefox reconnection/timeout issues
|
|
|
|
// TODO@jsjoeio sometimes it's 2 reloads, othertimes it's 9
|
|
|
|
// double-check this logic
|
|
|
|
while (!editorIsVisible) {
|
|
|
|
reloadCount += 1
|
|
|
|
editorIsVisible = await this.isEditorVisible()
|
|
|
|
if (editorIsVisible) {
|
|
|
|
console.log(`Editor became visible after ${reloadCount} reloads`)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
await this.page.reload({ waitUntil: "networkidle" })
|
|
|
|
}
|
2021-04-19 22:25:57 +00:00
|
|
|
}
|
2021-04-20 19:41:54 +00:00
|
|
|
|
2021-04-19 22:25:57 +00:00
|
|
|
/**
|
2021-04-20 19:41:54 +00:00
|
|
|
* Checks if the editor is visible
|
2021-04-19 22:25:57 +00:00
|
|
|
*/
|
2021-04-20 19:41:54 +00:00
|
|
|
async isEditorVisible() {
|
|
|
|
// Make sure the editor actually loaded
|
|
|
|
// If it's not visible after 2 seconds, something is wrong
|
|
|
|
await this.page.waitForLoadState("networkidle")
|
|
|
|
return await this.page.isVisible("div.monaco-workbench", { timeout: 5000 })
|
2021-04-19 22:25:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-04-20 19:41:54 +00:00
|
|
|
* Focuses Integrated Terminal
|
|
|
|
* by going to the Application Menu
|
|
|
|
* and clicking View > Terminal
|
2021-04-19 22:25:57 +00:00
|
|
|
*/
|
2021-04-20 19:41:54 +00:00
|
|
|
async focusTerminal() {
|
|
|
|
// If the terminal is already visible
|
|
|
|
// then we can focus it by hitting the keyboard shortcut
|
|
|
|
const isTerminalVisible = await this.page.isVisible("#terminal")
|
|
|
|
if (isTerminalVisible) {
|
|
|
|
await this.page.keyboard.press(`Meta+Backquote`)
|
|
|
|
return
|
2021-04-19 22:25:57 +00:00
|
|
|
}
|
2021-04-20 19:41:54 +00:00
|
|
|
// Open using the manu
|
|
|
|
// Click [aria-label="Application Menu"] div[role="none"]
|
|
|
|
await this.page.click('[aria-label="Application Menu"] div[role="none"]')
|
2021-04-19 22:25:57 +00:00
|
|
|
|
2021-04-20 19:41:54 +00:00
|
|
|
// Click text=View
|
|
|
|
await this.page.hover("text=View")
|
|
|
|
await this.page.click("text=View")
|
2021-04-19 22:25:57 +00:00
|
|
|
|
2021-04-20 19:41:54 +00:00
|
|
|
// Click text=Terminal
|
|
|
|
await this.page.hover("text=Terminal")
|
|
|
|
await this.page.click("text=Terminal")
|
2021-04-19 22:25:57 +00:00
|
|
|
}
|
|
|
|
}
|