2021-04-23 21:28:39 +00:00
|
|
|
import * as fs from "fs"
|
|
|
|
import { tmpdir } from "../../test/utils/constants"
|
2021-03-09 23:32:31 +00:00
|
|
|
import { loggerModule } from "../utils/helpers"
|
2021-02-08 23:21:37 +00:00
|
|
|
|
2021-02-23 22:59:17 +00:00
|
|
|
// jest.mock is hoisted above the imports so we must use `require` here.
|
2021-03-09 23:32:31 +00:00
|
|
|
jest.mock("@coder/logger", () => require("../utils/helpers").loggerModule)
|
2021-02-23 22:59:17 +00:00
|
|
|
|
2021-02-08 23:21:37 +00:00
|
|
|
describe("constants", () => {
|
|
|
|
describe("getPackageJson", () => {
|
2021-05-04 23:55:09 +00:00
|
|
|
const { getPackageJson } = require("../../src/node/constants")
|
2021-02-08 23:21:37 +00:00
|
|
|
afterEach(() => {
|
|
|
|
jest.clearAllMocks()
|
|
|
|
})
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
jest.restoreAllMocks()
|
2021-05-04 23:55:09 +00:00
|
|
|
jest.resetModules()
|
2021-02-08 23:21:37 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should log a warning if package.json not found", () => {
|
|
|
|
const expectedErrorMessage = "Cannot find module './package.json' from 'src/node/constants.ts'"
|
|
|
|
|
|
|
|
getPackageJson("./package.json")
|
|
|
|
|
2021-02-23 20:54:22 +00:00
|
|
|
expect(loggerModule.logger.warn).toHaveBeenCalled()
|
|
|
|
expect(loggerModule.logger.warn).toHaveBeenCalledWith(expectedErrorMessage)
|
2021-02-08 23:21:37 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should find the package.json", () => {
|
|
|
|
// the function calls require from src/node/constants
|
|
|
|
// so to get the root package.json we need to use ../../
|
|
|
|
const packageJson = getPackageJson("../../package.json")
|
|
|
|
expect(Object.keys(packageJson).length).toBeGreaterThan(0)
|
|
|
|
expect(packageJson.name).toBe("code-server")
|
|
|
|
expect(packageJson.description).toBe("Run VS Code on a remote server.")
|
|
|
|
expect(packageJson.repository).toBe("https://github.com/cdr/code-server")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
describe("version", () => {
|
2021-05-04 23:55:09 +00:00
|
|
|
describe("with package.json.version defined", () => {
|
|
|
|
let mockPackageJson = {
|
|
|
|
name: "mock-code-server",
|
|
|
|
version: "1.0.0",
|
|
|
|
}
|
|
|
|
let version = ""
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.mock("../../package.json", () => mockPackageJson, { virtual: true })
|
|
|
|
version = require("../../src/node/constants").version
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.resetAllMocks()
|
|
|
|
jest.resetModules()
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should return the package.json version", () => {
|
|
|
|
// Source: https://gist.github.com/jhorsman/62eeea161a13b80e39f5249281e17c39#gistcomment-2896416
|
|
|
|
const validSemVar = new RegExp("^(0|[1-9]d*).(0|[1-9]d*).(0|[1-9]d*)")
|
|
|
|
const isValidSemVar = validSemVar.test(version)
|
|
|
|
expect(version).not.toBe(null)
|
|
|
|
expect(isValidSemVar).toBe(true)
|
|
|
|
expect(version).toBe("1.0.0")
|
|
|
|
})
|
2021-02-08 23:21:37 +00:00
|
|
|
})
|
2021-05-04 23:55:09 +00:00
|
|
|
describe("with package.json.version missing", () => {
|
|
|
|
let mockPackageJson = {
|
|
|
|
name: "mock-code-server",
|
|
|
|
}
|
|
|
|
let version = ""
|
2021-02-08 23:21:37 +00:00
|
|
|
|
2021-05-04 23:55:09 +00:00
|
|
|
beforeEach(() => {
|
|
|
|
jest.mock("../../package.json", () => mockPackageJson, { virtual: true })
|
|
|
|
version = require("../../src/node/constants").version
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.resetAllMocks()
|
|
|
|
jest.resetModules()
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should return 'development'", () => {
|
|
|
|
expect(version).toBe("development")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2021-02-08 23:21:37 +00:00
|
|
|
describe("commit", () => {
|
2021-05-04 23:55:09 +00:00
|
|
|
describe("with package.json.commit defined", () => {
|
|
|
|
let mockPackageJson = {
|
|
|
|
name: "mock-code-server",
|
|
|
|
commit: "f6b2be2838f4afb217c2fd8f03eafedd8d55ef9b",
|
|
|
|
}
|
|
|
|
let commit = ""
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.mock("../../package.json", () => mockPackageJson, { virtual: true })
|
|
|
|
commit = require("../../src/node/constants").commit
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.resetAllMocks()
|
|
|
|
jest.resetModules()
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should return the package.json.commit", () => {
|
|
|
|
// Source: https://gist.github.com/jhorsman/62eeea161a13b80e39f5249281e17c39#gistcomment-2896416
|
|
|
|
expect(commit).toBe("f6b2be2838f4afb217c2fd8f03eafedd8d55ef9b")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
describe("with package.json.commit missing", () => {
|
|
|
|
let mockPackageJson = {
|
|
|
|
name: "mock-code-server",
|
|
|
|
}
|
|
|
|
let commit = ""
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.mock("../../package.json", () => mockPackageJson, { virtual: true })
|
|
|
|
commit = require("../../src/node/constants").commit
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.resetAllMocks()
|
|
|
|
jest.resetModules()
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should return 'development'", () => {
|
|
|
|
expect(commit).toBe("development")
|
|
|
|
})
|
2021-02-08 23:21:37 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2021-04-23 21:28:39 +00:00
|
|
|
|
|
|
|
describe("test constants", () => {
|
|
|
|
describe("tmpdir", () => {
|
|
|
|
it("should return a temp directory", async () => {
|
|
|
|
const testName = "temp-dir"
|
|
|
|
const pathToTempDir = await tmpdir(testName)
|
|
|
|
|
|
|
|
expect(pathToTempDir).toContain(testName)
|
|
|
|
|
|
|
|
await fs.promises.rmdir(pathToTempDir)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|