|
1 |
| -import { EditorSessionManager } from "../../../src/node/vscodeSocket" |
2 |
| -import { clean, tmpdir, listenOn } from "../../utils/helpers" |
| 1 | +import { logger } from "@coder/logger" |
| 2 | +import * as app from "../../../src/node/app" |
| 3 | +import { paths } from "../../../src/node/util" |
| 4 | +import { |
| 5 | + DEFAULT_SOCKET_PATH, |
| 6 | + EditorSessionManager, |
| 7 | + makeEditorSessionManagerServer, |
| 8 | +} from "../../../src/node/vscodeSocket" |
| 9 | +import { clean, tmpdir, listenOn, mockLogger } from "../../utils/helpers" |
| 10 | + |
| 11 | +describe("DEFAULT_SOCKET_PATH", () => { |
| 12 | + it("should be a unique path per user", () => { |
| 13 | + expect(DEFAULT_SOCKET_PATH.startsWith(paths.data)).toBe(true) |
| 14 | + }) |
| 15 | +}) |
| 16 | + |
| 17 | +describe("makeEditorSessionManagerServer", () => { |
| 18 | + let tmpDirPath: string |
| 19 | + |
| 20 | + const testName = "mesms" |
| 21 | + |
| 22 | + beforeAll(async () => { |
| 23 | + jest.clearAllMocks() |
| 24 | + mockLogger() |
| 25 | + await clean(testName) |
| 26 | + }) |
| 27 | + |
| 28 | + afterAll(() => { |
| 29 | + jest.resetModules() |
| 30 | + }) |
| 31 | + |
| 32 | + beforeEach(async () => { |
| 33 | + tmpDirPath = await tmpdir(testName) |
| 34 | + }) |
| 35 | + |
| 36 | + it("warns if socket cannot be created", async () => { |
| 37 | + jest.spyOn(app, "listen").mockImplementation(() => { |
| 38 | + throw new Error() |
| 39 | + }) |
| 40 | + const server = await makeEditorSessionManagerServer( |
| 41 | + `${tmpDirPath}/code-server-ipc.sock`, |
| 42 | + new EditorSessionManager(), |
| 43 | + ) |
| 44 | + expect(logger.warn).toHaveBeenCalledWith(`Could not create socket at ${tmpDirPath}/code-server-ipc.sock`) |
| 45 | + server.close() |
| 46 | + }) |
| 47 | +}) |
3 | 48 |
|
4 | 49 | describe("EditorSessionManager", () => {
|
5 | 50 | let tmpDirPath: string
|
|
0 commit comments