2021-05-06 23:25:29 +07:00
|
|
|
import { createLoggerMock } from "../utils/helpers"
|
2021-02-24 05:59:17 +07:00
|
|
|
|
2021-02-09 06:21:37 +07:00
|
|
|
describe("constants", () => {
|
2021-05-06 23:25:29 +07:00
|
|
|
let constants: typeof import("../../src/node/constants")
|
|
|
|
|
2021-05-06 06:38:54 +07:00
|
|
|
describe("with package.json defined", () => {
|
2021-05-06 23:25:29 +07:00
|
|
|
const loggerModule = createLoggerMock()
|
|
|
|
const mockPackageJson = {
|
2021-05-06 06:38:54 +07:00
|
|
|
name: "mock-code-server",
|
|
|
|
description: "Run VS Code on a remote server.",
|
|
|
|
repository: "https://github.com/cdr/code-server",
|
|
|
|
version: "1.0.0",
|
|
|
|
commit: "f6b2be2838f4afb217c2fd8f03eafedd8d55ef9b",
|
|
|
|
}
|
|
|
|
|
2021-05-06 23:25:29 +07:00
|
|
|
beforeAll(() => {
|
|
|
|
jest.mock("@coder/logger", () => loggerModule)
|
2021-05-06 06:38:54 +07:00
|
|
|
jest.mock("../../package.json", () => mockPackageJson, { virtual: true })
|
2021-05-06 23:25:29 +07:00
|
|
|
constants = require("../../src/node/constants")
|
2021-02-09 06:21:37 +07:00
|
|
|
})
|
|
|
|
|
|
|
|
afterAll(() => {
|
2021-05-06 06:38:54 +07:00
|
|
|
jest.clearAllMocks()
|
2021-05-05 06:55:09 +07:00
|
|
|
jest.resetModules()
|
2021-02-09 06:21:37 +07:00
|
|
|
})
|
|
|
|
|
2021-05-06 06:38:54 +07:00
|
|
|
it("should provide the commit", () => {
|
2021-05-06 23:25:29 +07:00
|
|
|
expect(constants.commit).toBe(mockPackageJson.commit)
|
2021-02-09 06:21:37 +07:00
|
|
|
})
|
|
|
|
|
2021-05-06 06:38:54 +07:00
|
|
|
it("should return the package.json version", () => {
|
2021-05-06 23:25:29 +07:00
|
|
|
expect(constants.version).toBe(mockPackageJson.version)
|
2021-02-09 06:21:37 +07:00
|
|
|
})
|
2021-05-05 06:55:09 +07:00
|
|
|
|
2021-05-06 06:38:54 +07:00
|
|
|
describe("getPackageJson", () => {
|
|
|
|
it("should log a warning if package.json not found", () => {
|
|
|
|
const expectedErrorMessage = "Cannot find module './package.json' from 'src/node/constants.ts'"
|
2021-05-05 06:55:09 +07:00
|
|
|
|
2021-05-06 23:25:29 +07:00
|
|
|
constants.getPackageJson("./package.json")
|
2021-05-05 06:55:09 +07:00
|
|
|
|
2021-05-06 06:38:54 +07:00
|
|
|
expect(loggerModule.logger.warn).toHaveBeenCalled()
|
|
|
|
expect(loggerModule.logger.warn).toHaveBeenCalledWith(expectedErrorMessage)
|
2021-05-05 06:55:09 +07:00
|
|
|
})
|
|
|
|
|
2021-05-06 06:38:54 +07: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 ../../
|
2021-05-06 23:25:29 +07:00
|
|
|
const packageJson = constants.getPackageJson("../../package.json")
|
|
|
|
expect(packageJson).toStrictEqual(mockPackageJson)
|
2021-05-05 06:55:09 +07:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-05-06 06:38:54 +07:00
|
|
|
describe("with incomplete package.json", () => {
|
2021-05-06 23:25:29 +07:00
|
|
|
const mockPackageJson = {
|
2021-05-06 06:38:54 +07:00
|
|
|
name: "mock-code-server",
|
|
|
|
}
|
|
|
|
|
2021-05-06 23:25:29 +07:00
|
|
|
beforeAll(() => {
|
2021-05-06 06:38:54 +07:00
|
|
|
jest.mock("../../package.json", () => mockPackageJson, { virtual: true })
|
2021-05-06 23:25:29 +07:00
|
|
|
constants = require("../../src/node/constants")
|
2021-05-05 06:55:09 +07:00
|
|
|
})
|
|
|
|
|
2021-05-06 23:25:29 +07:00
|
|
|
afterAll(() => {
|
2021-05-06 06:38:54 +07:00
|
|
|
jest.clearAllMocks()
|
|
|
|
jest.resetModules()
|
|
|
|
})
|
2021-05-05 06:55:09 +07:00
|
|
|
|
2021-05-06 06:38:54 +07:00
|
|
|
it("version should return 'development'", () => {
|
2021-05-06 23:25:29 +07:00
|
|
|
expect(constants.version).toBe("development")
|
2021-05-06 06:38:54 +07:00
|
|
|
})
|
|
|
|
it("commit should return 'development'", () => {
|
2021-05-06 23:25:29 +07:00
|
|
|
expect(constants.commit).toBe("development")
|
2021-02-09 06:21:37 +07:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|