11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst fs = require('fs'); 51cb0ef41Sopenharmony_ciconst path = require('path'); 61cb0ef41Sopenharmony_ciconst tmpdir = require('../common/tmpdir'); 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ciconst readStream = fs.createReadStream(__filename); 91cb0ef41Sopenharmony_ciassert.strictEqual(readStream.pending, true); 101cb0ef41Sopenharmony_cireadStream.on('ready', common.mustCall(() => { 111cb0ef41Sopenharmony_ci assert.strictEqual(readStream.pending, false); 121cb0ef41Sopenharmony_ci})); 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ciconst writeFile = path.join(tmpdir.path, 'write-fsreadyevent.txt'); 151cb0ef41Sopenharmony_citmpdir.refresh(); 161cb0ef41Sopenharmony_ciconst writeStream = fs.createWriteStream(writeFile, { autoClose: true }); 171cb0ef41Sopenharmony_ciassert.strictEqual(writeStream.pending, true); 181cb0ef41Sopenharmony_ciwriteStream.on('ready', common.mustCall(() => { 191cb0ef41Sopenharmony_ci assert.strictEqual(writeStream.pending, false); 201cb0ef41Sopenharmony_ci writeStream.end(); 211cb0ef41Sopenharmony_ci})); 22