Allure2 报告中添加附件(视频)应用场景
- 应用场景:在做 UI 自动化测试时,可以将页面截图,或者出错的页面进行截图,将截图添加到测试报告中展示,辅助定位问题。
- 解决方案:
- Python:使用
allure.attach.file()
添加视频。 - Java:直接通过注解或调用方法添加。
- Python:使用
Allure2 报告中添加视频附件 - Python
- 语法:
allure.attach.file(source, name, attachment_type, extension)
,参数解释:- source:文件路径,相当于传一个文件。
- name:附件名字。
- attachment_type:附件类型,是
allure.attachment_type
其中的一种。 - extension:附件的扩展名。
"""
@Author: 霍格沃兹测试开发学社-西西
@Desc: 更多测试开发技术探讨,请访问:https://ceshiren.com/t/topic/15860
"""
import allure
class TestWithAttach:
def test_video(self):
allure.attach.file("xxx.mp4",
name="视频",
attachment_type=allure.attachment_type.MP4,
extension="mp4")
Allure2 报告中添加视频附件 - Java
Allure 支持两种方法:
-
注解方式添加。
-
调用方法添加。
注解方式 - Java
- 注解方式直接传入视频。
@Attachment(value = "视频名", type = "video/mp4", fileExtension = "后缀")
调用方法添加 - Java
- 使用Allure方法传入视频。
Allure.addAttachment("视频名", "video/mp4",
视频路径, "后缀");
实战
package com.junit5.allure2report_addattachment_l3.addvideo;
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.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
@DisplayName("allure2报告中添加视频")
public class Mp4Test {
@Test
@DisplayName("注解方式上传视频")
public void testMp4WithAn() throws IOException {
byte[] contents = Files.newInputStream(Paths.get("allure2.mp4")).readAllBytes();
attachMp4WithByte(contents,"allure报告录制");
}
@Attachment(value = "{mp4Name}",type = "video/mp4")
byte[] attachMp4WithByte(byte[] contents,String mp4Name){
System.out.println("mp4Name:"+mp4Name);
return contents;
}
@Test
@DisplayName("方法方式上传视频")
public void testMp4wWithMethod() throws IOException {
Allure.addAttachment("mp4方法","video/mp4",
Files.newInputStream(Paths.get("allure2.mp4")),
"mp4");
}
}
/**
* 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")
*/