code-server/test/e2e/logout.test.ts

39 lines
1.7 KiB
TypeScript
Raw Normal View History

import { PASSWORD } from "../utils/constants"
import { describe, test, expect } from "./baseFixture"
2021-03-17 23:23:17 +00:00
describe("logout", false, () => {
test("should be able login and logout", async ({ codeServerPage }) => {
2021-03-17 23:23:17 +00:00
// Type in password
await codeServerPage.page.fill(".password", PASSWORD)
2021-03-17 23:23:17 +00:00
// Click the submit button and login
await codeServerPage.page.click(".submit")
await codeServerPage.page.waitForLoadState("networkidle")
// We do this because occassionally code-server doesn't load on Firefox
// but loads if you reload once or twice
await codeServerPage.reloadUntilEditorIsReady()
// Make sure the editor actually loaded
expect(await codeServerPage.isEditorVisible()).toBe(true)
2021-03-17 23:23:17 +00:00
// Click the Application menu
await codeServerPage.page.click("[aria-label='Application Menu']")
2021-03-17 23:23:17 +00:00
// See the Log out button
const logoutButton = "a.action-menu-item span[aria-label='Log out']"
expect(await codeServerPage.page.isVisible(logoutButton)).toBe(true)
2021-03-17 23:23:17 +00:00
await codeServerPage.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 codeServerPage.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([codeServerPage.page.waitForNavigation(), codeServerPage.page.click(logoutButton)])
const currentUrl = codeServerPage.page.url()
expect(currentUrl).toBe(`${await codeServerPage.address()}/login`)
2021-03-17 23:23:17 +00:00
})
})