2021-03-31 02:24:51 +07:00
|
|
|
import { CODE_SERVER_ADDRESS, PASSWORD } from "../utils/constants"
|
2021-06-10 20:09:38 +07:00
|
|
|
import { test, expect } from "./baseFixture"
|
2021-03-18 06:23:17 +07:00
|
|
|
|
2021-04-14 02:02:52 +07:00
|
|
|
test.describe("logout", () => {
|
2021-04-14 07:31:56 +07:00
|
|
|
// Reset the browser so no cookies are persisted
|
|
|
|
// by emptying the storageState
|
2021-06-10 20:09:38 +07:00
|
|
|
test.use({
|
|
|
|
storageState: {},
|
2021-04-22 04:31:15 +07:00
|
|
|
})
|
|
|
|
|
2021-06-10 20:09:38 +07:00
|
|
|
test("should be able login and logout", async ({ codeServerPage }) => {
|
2021-03-18 06:23:17 +07:00
|
|
|
// Type in password
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.page.fill(".password", PASSWORD)
|
2021-03-18 06:23:17 +07:00
|
|
|
// Click the submit button and login
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.page.click(".submit")
|
|
|
|
await codeServerPage.page.waitForLoadState("networkidle")
|
2021-04-22 04:31:15 +07:00
|
|
|
// We do this because occassionally code-server doesn't load on Firefox
|
|
|
|
// but loads if you reload once or twice
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.reloadUntilEditorIsReady()
|
2021-04-06 05:18:13 +07:00
|
|
|
// Make sure the editor actually loaded
|
2021-06-10 20:09:38 +07:00
|
|
|
expect(await codeServerPage.isEditorVisible()).toBe(true)
|
2021-03-18 06:23:17 +07:00
|
|
|
|
|
|
|
// Click the Application menu
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.page.click("[aria-label='Application Menu']")
|
2021-03-18 06:23:17 +07:00
|
|
|
|
|
|
|
// See the Log out button
|
|
|
|
const logoutButton = "a.action-menu-item span[aria-label='Log out']"
|
2021-06-10 20:09:38 +07:00
|
|
|
expect(await codeServerPage.page.isVisible(logoutButton)).toBe(true)
|
2021-03-18 06:23:17 +07:00
|
|
|
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.page.hover(logoutButton)
|
2021-04-03 02:32:24 +07: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
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.page.waitForTimeout(2000)
|
2021-03-18 06:23:17 +07:00
|
|
|
|
2021-04-03 02:32:24 +07:00
|
|
|
// Recommended by Playwright for async navigation
|
|
|
|
// https://github.com/microsoft/playwright/issues/1987#issuecomment-620182151
|
2021-06-10 20:09:38 +07:00
|
|
|
await Promise.all([codeServerPage.page.waitForNavigation(), codeServerPage.page.click(logoutButton)])
|
|
|
|
const currentUrl = codeServerPage.page.url()
|
2021-03-18 06:23:17 +07:00
|
|
|
expect(currentUrl).toBe(`${CODE_SERVER_ADDRESS}/login`)
|
|
|
|
})
|
|
|
|
})
|