11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst { Readable } = require('stream'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ci// Verify that .push() and .unshift() can be called from 'data' listeners. 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_cifor (const method of ['push', 'unshift']) { 91cb0ef41Sopenharmony_ci const r = new Readable({ read() {} }); 101cb0ef41Sopenharmony_ci r.once('data', common.mustCall((chunk) => { 111cb0ef41Sopenharmony_ci assert.strictEqual(r.readableLength, 0); 121cb0ef41Sopenharmony_ci r[method](chunk); 131cb0ef41Sopenharmony_ci assert.strictEqual(r.readableLength, chunk.length); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ci r.on('data', common.mustCall((chunk) => { 161cb0ef41Sopenharmony_ci assert.strictEqual(chunk.toString(), 'Hello, world'); 171cb0ef41Sopenharmony_ci })); 181cb0ef41Sopenharmony_ci })); 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ci r.push('Hello, world'); 211cb0ef41Sopenharmony_ci} 22