写点什么

软件测试学习笔记丨 Allure2 报告中添加附件 -html

作者:测试人
  • 2024-07-10
    北京
  • 本文字数:1759 字

    阅读完需:约 6 分钟

本文转自测试人社区,原文链接:https://ceshiren.com/t/topic/28366

Allure2 报告中添加附件(html)应用场景

  • 应用场景:可以定制测试报告页面效果,可以将 HTML 类型的附件显示在报告页面上。

  • 解决方案:

Python:使用 allure.attach() 添加 html 代码。

Java:直接通过注解或调用方法添加

Allure2 报告中添加附件(html)- Python

  • 语法:allure.attach(body, name, attachment_type, extension),参数解释:

body:要写入附件的内容(HTML 代码块)。

name:附件名字。

attachment_type:附件类型,是 allure.attachment_type 其中的一种。

extension:附件的扩展名。

class TestWithAttach:    def test_html(self):        allure.attach('<head></head><body> a page </body>',                      '附件是HTML类型',                      allure.attachment_type.HTML)                          def test_html_part(self):        allure.attach('''html代码块''',                      '附件是HTML类型',                      allure.attachment_type.HTML)
复制代码

Allure2 报告中添加附件(html) - Java

Allure 支持两种方法:

  • 注解方式添加

  • 调用方法添加

注解方式 - Java

  • 直接传入 html 文件。

  • @Attachment(value = “html 名”, type = “text/html”, fileExtension = “后缀”)

调用方法添加 - Java

  • 使用 Allure 方法传入 html。

  • Allure.addAttachment(“html 名”, “text/html”,图片路径, “后缀”);

实例

package com.junit5.allure2report_addattachment_l3.addhtml;
import io.qameta.allure.Allure;import io.qameta.allure.Attachment;import org.junit.jupiter.api.DisplayName;import org.junit.jupiter.api.Test;
import java.io.*;import java.nio.file.Files;import java.nio.file.Paths;
@DisplayName("Allure2测试报告添加html")public class HtmlTest { /** * 注解:String类型 */ @Test @DisplayName("html注解:注解形式添加") public void testAddHtmlForStringWithAn() throws IOException { File file = new File("allure2.html");// BufferedReader bufferedReader = new BufferedReader(new FileReader(file)); BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(new FileInputStream(file),"UTF-8")); StringBuffer stringBuffer = new StringBuffer(); String line; while ((line=bufferedReader.readLine())!=null){ stringBuffer.append(new String(line.getBytes(), "GBK")); stringBuffer.append(System.lineSeparator()); } attachTextFileWithString(stringBuffer.toString(),"百度首页注解"); }
@Attachment(value = "htmlName",type = "text/html") String attachTextFileWithString(String contents,String htmlName){ System.out.println("htmlName:"+htmlName); return contents; }


@Test @DisplayName("Html:调用方法添加") public void testAddHtmlForStreamWithMethod() throws IOException { Allure.addAttachment("stream流添加html", "text/html", Files.newInputStream(Paths.get("allure2.html")), "html"); }
}/** * TEXT = ("text/plain", "txt") * CSV = ("text/csv", "csv") * TSV = ("text/tab-separated-values", "tsv") * URI_LIST = ("text/uri-list", "uri") * * HTML = ("text/html", "html") * XML = ("application/xml", "xml") * JSON = ("application/json", "json") * YAML = ("application/yaml", "yaml") * PCAP = ("application/vnd.tcpdump.pcap", "pcap") * * PNG = ("image/png", "png") * JPG = ("image/jpg", "jpg") * SVG = ("image/svg-xml", "svg") * GIF = ("image/gif", "gif") * BMP = ("image/bmp", "bmp") * TIFF = ("image/tiff", "tiff") * * MP4 = ("video/mp4", "mp4") * OGG = ("video/ogg", "ogg") * WEBM = ("video/webm", "webm") * * PDF = ("application/pdf", "pdf") */
复制代码




软件测试开发免费视频教程分享


发布于: 刚刚阅读数: 4
用户头像

测试人

关注

专注于软件测试开发 2022-08-29 加入

霍格沃兹测试开发学社,测试人社区:https://ceshiren.com/t/topic/22284

评论

发布
暂无评论
软件测试学习笔记丨Allure2报告中添加附件-html_软件测试_测试人_InfoQ写作社区