2021-06-24 00:21:08 +07:00
|
|
|
import { JSDOM } from "jsdom"
|
|
|
|
import { LocationLike } from "../../unit/util.test"
|
|
|
|
|
|
|
|
describe("login", () => {
|
|
|
|
describe("there is an element with id 'base'", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
const dom = new JSDOM()
|
|
|
|
global.document = dom.window.document
|
|
|
|
|
|
|
|
const location: LocationLike = {
|
|
|
|
pathname: "/healthz",
|
|
|
|
origin: "http://localhost:8080",
|
|
|
|
}
|
|
|
|
|
|
|
|
global.location = location as Location
|
|
|
|
})
|
|
|
|
afterEach(() => {
|
|
|
|
// Reset the global.document
|
|
|
|
global.document = undefined as any as Document
|
|
|
|
global.location = undefined as any as Location
|
|
|
|
})
|
|
|
|
it("should set the value to options.base", () => {
|
|
|
|
// Mock getElementById
|
|
|
|
const spy = jest.spyOn(document, "getElementById")
|
|
|
|
// Create a fake element and set the attribute
|
|
|
|
const mockElement = document.createElement("input")
|
|
|
|
mockElement.setAttribute("id", "base")
|
2021-06-24 00:49:22 +07:00
|
|
|
const expected = {
|
|
|
|
base: "./hello-world",
|
|
|
|
csStaticBase: "./static/development/Users/jp/Dev/code-server",
|
|
|
|
logLevel: 2,
|
|
|
|
disableTelemetry: false,
|
|
|
|
disableUpdateCheck: false,
|
|
|
|
}
|
|
|
|
mockElement.setAttribute("data-settings", JSON.stringify(expected))
|
2021-06-24 00:21:08 +07:00
|
|
|
document.body.appendChild(mockElement)
|
|
|
|
spy.mockImplementation(() => mockElement)
|
|
|
|
// Load file
|
|
|
|
require("../../../src/browser/pages/login")
|
|
|
|
|
|
|
|
const el: HTMLInputElement | null = document.querySelector("input#base")
|
|
|
|
expect(el?.value).toBe("/hello-world")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|