码迷,mamicode.com
首页 > 其他好文 > 详细

Postman的使用

时间:2016-01-09 16:51:01      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

Postman功能https://www.getpostman.com/features

  • 主要用于模拟网络请求包
  • 快速创建请求
  • 回放、管理请求
  • 快速设置网络代理

安装:

  •   直接点击谷歌浏览器左上角的标志:技术分享,然后点击google网上应用商店技术分享
  •   再出来页面的搜索框里面直接搜索“Postman”,添加就可以了。

使用:

  •   Postman的使用简单明了,在地址栏输入你要测试的接口,设定好参数,直接提交就可以了。支持各种访问方式:post,get,delete,put等。

管理请求

  •   postman左边框里有一个collection的选项,利用它你可以保存你的测试操作,形成一个体系,甚至可以将这些配置导出用于大规模的测试,这块后面有介绍
  •   后期在使用时,仅需要在此Collections中找到对应的请求名,即可直接使用请求

环境变量

  •   选择“Manage Environments--Add”,在页面中设置环境信息,比如,添加一个环境变量:key--url  ,value--http://www.baidu.com
  •   环境变量的使用很简单,,就用我上面添加的,直接使用{{url}},使用过AngularJS的一定对这种用法不陌生吧!
  •   我们可以直接在url的位置输入{{url}},然后send,会发现跟我们直接在url上输入http://www.baidu.com上没什么区别
  •   可以设置多个不同的环境变量进行切换

postman结合newman

  • 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的使用

标签:

原文地址:http://www.cnblogs.com/a14907/p/5116534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!