1
0
Fork 0
mirror of synced 2024-08-14 01:21:41 +12:00

Merge pull request #7146 from Budibase/fix/charset-encoding

Fix CSV charset encoding
This commit is contained in:
Michael Drury 2022-11-29 17:10:36 +00:00 committed by GitHub
commit 1737aedbe5
2 changed files with 10 additions and 6 deletions

View file

@ -347,7 +347,7 @@ describe("/views", () => {
const setupExport = async () => {
const table = await config.createTable()
await config.createRow({ name: "test-name", description: "test-desc" })
await config.createRow({ name: "test-name", description: "ùúûü" })
return table
}
@ -362,11 +362,11 @@ describe("/views", () => {
const rows = JSON.parse(res.text)
expect(rows.length).toBe(1)
expect(rows[0].name).toBe("test-name")
expect(rows[0].description).toBe("test-desc")
expect(rows[0].description).toBe("ùúûü")
}
const assertCSVExport = (res) => {
expect(res.text).toBe("\"name\",\"description\"\n\"test-name\",\"test-desc\"")
expect(res.text).toBe(`"name","description"\n"test-name","ùúûü"`)
}
it("should be able to export a table as JSON", async () => {

View file

@ -80,12 +80,16 @@ export function loadHandlebarsFile(path: string) {
* When return a file from the API need to write the file to the system temporarily so we
* can create a read stream to send.
* @param {string} contents the contents of the file which is to be returned from the API.
* @param {string} encoding the encoding of the file to return (utf8 default)
* @return {Object} the read stream which can be put into the koa context body.
*/
export function apiFileReturn(contents: string) {
export function apiFileReturn(
contents: string,
encoding: BufferEncoding = "utf8"
) {
const path = join(budibaseTempDir(), uuid())
fs.writeFileSync(path, contents)
return fs.createReadStream(path)
fs.writeFileSync(path, contents, { encoding })
return fs.createReadStream(path, { encoding })
}
export function streamFile(path: string) {