Skip to content
Closed
52 changes: 52 additions & 0 deletions test/parallel/fs-operations-with-surrogate-pairs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
'use strict';

require('../common');
const fs = require('node:fs');
const path = require('node:path');
const assert = require('node:assert');
const { describe, it } = require('node:test');
const tmpdir = require('../common/tmpdir');

tmpdir.refresh();

describe('File operations with filenames containing surrogate pairs', () => {
it('should write, read, and delete a file with surrogate pairs in the filename', () => {
// Create a temporary directory
const tempdir = fs.mkdtempSync('emoji-fruit-🍇 🍈 🍉 🍊 🍋');
Comment thread
mertcanaltin marked this conversation as resolved.
Outdated
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);
Comment thread
mertcanaltin marked this conversation as resolved.
Outdated
});
});