• Postman-CI集成Jenkins(3)

  • Newman
    • 官方说明:Postman's command-line companion lets you do amazing things! With Newman, you can integrate Postman collections with your build system. Or you can run automated tests for your API through a cron job.
    • 概述:集成Postman的API测试命令行执行工具
    • 首页:https://www.npmjs.com/package/newman
    • 基于Node.js,可安装在Linux/Windows/Mac
    • 安装命令:
      npm install -g newman
    • 验证安装是否成功
    • newman -V

      出现版本号,则安装成功

    • 运行方式,执行Postman导出的Collection文件
    • newman -c *.json.postman_collection
  • Newman命令行操作
    • 执行指定的Collection文件
    • newman -c *.json.postman_collection
    • 执行指点定的Collection文件及Environment文件
    • newman -c *.json.postman_collection -e *.postman_environment
    • 执行保存到服务器上的Collection
    • newman -u https://www.getpostman.com/collections/cb208e7e64056f5294e5
    • 循环执行Collection文件5次
    • newman -u https://www.getpostman.com/collections/cb208e7e64056f5294e5 -n 5
    • 详细的newman命令用法
    •   Usage: newman [options]
      
        Options:
      
          -h, --help                      output usage information
      -V, --version output the version number
      -c, --collection [file] Specify a Postman collection as a JSON [file]
      -u, --url [url] Specify a Postman collection as a [url]
      -f, --folder [folder-name] Run a single folder from a collection. To be used with -c or -u
      -e, --environment [file] Specify a Postman environment as a JSON [file]
      -E, --exportEnvironment [file] Specify an output file to dump the Postman environment before exiting [file]
      -d, --data [file] Specify a data file to use either json or csv
      -g, --global [file] Specify a Postman globals file [file]
      -G, --exportGlobals [file] Specify an output file to dump Globals before exiting [file]
      -y, --delay [number] Specify a delay (in ms) between requests
      -r, --requestTimeout [number] Specify a request timeout (in ms) for requests
      -R, --avoidRedirects Prevents Newman from automatically following redirects
      -s, --stopOnError Stops the runner with code=1 when a test case fails
      -j, --noSummary Doesn't show the summary for each iteration
      -n, --number [number] Define the number of iterations to run
      -C, --noColor Disable colored output
      -k, --insecure Disable strict ssl
      -l, --tls Use TLSv1
      -N, --encoding [encoding-type] Specify an encoding for the response. Supported values are ascii,utf8,utf16le,ucs2,base64,binary,hex
      -x, --exitCode Continue running tests even after a failure, but exit with code=1. Incompatible with --stopOnError
      -o, --outputFile [file] Path to file where output should be written [file]
      -O, --outputFileVerbose [file] Path to file where full request and responses should be logged [file]
      -t, --testReportFile [file] Path to file where results should be written as JUnit XML [file]
      -i, --import [file] Import a Postman backup file, and save collections, environments, and globals [file] (Incompatible with any option except pretty)
      -p, --pretty Enable pretty-print while saving imported collections, environments, and globals
      -H, --html [file] Export a HTML report to a specified file [file]
      -W, --whiteScreen Black text for white screen
      -L, --recurseLimit [limit] Do not run recursive resolution more than [limit] times. Default = 10. Using 0 will prevent any varialbe resolution Newman is a command-line collection runner for Postman. You must specify a collection file or a collection URL to run newman A collection file or URL is mandatory
      Examples: newman -c POSTMAN_COLLECTION
      newman -u POSTMAN_COLLECTION -e POSTMAN_ENVIRONMENT
      newman -c POSTMAN_COLLECTION -f SAMPLE_FOLDER For more documentation, issues and examples head over to https://github.com/postmanlabs/newman
  • Jenkins集成
    • 既然Newman支持命令行运行,那么集成Jenkins就很简单。在Jenkins的Job中添加command line,内容如下:
    • newman -c *.json.postman_collection --exitCode 1

Postman-CI集成Jenkins(3)的更多相关文章

  1. Jenkins+Git+Fastlane+Fir CI集成

    上一篇有讲关于fastlane自动化部署,本篇将会着重讲关于fastlane的实际应用. 目标: 利用自动化jenkins打包工具,自动拉取git仓库代码 不需要通过手动检查修改xcode中项目配置修 ...

  2. Postman-CI集成Jenkins

    Postman-简单使用 Postman-进阶使用 Postman-CI集成Jenkins Newman 官方说明:Postman's command-line companion lets you ...

  3. 这些年我们一起搞过的持续集成~Jenkins+Perl and Shell script

    这些年我们一起搞过的持续集成~Jenkins+Perl and Shell script ##转载注明出处:http://www.cnblogs.com/wade-xu/p/4378224.html ...

  4. CI集成 mesos 资源分配的思考, 待续

    读了mesos的论文(https://people.eecs.berkeley.edu/~alig/papers/mesos.pdf ),感觉应用在 CI 上的资源管理很赞,能够解决 jenkins在 ...

  5. iOS可持续化集成: Jenkins + bundler + cocoapods + shenzhen + fastlane + pgyer

    工具介绍 1. bundler bundler用于管理ruby gem的工具,我们用来管理cocoapods以及fastlane的版本.直接sudo gem install bundler就可以.然后 ...

  6. 持续集成~Jenkins构建dotnetCore的项目

    上周一个大件就是dotnet core2.0发布了,伴随着.NET Standard2.0也发布了,整个微软的生态环境大好,当然也有一个BUG出来了,比如EFCore对Mysql的支持比起1.1来说, ...

  7. 持续集成~Jenkins构建GitHub项目的实现

    有了前两讲的基础,这回我们就可以把github上的项目做到CI(jenkins)里了,让它自动去集成部署,持续集成~Jenkins里的NuGet和MSBuild插件,持续集成~Jenkins里的pow ...

  8. 星云测试插装编译流程与CI集成

    星云测试Horn插装采用脚本配置方式自动对语法进行扫描和插装,在整个插装过程中需要用到星云提供的插件工具.通过与CI集成,在CI编译前通过jenkins调用星云插装插件模块进行必要的数据填充,生成对应 ...

  9. CI/CD/Jenkins

    Continuous Integration, Continuous Delivery & Deployment (CI/CD) 持续集成.持续部署&持续交付. Jenkins就是一个 ...

随机推荐

  1. Js 数据类型 Number()转型函数

    alert(Number(true)); //转换为1,如果为false为0 alert(Number()); //25,数值型直接返回 alert(Number(null)); //0,空对象返回0 ...

  2. Jmeter入门5 关联 响应数据传递-正则表达式提取器

    在测试过程中,遇到一个问题:用户登录成功后服务器会返回一个登录凭证,之后所有的操作都需要带上此凭证.我们怎么获取登录凭证并传递给后续的操作? Jmeter提供了正则表达式提取器,用变量提取参数,后续通 ...

  3. 画X,模拟水题

    题目链接:http://codeforces.com/contest/404/problem/A #include <stdio.h> #include <string.h> ...

  4. 起一个node服务

    使用node开发一个应用,非常简单,甚至都不用去配置一堆文件来启动一个webu服务器,直接去官网把这一段示例代码拷过来 https://nodejs.org/en/about/ 中文网没有这个abou ...

  5. php中的脚本加速扩展opcache

    今儿在azure里装php5.5.4,发现原先php5.4.php5.3中的zend guard laoder以及php5.2中的Zend Optimizer均不能再用,一直很喜欢用的eacceler ...

  6. 2018.8.3 Java中容易犯错误的问题思考与总结

    Java容易犯错误的问题思考 float型 float f = 3.4 是否正确 不正确,应该用强制类型转换.如下所示:float f = (float)3.4 或float f = 3.4f 在ja ...

  7. 激活SQLPrompt7.4及以上版本

    SQLPrompt是个很好的sql server提示工具,SQL-SERVER2016只能使用SQLPrompt7.x 以上版本,用激活工具激活后没多久就会检测到激活码不可用.所以感觉是不是有个服务在 ...

  8. CSS-DOM

    在所有的产品设计中,选择最适用的工具去解决问题是最基本的原则. ①使用(X)HTML去搭建文档的结构. ②使用CSS 去设置文档的呈现效果. ③使用DOM脚本去实现文档的行为. 文档中的每个元素都是一 ...

  9. Q&A - 如何获取ip地址所在地

    获取其IP地址后,传入以下URL,并请求该URL,该请求会响应一个JSON格式的数据包,该IP地址的所在地均在这个数据包内   http://int.dpool.sina.com.cn/iplooku ...

  10. scrapy--json(喜马拉雅Fm)

    已经开始听喜马拉雅Fm电台有2个月,听里面的故事,感觉能听到自己,特别是蕊希电台,始于声音,陷于故事,忠于总结.感谢喜马拉雅Fm陪我度过了这2个月,应该是太爱了,然后就开始对Fm下手了.QAQ 该博客 ...