2021-04-01 17:57:44 +00:00
|
|
|
/// <reference types="jest-playwright-preset" />
|
2021-03-30 19:24:51 +00:00
|
|
|
import { CODE_SERVER_ADDRESS, PASSWORD } from "../utils/constants"
|
2021-03-17 23:23:17 +00:00
|
|
|
|
|
|
|
describe("logout", () => {
|
|
|
|
beforeEach(async () => {
|
2021-04-01 17:57:44 +00:00
|
|
|
await jestPlaywright.resetContext()
|
2021-03-17 23:23:17 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should be able login and logout", async () => {
|
|
|
|
await page.goto(CODE_SERVER_ADDRESS)
|
|
|
|
// Type in password
|
|
|
|
await page.fill(".password", PASSWORD)
|
|
|
|
// Click the submit button and login
|
|
|
|
await page.click(".submit")
|
2021-04-01 17:57:44 +00:00
|
|
|
// Allow time to navigate
|
|
|
|
await page.waitForTimeout(1000)
|
2021-03-17 23:23:17 +00:00
|
|
|
// See the editor
|
|
|
|
const codeServerEditor = await page.isVisible(".monaco-workbench")
|
|
|
|
expect(codeServerEditor).toBeTruthy()
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
|
|
|
await page.click(logoutButton)
|
2021-03-23 19:14:42 +00:00
|
|
|
// it takes a couple seconds to navigate
|
|
|
|
await page.waitForTimeout(2000)
|
2021-03-17 23:23:17 +00:00
|
|
|
const currentUrl = page.url()
|
|
|
|
expect(currentUrl).toBe(`${CODE_SERVER_ADDRESS}/login`)
|
|
|
|
})
|
|
|
|
})
|