This repository was archived by the owner on May 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathfileEncoding.spec.ts
More file actions
272 lines (220 loc) · 8.6 KB
/
Copy pathfileEncoding.spec.ts
File metadata and controls
272 lines (220 loc) · 8.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import * as vscode from "vscode"
import * as fs from "fs/promises"
import * as iconv from "iconv-lite"
import {
getFileEncoding,
normalizeEncoding,
isEncodingSupported,
readFileWithEncoding,
writeFileWithEncoding,
} from "../fileEncoding"
// Mock vscode module
vi.mock("vscode", () => ({
workspace: {
getConfiguration: vi.fn(),
},
Uri: {
file: vi.fn((path: string) => ({ fsPath: path })),
},
}))
// Mock fs/promises module
vi.mock("fs/promises", () => ({
default: {
readFile: vi.fn(),
writeFile: vi.fn(),
},
readFile: vi.fn(),
writeFile: vi.fn(),
}))
// Mock iconv-lite module
vi.mock("iconv-lite", () => ({
default: {
encodingExists: vi.fn(),
decode: vi.fn(),
encode: vi.fn(),
},
encodingExists: vi.fn(),
decode: vi.fn(),
encode: vi.fn(),
}))
describe("fileEncoding", () => {
const mockedVscode = vi.mocked(vscode)
const mockedFs = vi.mocked(fs)
const mockedIconv = vi.mocked(iconv)
beforeEach(() => {
vi.clearAllMocks()
})
describe("getFileEncoding", () => {
it("should return the configured encoding from VSCode settings", () => {
const mockConfig = {
get: vi.fn().mockReturnValue("cp852"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
const encoding = getFileEncoding("/path/to/file.txt")
expect(mockedVscode.Uri.file).toHaveBeenCalledWith("/path/to/file.txt")
expect(mockedVscode.workspace.getConfiguration).toHaveBeenCalledWith("files", {
fsPath: "/path/to/file.txt",
})
expect(mockConfig.get).toHaveBeenCalledWith("encoding", "utf8")
expect(encoding).toBe("cp852")
})
it("should return utf8 as default if no encoding is configured", () => {
const mockConfig = {
get: vi.fn().mockReturnValue("utf8"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
const encoding = getFileEncoding("/path/to/file.txt")
expect(encoding).toBe("utf8")
})
})
describe("normalizeEncoding", () => {
it("should normalize utf-8 to utf8", () => {
expect(normalizeEncoding("utf-8")).toBe("utf8")
expect(normalizeEncoding("UTF-8")).toBe("utf8")
})
it("should normalize windows code pages", () => {
expect(normalizeEncoding("windows1252")).toBe("windows1252")
expect(normalizeEncoding("windows-1252")).toBe("windows1252")
})
it("should normalize DOS code pages", () => {
expect(normalizeEncoding("cp852")).toBe("cp852")
expect(normalizeEncoding("CP852")).toBe("cp852")
})
it("should normalize ISO encodings", () => {
expect(normalizeEncoding("iso88591")).toBe("iso88591")
expect(normalizeEncoding("iso-8859-1")).toBe("iso88591")
})
it("should return the original encoding if not in the map", () => {
expect(normalizeEncoding("unknown-encoding")).toBe("unknown-encoding")
})
})
describe("isEncodingSupported", () => {
it("should return true for supported encodings", () => {
mockedIconv.encodingExists = vi.fn().mockReturnValue(true)
expect(isEncodingSupported("utf8")).toBe(true)
expect(mockedIconv.encodingExists).toHaveBeenCalledWith("utf8")
})
it("should return false for unsupported encodings", () => {
mockedIconv.encodingExists = vi.fn().mockReturnValue(false)
expect(isEncodingSupported("unknown")).toBe(false)
expect(mockedIconv.encodingExists).toHaveBeenCalledWith("unknown")
})
})
describe("readFileWithEncoding", () => {
beforeEach(() => {
const mockConfig = {
get: vi.fn().mockReturnValue("utf8"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
})
it("should read file with UTF-8 encoding directly", async () => {
const mockBuffer = Buffer.from("Hello World", "utf8")
mockedFs.readFile = vi.fn().mockResolvedValue(mockBuffer)
const result = await readFileWithEncoding("/path/to/file.txt")
expect(result.content).toBe("Hello World")
expect(result.encoding).toBe("utf8")
expect(result.usedFallback).toBe(false)
})
it("should read file with CP852 encoding", async () => {
const mockConfig = {
get: vi.fn().mockReturnValue("cp852"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
const mockBuffer = Buffer.from([0x8d, 0x8f, 0xa7]) // Some CP852 bytes
mockedFs.readFile = vi.fn().mockResolvedValue(mockBuffer)
mockedIconv.encodingExists = vi.fn().mockReturnValue(true)
mockedIconv.decode = vi.fn().mockReturnValue("čćž")
const result = await readFileWithEncoding("/path/to/file.txt")
expect(mockedIconv.decode).toHaveBeenCalledWith(mockBuffer, "cp852")
expect(result.content).toBe("čćž")
expect(result.encoding).toBe("cp852")
expect(result.usedFallback).toBe(false)
})
it("should fall back to UTF-8 if encoding is not supported", async () => {
const mockConfig = {
get: vi.fn().mockReturnValue("unsupported-encoding"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
const mockBuffer = Buffer.from("Hello World", "utf8")
mockedFs.readFile = vi.fn().mockResolvedValue(mockBuffer)
mockedIconv.encodingExists = vi.fn().mockReturnValue(false)
const result = await readFileWithEncoding("/path/to/file.txt")
expect(result.content).toBe("Hello World")
expect(result.encoding).toBe("unsupported-encoding")
expect(result.usedFallback).toBe(true)
})
it("should fall back to UTF-8 if decoding fails", async () => {
const mockConfig = {
get: vi.fn().mockReturnValue("cp852"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
const mockBuffer = Buffer.from("Hello World", "utf8")
mockedFs.readFile = vi.fn().mockResolvedValue(mockBuffer)
mockedIconv.encodingExists = vi.fn().mockReturnValue(true)
mockedIconv.decode = vi.fn().mockImplementation(() => {
throw new Error("Decoding failed")
})
const result = await readFileWithEncoding("/path/to/file.txt")
expect(result.content).toBe("Hello World")
expect(result.encoding).toBe("cp852")
expect(result.usedFallback).toBe(true)
})
})
describe("writeFileWithEncoding", () => {
beforeEach(() => {
const mockConfig = {
get: vi.fn().mockReturnValue("utf8"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
})
it("should write file with UTF-8 encoding directly", async () => {
mockedFs.writeFile = vi.fn().mockResolvedValue(undefined)
const result = await writeFileWithEncoding("/path/to/file.txt", "Hello World")
expect(mockedFs.writeFile).toHaveBeenCalledWith("/path/to/file.txt", "Hello World", "utf8")
expect(result.encoding).toBe("utf8")
expect(result.usedFallback).toBe(false)
})
it("should write file with CP852 encoding", async () => {
const mockConfig = {
get: vi.fn().mockReturnValue("cp852"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
const mockBuffer = Buffer.from([0x8d, 0x8f, 0xa7])
mockedIconv.encodingExists = vi.fn().mockReturnValue(true)
mockedIconv.encode = vi.fn().mockReturnValue(mockBuffer)
mockedFs.writeFile = vi.fn().mockResolvedValue(undefined)
const result = await writeFileWithEncoding("/path/to/file.txt", "čćž")
expect(mockedIconv.encode).toHaveBeenCalledWith("čćž", "cp852")
expect(mockedFs.writeFile).toHaveBeenCalledWith("/path/to/file.txt", mockBuffer)
expect(result.encoding).toBe("cp852")
expect(result.usedFallback).toBe(false)
})
it("should fall back to UTF-8 if encoding is not supported", async () => {
const mockConfig = {
get: vi.fn().mockReturnValue("unsupported-encoding"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
mockedIconv.encodingExists = vi.fn().mockReturnValue(false)
mockedFs.writeFile = vi.fn().mockResolvedValue(undefined)
const result = await writeFileWithEncoding("/path/to/file.txt", "Hello World")
expect(mockedFs.writeFile).toHaveBeenCalledWith("/path/to/file.txt", "Hello World", "utf8")
expect(result.encoding).toBe("unsupported-encoding")
expect(result.usedFallback).toBe(true)
})
it("should fall back to UTF-8 if encoding fails", async () => {
const mockConfig = {
get: vi.fn().mockReturnValue("cp852"),
}
mockedVscode.workspace.getConfiguration = vi.fn().mockReturnValue(mockConfig)
mockedIconv.encodingExists = vi.fn().mockReturnValue(true)
mockedIconv.encode = vi.fn().mockImplementation(() => {
throw new Error("Encoding failed")
})
mockedFs.writeFile = vi.fn().mockResolvedValue(undefined)
const result = await writeFileWithEncoding("/path/to/file.txt", "Hello World")
expect(mockedFs.writeFile).toHaveBeenCalledWith("/path/to/file.txt", "Hello World", "utf8")
expect(result.encoding).toBe("cp852")
expect(result.usedFallback).toBe(true)
})
})
})