|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +const fs = require('fs'); |
| 4 | +const { describe, it } = require('node:test'); |
| 5 | +const assert = require('assert').strict; |
| 6 | +const os = require('os'); |
| 7 | +const path = require('path'); |
| 8 | + |
| 9 | +describe('File operations with filenames containing surrogate pairs on Windows', () => { |
| 10 | + it('should write, read, and delete a file with surrogate pairs in the filename', () => { |
| 11 | + // Create a temporary directory |
| 12 | + const tempdir = fs.mkdtempSync(path.join(os.tmpdir(), 'emoji-fruit-🍇 🍈 🍉 🍊 🍋')); |
| 13 | + assert.strictEqual(fs.existsSync(tempdir), true); |
| 14 | + |
| 15 | + const filename = '🚀🔥🛸.txt'; |
| 16 | + const content = 'Test content'; |
| 17 | + |
| 18 | + // Write content to a file |
| 19 | + fs.writeFileSync(path.join(tempdir, filename), content); |
| 20 | + |
| 21 | + // Read content from the file |
| 22 | + const readContent = fs.readFileSync(path.join(tempdir, filename), 'utf8'); |
| 23 | + |
| 24 | + // Check if the content matches |
| 25 | + assert.strictEqual(readContent, content); |
| 26 | + |
| 27 | + // Get directory contents |
| 28 | + const dirs = fs.readdirSync(tempdir); |
| 29 | + assert.strictEqual(dirs.length > 0, true); |
| 30 | + |
| 31 | + // Check if the file is in the directory contents |
| 32 | + let match = false; |
| 33 | + for (let i = 0; i < dirs.length; i++) { |
| 34 | + if (dirs[i].endsWith(filename)) { |
| 35 | + match = true; |
| 36 | + break; |
| 37 | + } |
| 38 | + } |
| 39 | + assert.strictEqual(match, true); |
| 40 | + |
| 41 | + // Delete the file |
| 42 | + fs.unlinkSync(path.join(tempdir, filename)); |
| 43 | + assert.strictEqual(fs.existsSync(path.join(tempdir, filename)), false); |
| 44 | + |
| 45 | + // Remove the temporary directory |
| 46 | + fs.rmdirSync(tempdir); |
| 47 | + assert.strictEqual(fs.existsSync(tempdir), false); |
| 48 | + }); |
| 49 | +}); |
0 commit comments