���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/parallel/ |
'use strict'; require('../common'); const stream = require('stream'); const assert = require('assert'); const repl = require('repl'); let output = ''; const inputStream = new stream.PassThrough(); const outputStream = new stream.PassThrough(); outputStream.on('data', function(d) { output += d; }); const r = repl.start({ input: inputStream, output: outputStream, terminal: true }); r.defineCommand('say1', { help: 'help for say1', action: function(thing) { output = ''; this.output.write(`hello ${thing}\n`); this.displayPrompt(); } }); r.defineCommand('say2', function() { output = ''; this.output.write('hello from say2\n'); this.displayPrompt(); }); inputStream.write('.help\n'); assert(/\n\.say1 help for say1\n/.test(output), 'help for say1 not present'); assert(/\n\.say2\n/.test(output), 'help for say2 not present'); inputStream.write('.say1 node developer\n'); assert.ok(output.startsWith('hello node developer\n'), `say1 output starts incorrectly: "${output}"`); assert.ok(output.includes('> '), `say1 output does not include prompt: "${output}"`); inputStream.write('.say2 node developer\n'); assert.ok(output.startsWith('hello from say2\n'), `say2 output starts incorrectly: "${output}"`); assert.ok(output.includes('> '), `say2 output does not include prompt: "${output}"`);