代码之家  ›  专栏  ›  技术社区  ›  DenCowboy

如何从纽曼那里捕获responsebody

  •  0
  • DenCowboy  · 技术社区  · 6 年前

                const newman = require('newman'); 
                newman.run({
                    collection: require('./xxx.json'),
                    iterationData: './data.jsp',
                    reporters: 'cli'
                }, function (err, summary) {
                    if (err) { throw err; }
                    console.log('collection run complete!');
                    console.log(summary);
                });
    

    我使用上面的代码。它工作正常,但我想在这里捕获调用的json输出。我怎样才能做到呢?

    1 回复  |  直到 6 年前
        1
  •  2
  •   Alexander Tunick    6 年前

    也许您在检索json响应体时使用了错误的术语。如果只想获取响应体,则需要解析返回的JSON并将其保存到变量中。

    let body = JSON.parse(responseBody)
    console.log(body)
    

    在测试之后,你需要看到响应,你把这两行代码放在这里。

    但就您的情况而言,您可能需要: 1) 回调选项

    const newman = require('newman'); 
                newman.run({
                    collection: require('./xxx.json'),
                    iterationData: './data.jsp',
                    reporters: 'cli'
                }, function (err, summary) {
                    if (err) { throw err; }
                    console.log('collection run complete!');
                    console.log(summary);
                })
    .on('request', function (err, data) {
         // err, data can be used to write to files using the node fs module.
      });
    

    或者更好、更现代的选择:

    let response = await newman.run({
                collection: 'collection',
                environment: 'env',
            })
    .on('request', async function (err, data) {
             // err, data can be used to write to files using the node fs module.
          });
            console.log(response)
    

    我不确定我是否会像预期的那样工作,但至少尝试一下。

        2
  •  0
  •   Jonathan Larouche    5 年前

    回叫函数中的邮递员返回执行摘要。执行后,如果将摘要保存在回调中并返回它。您可以访问请求/响应/标题。

    function runcollection(callback){
       newman.run({
          collection: 'C:\\newman\\PMP Dependency latest collection\\Updated\\TestCollection.postman_collection.json',
          environment: 'C:\\newman\\PMP Dependency latest collection\\Updated\\Test.postman_environment.json',
          iterationCount :1
       },function(error, summary){
          callback(summary)
       });
    }
    
    runcollection(result => {console.log(result.run.executions[0].response.stream.toString())});