我正在尝试各种方法在Allure Report插件中使用Protractor嵌入测试运行视频。 如果我们在Allure Report文件夹中添加视频文件夹并在引诱描述中添加视频路径,我们就可以这样做。所以Allure会在描述部分显示和播放视频。
但是,我希望使用Allure Jenkins插件实现相同目的。如果有任何方法可以在使用诱惑jenkins插件生成的倾城报告中嵌入和播放视频,请告诉我。
我在jenkins的Allure报告中看到了视频在你管上的视频。但不确定他们是如何设置的。请帮忙? https://www.youtube.com/watch?v=74zD5q9DKTw
答案 0 :(得分:0)
好像没有“jenkins插件”的业务,你可以重写 testngListener ,并添加带有“附件”的视频
@Override
public void onTestFailure(ITestResult result) {
super.onTestFailure(result);
String mp4 = store + "\\" + sessionId + ".mp4";
File file = new File(mp4);
if (file.exists()) {
attachRecord(mp4);
}
}
@Attachment(value = "record screen", type = "video/mp4")
private byte[] attachRecord(String mp4) {
System.out.println("mp4 -->" + mp4);
Path content = Paths.get(mp4);
InputStream is = null;
try {
is = Files.newInputStream(content);
} catch (IOException e) {
e.printStackTrace();
}
return is2ByeteArray(is);
}
public static byte[] is2ByeteArray(InputStream is) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buff = new byte[100];
int rc = 0;
while (true) {
try {
if (!((rc = is.read(buff, 0, 100)) > 0)) break;
} catch (IOException e) {
e.printStackTrace();
}
baos.write(buff, 0, rc);
}
return baos.toByteArray();
}