命令行运行postman

1.安装Cmd工具,使命令敲起来更顺畅:cmdr(百度,一直下一步安装)

2.安装nodejs(百度,一直下一步安装,查看版本:node --version)

3.安装cnpm(npm install -g cnpm --registry=https://registry.npm.taobao.org)

4.校验npm是否安装成功:npm --version

5.安装newman: cnpm install newman --global

6.校验newman是否安装成功:newman --version

然后导出collections跟environment文件

切到collections跟environment文件所在目录

在cmdr工具中输入命令:

newman -c test1.postman_collection.json -e test2.postman_environment.json -H html

-c:后面接的是完整的collection名

-e:后面接的是完整的environment命

-H:表示生成HTML格式的报告

Jenkins 结合

  平时做接口自动化,避免不了最后通过Jenkins做构建。既然Newman提供了控制台命令执行方式,那么像通过Jenkins来构建也就容易多了。
步骤一:在Jenkins 机器上安装Newman
步骤二:搭建Jenkins环境,并新建个自由风格的Job
步骤三:构建选择Execute Windows batch command,并输入newman 运行命令

步骤四:因为上面命令中构建会生成junit的xml报告,所以可以在构建后用Publish JUnit test result report 插件来生成测试报告。

其他参考资料:

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

原文地址:http://blog.51cto.com/10672221/2055399

时间: 2024-10-26 22:29:49

命令行运行postman的相关文章

从命令行运行postman脚本

为什么要在命令行中运行 可以在无UI界面的服务器上运行 可以在持续集成系统上运行 运行准备 导出collection 安装nodejs和npm(或cnpm) 安装Newman 运行及生成测试报告支持4中格式: ①CLIreporter ②JSON reporter ③HTML reporter ④JUnit reporter nodejs下载地址: https://nodejs.org/en/ 安装Newman: 原文地址:https://www.cnblogs.com/henanleon/p/

命令行运行postman脚本

导出collection 1.首先,把相应的接口导出,导成json文件 2.导出后的文件 安装Newman 1.安装Newman:npm install newman --global (注意:①global签名是两个短横线 ②如果没有npm命令,先安装npm命令) 2.确认是否安装成功:newman -v 运行脚本 1.将导出后的collection的json文件和数据驱动json文件放在同一目录下 2.切换到这个目录下,执行命令 3. newman run XXX.postman_colle

Beginning Python From Novice to Professional (2) - 命令行运行Python脚本

命令行运行Python脚本 Linux下先创建一个hello.py [python] view plaincopy $ gedit hello.py 输入: [python] view plaincopy #!/usr/bin/env python print 2+2 保存退出,运行: [python] view plaincopy $ python hello.py 4 我们也可以让它变得和普通程序一样执行 执行之前,让脚本文件具备可执行属性: [python] view plaincopy

从命令行运行django数据库操作

从命令行运行django数据库操作,报错: django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before

UIAutomation: 通过命令行运行测试用例

为了实现自动定时的运行脚本,我们需要在命令行运行和启动脚本,具体代码如下: instruments -t /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate <full_path_to_application> -e UIASCRIPT <p

Java命令行运行参数说明大全(偷来的)

Java在运行已编译完成的类时,是通过java虚拟机来装载和执行的,java虚拟机通过操作系统命令JAVA_HOME"bin"java –option 来启动,-option为虚拟机参数,JAVA_HOME为JDK安装路径,通过这些参数可对虚拟机的运行状态进行调整,掌握参数的含义可对虚拟机的运行模式有更深入理解. 一.         查看参数列表:虚拟机参数分为基本和扩展两类,在命令行中输入JAVA_HOME"bin"java 就可得到基本参数列表,在命令行输入J

命令行运行Android Robotium自动化用例或单元测试用例

本文目录 1.运行所有的测试用例 2.运行单个测试类或某个TestSuite 3.运行某个测试类里面的某个测试方法 4.运行两个不同的测试类或类中的方法 命令行运行Android Robotium自动化用例或单元测试用例 1.运行所有的测试用例 举个栗子:运行测试工程下的所有用例 1 adb shell am instrument -w com.taobao.taobao.test/android.test.InstrumentationTestRunner 2.运行单个测试类或某个TestSu

使用命令行运行Java程序

我现在身边有好多人在学习java,只要一提到学习java语言,我们马上想到的工具是eclipse,MyEclipse,NetBeans等等. 也许是我们用惯了vc,对集成开发环境有太多的依赖.但是,我个人觉得,对于一个开发人员有必要熟悉各种开发工具,更要尝试最原始的开发工具,即命令行. 同时我还发现用命令行更对java的语法有更深刻的理解,而不是仅仅停留在背诵记忆的层次上. 我们先介绍一下常用的命令: ①cd命令---切换目录:   e.g. cd src ②javac命令---编译java源程

java要在命令行运行eclipse的项目的方法

在命令行运行eclipse的项目时需要把该项目生成一个可以执行的jar包,才可以在命令行下执行:分为两种情况,一种是项目中没有调用第三方的jar包,这种比较简单,网上的资源也很多,本文主要讲述第二中情况该项目调用了第三方的jar包,生成该包有两种方法: 方法一:手动生成一个"MANIFEST.MF"的文件 而且还需要写一些文件路劲什么的信息:太过于复杂,而且极容易出错,如果有兴趣请参考博客:http://www.cnblogs.com/lanxuezaipiao/p/3291641.h