2021-04-13 19:02:52 +00:00
|
|
|
import { test, expect } from "@playwright/test"
|
2021-03-30 19:24:51 +00:00
|
|
|
import { CODE_SERVER_ADDRESS, PASSWORD } from "../utils/constants"
|
2021-03-17 23:23:17 +00:00
|
|
|
|
2021-04-13 19:02:52 +00:00
|
|
|
test.describe("logout", () => {
|
2021-04-14 00:31:56 +00:00
|
|
|
// Reset the browser so no cookies are persisted
|
|
|
|
// by emptying the storageState
|
|
|
|
const options = {
|
|
|
|
contextOptions: {
|
|
|
|
storageState: {},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
test("should be able login and logout", options, async ({ page }) => {
|
2021-04-01 21:52:46 +00:00
|
|
|
await page.goto(CODE_SERVER_ADDRESS, { waitUntil: "networkidle" })
|
2021-03-17 23:23:17 +00:00
|
|
|
// Type in password
|
|
|
|
await page.fill(".password", PASSWORD)
|
|
|
|
// Click the submit button and login
|
|
|
|
await page.click(".submit")
|
2021-04-01 21:52:46 +00:00
|
|
|
await page.waitForLoadState("networkidle")
|
2021-04-05 22:18:13 +00:00
|
|
|
// Make sure the editor actually loaded
|
|
|
|
expect(await page.isVisible("div.monaco-workbench"))
|
2021-03-17 23:23:17 +00:00
|
|
|
|
|
|
|
// Click the Application menu
|
|
|
|
await page.click("[aria-label='Application Menu']")
|
|
|
|
|
|
|
|
// See the Log out button
|
|
|
|
const logoutButton = "a.action-menu-item span[aria-label='Log out']"
|
|
|
|
expect(await page.isVisible(logoutButton))
|
|
|
|
|
|
|
|
await page.hover(logoutButton)
|
2021-04-02 19:32:24 +00:00
|
|
|
// TODO(@jsjoeio)
|
|
|
|
// Look into how we're attaching the handlers for the logout feature
|
|
|
|
// We need to see how it's done upstream and add logging to the
|
|
|
|
// handlers themselves.
|
|
|
|
// They may be attached too slowly, hence why we need this timeout
|
|
|
|
await page.waitForTimeout(2000)
|
2021-03-17 23:23:17 +00:00
|
|
|
|
2021-04-02 19:32:24 +00:00
|
|
|
// Recommended by Playwright for async navigation
|
|
|
|
// https://github.com/microsoft/playwright/issues/1987#issuecomment-620182151
|
|
|
|
await Promise.all([page.waitForNavigation(), page.click(logoutButton)])
|
2021-03-17 23:23:17 +00:00
|
|
|
const currentUrl = page.url()
|
|
|
|
expect(currentUrl).toBe(`${CODE_SERVER_ADDRESS}/login`)
|
|
|
|
})
|
|
|
|
})
|