Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Test surrogate pair filenames on windows #51800

Closed
wants to merge 13 commits into from
49 changes: 49 additions & 0 deletions test/common/file-ops-with-surrogate-pairs-on-windows.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
'use strict';
mertcanaltin marked this conversation as resolved.
Show resolved Hide resolved

const fs = require('fs');
mertcanaltin marked this conversation as resolved.
Show resolved Hide resolved
const os = require('os');
const path = require('path');
const assert = require('assert').strict;
mertcanaltin marked this conversation as resolved.
Show resolved Hide resolved
const { describe, it } = require('node:test');

describe('File operations with filenames containing surrogate pairs on Windows', () => {
mertcanaltin marked this conversation as resolved.
Show resolved Hide resolved
it('should write, read, and delete a file with surrogate pairs in the filename', () => {
// Create a temporary directory
const tempdir = fs.mkdtempSync(path.join(os.tmpdir(), 'emoji-fruit-🍇 🍈 🍉 🍊 🍋'));
mertcanaltin marked this conversation as resolved.
Show resolved Hide resolved
assert.strictEqual(fs.existsSync(tempdir), true);

const filename = '🚀🔥🛸.txt';
const content = 'Test content';

// Write content to a file
fs.writeFileSync(path.join(tempdir, filename), content);

// Read content from the file
const readContent = fs.readFileSync(path.join(tempdir, filename), 'utf8');

// Check if the content matches
assert.strictEqual(readContent, content);

// Get directory contents
const dirs = fs.readdirSync(tempdir);
assert.strictEqual(dirs.length > 0, true);

// Check if the file is in the directory contents
let match = false;
for (let i = 0; i < dirs.length; i++) {
if (dirs[i].endsWith(filename)) {
match = true;
break;
}
}
assert.strictEqual(match, true);

// Delete the file
fs.unlinkSync(path.join(tempdir, filename));
assert.strictEqual(fs.existsSync(path.join(tempdir, filename)), false);

// Remove the temporary directory
fs.rmdirSync(tempdir);
assert.strictEqual(fs.existsSync(tempdir), false);
});
});