软件测试

HttpRunner+yaml+Python

2020-03-27  本文已影响0人  6ada42df4c4a

HttpRunner 是一款面向 HTTP(S) 协议的通用测试框架,只需编写维护一份 YAML/JSON 脚本,即可实现自动化测试

录制生成测试用例

为了简化测试用例的编写工作,HttpRunner 实现了测试用例生成的功能。
首先,需要将抓包工具抓取得到的数据包导出为 HAR 格式的文件,假设导出的文件名称为 demo-quickstart.har
然后,在命令行终端中运行如下命令,即可将 demo-quickstart.har 转换为 HttpRunner 的测试用例文件。

$ har2case docs/data/demo-quickstart.har -2y
INFO:root:Start to generate testcase.
INFO:root:dump testcase to YAML format.
INFO:root:Generate YAML testcase successfully: docs/data/demo-quickstart.yml

在项目中是不会通过录制来生成测试用例的,下面就来看看在项目中HttpRunner架构是如何使用的

项目文件组织

在 HttpRunner 自动化测试项目中,主要存在如下几类文件:

测试用例组织

HttpRunner 的测试用例支持两种文件格式:YAML 和 JSON。
JSON 和 YAML 格式的测试用例完全等价,包含的信息内容也完全相同。
我们项目中选择的是YAML格式,以下都以YAML为例


image.png

在 HttpRunner 中,测试用例组织主要基于三个概念:

测试用例如何实现?

HttpRuner采用了测试用例分层模型

概括来说,测试用例分层机制的核心是将接口定义、测试步骤、测试用例、测试场景进行分离,单独进行描述和维护,从而尽可能地减少自动化测试用例的维护成本。


image.png
先定义接口

先定义接口,每个文件对应一个接口描述,接口定义描述的主要内容包括:name、variables、request、base_url、validate 等,形式如下:

name: get headers
base_url: http://httpbin.org
variables:
    expected_status_code: 200
request:
    url: /headers
    method: GET
validate:
    - eq: ["status_code", $expected_status_code]
    - eq: [content.headers.Host, "httpbin.org"]
其次再写testcase

引用接口定义写testcase,有了接口的定义描述后,我们编写测试场景时就可以直接引用接口定义了。

一般testcase 包含如下内容:

- config:
    name: _demo_test
    variables:
        sg_name: sgroup_test
        sg_title: sg_test
    setup_hooks:
        - ${cleanup_sg($sg_name)}
- test:
    name: "demo test case description"
    api: api/demo_api.yml
    variables:
        api_ag_name: $sg_name
        api_ag_title: $sg_title
        api_ag_desc: $sg_desc
        api_ag_owner: $sg_owner
    extract:
        - sg_id_1: json.data.demo_api.id
    validate:
        - "eq": ["status_code", 200]
        - "response_errors": ["json", False]
        - "eq": ["json.data.demo_api.desc", $sg_desc]

执行测试用例

hrun testcases\demo_test.yml

执行结果

image.png
上一篇下一篇

猜你喜欢

热点阅读