l121503258 / har2case

Convert HAR(HTTP Archive) to YAML/JSON testcases for HttpRunner.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

har2case

https://travis-ci.org/HttpRunner/har2case.svg?branch=master https://coveralls.io/repos/github/HttpRunner/har2case/badge.svg?branch=master

Convert HAR(HTTP Archive) to YAML/JSON testcases for HttpRunner.

install

har2case is available on PyPI and can be installed through pip or easy_install.

$ pip install har2case

or

$ easy_install har2case

usage

When har2case is installed, a har2case command should be available in your shell (if you're not using virtualenv—which you should—make sure your python script directory is on your path).

To see har2case version:

$ har2case -V
0.0.6

To see available options, run:

$ har2case -h
usage: main.py [-h] [-V] [--filter FILTER] [--exclude EXCLUDE]
            [--log-level LOG_LEVEL]
            [har_source_file] [output_testset_file]

Convert HAR to YAML/JSON testcases for HttpRunner.

positional arguments:
har_source_file       Specify HAR source file
output_testset_file   Optional. Specify converted YAML/JSON testset file.

optional arguments:
-h, --help            show this help message and exit
-V, --version         show version
--filter FILTER       Specify filter keyword, only url include filter string
                        will be converted.
--exclude EXCLUDE     Specify exclude keyword, url that includes exclude
                        string will be ignored.
--log-level LOG_LEVEL
                        Specify logging level, default is INFO.

examples

In most cases, you can run har2case like this:

$ har2case tests/data/demo.har demo.yml
INFO:root:Generate YAML testset successfully: demo.yml

$ har2case tests/data/demo.har demo.json
INFO:root:Generate JSON testset successfully: demo.json

As you see, the first parameter is HAR source file path, and the second is converted YAML/JSON file path.

The output testset file type is detemined by the suffix of your specified file.

If you only specify HAR source file path, the output testset is in JSON format by default and located in the same folder with source file.

$ har2case tests/data/demo.har
INFO:root:Generate JSON testset successfully: tests/data/demo.json

filter

You can do some filter while conversion, only url that includes filter string will be converted.

$ har2case tests/data/demo.har demo.yml --filter httprunner.top

exclude

You can also set exclude keyword while conversion, url that includes exclude string will be ignored.

$ har2case tests/data/demo.har demo.yml --exclude debugtalk.com

generated testset

Generated YAML testset demo.yml shows like below:

-   config:
        headers:
            User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36
                (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36
        name: testset description
        variables: []
-   test:
        name: /api/v1/Account/Login
        request:
            headers:
                Content-Type: application/json
            json:
                Pwd: '123'
                UserName: test001
                VerCode: ''
            method: POST
            url: https://httprunner.top/api/v1/Account/Login
        validate:
        -   check: status_code
            expect: 200
        -   check: headers.Content-Type
            expect: application/json; charset=utf-8
        -   check: content.IsSuccess
            expect: true
        -   check: content.Code
            expect: 200
        -   check: content.Message
            expect: null

And generated JSON testset demo.json shows like this:

[
    {
        "config": {
            "name": "testset description",
            "variables": [],
            "headers": {
                "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"
            }
        }
    },
    {
        "test": {
            "name": "/api/v1/Account/Login",
            "request": {
                "method": "POST",
                "url": "https://httprunner.top/api/v1/Account/Login",
                "headers": {
                    "Content-Type": "application/json"
                },
                "json": {
                    "UserName": "test001",
                    "Pwd": "123",
                    "VerCode": ""
                }
            },
            "validate": [
                {"check": "status_code", "expect": 200},
                {"check": "headers.Content-Type", "expect": "application/json; charset=utf-8"},
                {"check": "content.IsSuccess", "expect": true},
                {"check": "content.Code", "expect": 200},
                {"check": "content.Message", "expect": null}
            ]
        }
    }
]

About

Convert HAR(HTTP Archive) to YAML/JSON testcases for HttpRunner.

License:MIT License


Languages

Language:Python 100.0%