51Testing软件测试论坛

标题: 如何在WEB自动化中编写Cypress 测试报告? [打印本页]

作者: 海鸥一飞    时间: 2022-10-8 13:55
标题: 如何在WEB自动化中编写Cypress 测试报告?
测试报告
    一份好的测试报告,可以很直观的看出整个测试过程的各种数据。而Cypress的测试报告是基于Mocha,因此任何支持Mocha的测试报告都可以应用于Cypress。但实际上,Cypress默认使用spec输出测试报告。如果不想使用自带的测试报告,也可以添加第三方的测试报告模板自定义的测试报告模板
1 自带的测试报告
    自带的测试报告包括Mocha自带的测试报告和直接嵌入在Cypress中的测试报告。主要如下所示:
1.1 spec格式
    spec是Mocha自带的测试报告,输出是一个嵌套样式的分组视图,其使用方法也非常简单,在命令行模式中按以下输入即可:
  1. <font size="3">cypress run --spec "cypress\integration\4-Surpass-API-Test*.js" --reporter=spec
  2. </font>
复制代码
运行结果如下所示:
[attach]143608[/attach]

1.2 json格式
    json格式的测试报告是将测试报告的输出格式调整为JSON对象。其使用方法也非常简单,在命令行模式中按以下输入即可:
  1. <font size="3">cypress run --spec "cypress\integration\4-Surpass-API-Test*.js" --reporter=json
  2. </font>
复制代码
运行结果如下所示:
[attach]143609[/attach]

1.3 junit格式
    json格式的测试报告是将测试报告的输出格式调整为XML文件。其使用方法也非常简单,在命令行模式中按以下输入即可:
  1. <font size="3">cypress run --spec "cypress\integration\4-Surpass-API-Test*.js" --reporter=junit
  2. </font>
复制代码
运行结果如下所示:
测试运行完成后,会在工程的根目录中生成test-results.xml
2 自定义测试报告
    如果内置的测试报告不能满足要求,也可以自定义测试报告。若是用户自定义的Mocha报告,可以通过相对路径或绝对路径进行加载,具体可在cypress.json或命令行中配置。
2.1 自写测试报告模板
    具体配置如下所示:
  1. <font size="3">> surpass-project
  2.   > cypress
  3.   > reporters
  4.     - custom.js
  5. </font>
复制代码
  1. <font size="3">{
  2.   "reporter": "reporters/custom.js"
  3. }
  4. </font>
复制代码

  1. <font size="3">cypress run --reporter reporters/custom.js
  2. </font>
复制代码
2.2 安装第三方插件
    我们以官方提供的mochawesome为例,其操作步骤如下所示:
  1. <font size="3">npm install mochawesome --save-dev
  2. </font>
复制代码
安装的时候,需要注意系统是否有写入权限和工程所在目录
  1. <font size="3">cypress run --spec "cypress\integration\4-Surpass-API-Test\01-test-api-get.spec.js" --reporter=mochawesome
  2. </font>
复制代码
运行结果如下所示:
[attach]143610[/attach]

3 生成混合报告
    在每次启动一个测试时,都会生成一份测试报告,所以在每次运行cypress run完成后,都会覆盖前一次运行所生成的测试报告。为避免这种情况,可以在生成测试报告文件时,使用hash码。示意配置文件如下所示:
  1. <font size="3">{
  2.   "reporter": "junit",
  3.   "reporterOptions": {
  4.      "mochaFile": "results/my-test-output-[hash].xml"
  5.   }
  6. }
  7. </font>
复制代码

  1. <font size="3">cypress run --reporter junit --reporter-options "mochaFile=results/my-test-output-[hash].xml"
  2. </font>
复制代码
但在很多情况下,我们希望一次生成多种类型的报告,比如在一次运行时,同时生成junit和json的报告。针对这种情况,Cypress提供了一个插件cypress-multi-reporters,用于生成混合报告。该插件的网址为:https://github.com/you54f/cypress-multi-reporters,其操作步骤如下所示:
  1. <font size="3">npm install --save-dev cypress-multi-reporters mocha-junit-reporter
  2. </font>
复制代码
3.1 spec输出到Console同时保存junit风格的XML文件
  1. <font size="3">{
  2.   "reporter": "cypress-multi-reporters",
  3.   "reporterOptions": {
  4.     "configFile": "merge-reporter-config.json"
  5.   }
  6. }
  7. </font>
复制代码
  1. <font size="3">cypress run --reporter cypress-multi-reporters --reporter-options configFile=merge-reporter-config.json
  2. </font>
复制代码
  1. <font size="3">{
  2.   "reporterEnabled": "spec, mocha-junit-reporter",
  3.   "mochaJunitReporterReporterOptions": {
  4.     "mochaFile": "cypress/results/results-[hash].xml"
  5.   }
  6. }
  7. </font>
复制代码
以上配置,表示同时允许生成spec和junit格式的报告
  1. <font size="3">cypress run --spec "cypress\integration\4-Surpass-API-Test\*.js" --reporter cypress-multi-reporters  --reporter-options configFile=merge-reporter-config.json
  2. </font>
复制代码

运行结果如下所示:
[attach]143617[/attach]
因为在文件名添加了Hash码,所以每次执行测试完成后生成的报告文件不会相互覆盖。但还是建议每次启动测试删除所有的测试报告文件。可以按以下方法进行配置
  1. <font size="3">"scripts": {
  2.     "deletereports": "del /q \"cypress\\results\\*\" ", // 这里取决于配置的操作系统,Windows中使用del删除文件,在Linux中使用rm删除文件
  3.     "prereport": "npm run deletereports",
  4.     "report": "cypress run --spec \"cypress\\integration\\4-Surpass-API-Test\\*.js\" --reporter cypress-multi-reporters  --reporter-options configFile=merge-reporter-config.json"
  5.   }
  6. </font>
复制代码
使用npm安装junit-report-merger
  1. <font size="3">npm install junit-report-merger --save-dev
  2. </font>
复制代码
修改配置内容,如下所示:
  1. <font size="3">"scripts": {
  2.     "deletereports": "del /q \"cypress\\results\\*\"",
  3.                 "combinereports": "jrm cypress\\results\\combined-report.xml \"cypress\\results\\*.xml\"",
  4.                 "prereport": "npm run deletereports",
  5.                 "report": "cypress run --spec \"cypress\\integration\\4-Surpass-API-Test\\*.js\" --reporter cypress-multi-reporters  --reporter-options configFile=merge-reporter-config.json",
  6.                 "postreport": "npm run combinereports"
  7.   }
  8. </font>
复制代码

运行合并命令
  1. <font size="3">npm run postreport
  2. </font>
复制代码
3.2 spec输出到Console并使用Mochawesome合并JSON文件
    该操作步骤如下所示:
  1. <font size="3">npm install --save-dev mochawesome mochawesome-merge mochawesome-report-generator
  2. </font>
复制代码
添加配置文件,内容如下所示:
  1. <font size="3">{
  2.   "reporter": "mochawesome",
  3.   "reporterOptions": {
  4.     "reportDir": "cypress/results",
  5.     "overwrite": false,
  6.     "html": false,
  7.     "json": true
  8.   }
  9. }
  10. </font>
复制代码

命令行中运行
  1. <font size="3">cypress run --spec "cypress\integration\4-Surpass-API-Test\*.js" --reporter mochawesome  --reporter-options configFile=merge-mochawesome.json,reportDir="cypress/results",overwrite=false,html=false,json=true
  2. </font>
复制代码
在运行完成后,仅会生成json文件,如下所示:

合并json文件,如下所示:
  1. <font size="3">npx mochawesome-merge "cypress/results/*.json" > merge-test-mochawesome.json</font>
复制代码


再生成最终的报告
  1. <font size="3">npx marge merge-test-mochawesome.json</font>
复制代码
C:\Users\admin\Documents\CypressProjects\mochawesome-report\merge-test-mochawesome.html



打开报告,如下所示:
[attach]143618[/attach]

4 生成报告参数
    在生成测试报告时,部分reporter支持设定一些参数选项,从而改变其行为。可以通过配置文件(cypress.json)或命令行中指定。以junit为例,如下所示:

并不是所有reporter都支持该参数选项,具体情况,可查阅相关文档。

通过配置文件

  1. <font size="3">{
  2.   "reporter": "junit",
  3.   "reporterOptions": {
  4.     "mochaFile": "results/surpass-test.xml",
  5.     "toConsole": true
  6.   }
  7. }
  8. </font>
复制代码
通过命令行
  1. <font size="3">cypress run --reporter junit --reporter-options "mochaFile=results/surpass-test.xml,toConsole=true"
  2. </font>
复制代码
9.5 与Allure集成
9.5.1 Alluer安装与配置
    Allure是一款使用非常用于展示测试报告的工具,我们来看看如何与Cypress进行集成。插件帮助文档地址:https://github.com/Shelex/cypress-allure-plugin,具体操作步骤如下所示:

1、安装Allure
    安装的过程在此略过,如需查看详情,可以转至https://www.cnblogs.com/surpassme/p/15491632.html

2、安装Cypress Allure插件
  1. <font size="3">npm install @shelex/cypress-allure-plugin --save-dev
  2. </font>
复制代码
3、Cypress添加引用插件
    在cypress/plugins/index.js中添加以下内容,用以引用插件:
  1. <font size="3">// 仅做为插件引用
  2. // 引用allure
  3. const allureWriter = require('@shelex/cypress-allure-plugin/writer');

  4. // 加载模块
  5. module.exports = (on, config) => {
  6.   allureWriter(on, config);
  7.   return config;
  8. };
  9. </font>
复制代码
cypress/support/index.js中添加以下内容,用以注册
  1. <font size="3">// 使用import
  2. import '@shelex/cypress-allure-plugin';
  3. // 使用require
  4. require('@shelex/cypress-allure-plugin');
  5. </font>
复制代码
4、Cypress添加代码智能提示
    在cypress/plugins/index.js中添加以下内容,用以添加代码智能提示:

  1. <font size="3">// 添加代码智能化提示
  2. /// <reference types="@shelex/cypress-allure-plugin" /></font>
复制代码


    也可以在tsconfig.json中添加以下内容,用以添加代码智能提示:

  1. <font size="3">"include": [
  2.    "../node_modules/@shelex/cypress-allure-plugin/reporter",
  3.    "../node_modules/cypress"
  4. ]</font>
复制代码


5.2 Alluer参数与使用
    在Cypress中,Allure与Cypress环境变量一样,也是支持自定义的,如下所示:

[attach]143603[/attach]
cypress.json的配置如下所示:
  1. <font size="3">{
  2.     "env": {
  3.         "allureResultsPath": "allure/results",
  4.         "allureAttachRequests":true
  5.     }
  6. }
  7.   </font>
复制代码



  命令行运行时的配置如下所示:

  1. <font size="3">cypress run --env allure=true,allureResultsPath=allure/results</font>
复制代码


5.3 生成与查看报告
1、生成报告,命令如下所示:
  1. <font size="3">cypress run --spec cypress\integration\4-Surpass-API-Test\*.js --env allure=true,allureResultPath=allure/results</font>
复制代码


2、查看报告,命令如下所示:
  1. <font size="3">allure serve allure\results</font>
复制代码


    最终运行的结果如下所示:

[attach]143605[/attach]
Cypress官方有很多插件,包括官方和三方,且有详细使用说明文档,非常优秀,地址为:https://docs.cypress.io/plugins/directory






欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2