2021-04-13 21:02:52 +02:00
|
|
|
import { test, expect } from "@playwright/test"
|
2021-04-21 23:31:15 +02:00
|
|
|
import { PASSWORD } from "../utils/constants"
|
|
|
|
import { CodeServer } from "./models/CodeServer"
|
2021-01-28 19:48:57 +01:00
|
|
|
|
2021-04-13 21:02:52 +02:00
|
|
|
test.describe("login", () => {
|
2021-04-14 02:31:24 +02:00
|
|
|
// Reset the browser so no cookies are persisted
|
|
|
|
// by emptying the storageState
|
|
|
|
const options = {
|
|
|
|
contextOptions: {
|
|
|
|
storageState: {},
|
|
|
|
},
|
|
|
|
}
|
2021-04-21 23:31:15 +02:00
|
|
|
let codeServer: CodeServer
|
|
|
|
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
|
|
codeServer = new CodeServer(page)
|
|
|
|
await codeServer.navigate()
|
|
|
|
})
|
2021-01-28 19:48:57 +01:00
|
|
|
|
2021-04-16 00:16:50 +02:00
|
|
|
test("should see the login page", options, async ({ page }) => {
|
|
|
|
// It should send us to the login page
|
|
|
|
expect(await page.title()).toBe("code-server login")
|
|
|
|
})
|
|
|
|
|
2021-04-14 02:31:24 +02:00
|
|
|
test("should be able to login", options, async ({ page }) => {
|
2021-01-28 19:48:57 +01:00
|
|
|
// Type in password
|
2021-02-12 20:08:34 +01:00
|
|
|
await page.fill(".password", PASSWORD)
|
2021-01-28 19:48:57 +01:00
|
|
|
// Click the submit button and login
|
|
|
|
await page.click(".submit")
|
2021-04-01 23:52:46 +02:00
|
|
|
await page.waitForLoadState("networkidle")
|
2021-04-21 23:31:15 +02:00
|
|
|
// We do this because occassionally code-server doesn't load on Firefox
|
|
|
|
// but loads if you reload once or twice
|
2021-04-30 22:26:25 +02:00
|
|
|
await codeServer.reloadUntilEditorIsReady()
|
2021-04-06 00:18:13 +02:00
|
|
|
// Make sure the editor actually loaded
|
2021-04-21 23:31:15 +02:00
|
|
|
expect(await codeServer.isEditorVisible()).toBe(true)
|
2021-01-28 19:48:57 +01:00
|
|
|
})
|
2021-04-16 00:27:17 +02:00
|
|
|
|
|
|
|
test("should see an error message for missing password", options, async ({ page }) => {
|
|
|
|
// Skip entering password
|
|
|
|
// Click the submit button and login
|
|
|
|
await page.click(".submit")
|
|
|
|
await page.waitForLoadState("networkidle")
|
|
|
|
expect(await page.isVisible("text=Missing password"))
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should see an error message for incorrect password", options, async ({ page }) => {
|
|
|
|
// Type in password
|
|
|
|
await page.fill(".password", "password123")
|
|
|
|
// Click the submit button and login
|
|
|
|
await page.click(".submit")
|
|
|
|
await page.waitForLoadState("networkidle")
|
|
|
|
expect(await page.isVisible("text=Incorrect password"))
|
|
|
|
})
|
2021-04-16 01:36:35 +02:00
|
|
|
|
|
|
|
test("should hit the rate limiter for too many unsuccessful logins", options, async ({ page }) => {
|
|
|
|
// Type in password
|
|
|
|
await page.fill(".password", "password123")
|
|
|
|
// Click the submit button and login
|
|
|
|
// The current RateLimiter allows 2 logins per minute plus
|
|
|
|
// 12 logins per hour for a total of 14
|
|
|
|
// See: src/node/routes/login.ts
|
2021-04-19 20:21:38 +02:00
|
|
|
for (let i = 1; i <= 14; i++) {
|
2021-04-16 01:36:35 +02:00
|
|
|
await page.click(".submit")
|
|
|
|
await page.waitForLoadState("networkidle")
|
2021-04-19 20:11:52 +02:00
|
|
|
// We double-check that the correct error message shows
|
|
|
|
// which should be for incorrect password
|
|
|
|
expect(await page.isVisible("text=Incorrect password"))
|
2021-04-16 01:36:35 +02:00
|
|
|
}
|
|
|
|
|
2021-04-19 20:11:52 +02:00
|
|
|
// The 15th should fail for a different reason:
|
|
|
|
// login rate
|
2021-04-16 01:36:35 +02:00
|
|
|
await page.click(".submit")
|
|
|
|
await page.waitForLoadState("networkidle")
|
|
|
|
expect(await page.isVisible("text=Login rate limited!"))
|
|
|
|
})
|
2021-01-28 19:48:57 +01:00
|
|
|
})
|