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

Allure 用法

软件测试学习笔记丨Allure2报告中添加用例标题_测试用例

Allure2 报告中添加用例标题

应用场景:为了让生成的测试报告便于阅读,可以为每条用例添加一个便于阅读的标题(可以使用中文标题)。生成的报告展示用例时,就会以设置的标题名展示出来。

Allure2 报告中添加用例标题

  • 通过使用@DisplayName注解可以为测试用例自定义一个可阅读性的标题。
  • @DisplayName注解 的三种使用方式:
  1. 直接设置标题。
  2. 设置参数化用例标题。
  3. 动态设置测试用例标题。

Allure2 报告直接设置标题

  • 方法一:直接设置标题。
@DisplayName("验证 加法 计算")
public class DisplayNameTest {
    @Test
    @DisplayName("验证 8+9 计算")
    public void testAdd() {
        int result = 8 + 9;
        assertEquals(17,result,"8 + 9的计算结果失败");
    }
}

Allure2 报告参数化设置用例标题

方式二:参数化设置用例标题

@ParameterizedTest
    @CsvSource({"foo, 3", "hello, 5", "world, 5"})
    @DisplayName("测试字符串长度 - 参数化")
    void testStr(String str, int expected) {
        assertEquals(expected, str.length());
    }


    @DisplayName("验证减法计算:")
    @ParameterizedTest(name = "{0} - {1} = {2}")
    @MethodSource
    public void testSub(int a, int b, int re) {
        int result = a - b;
        assertEquals(re,result,()->a + " - " + b + "的计算结果失败");
    }
    public static Stream<Arguments> testSub(){
        return Stream.of(
                Arguments.arguments(2,2,0),
                Arguments.arguments(4,5,-1),
                Arguments.arguments(8,3,5)
        );
    }

软件测试学习笔记丨Allure2报告中添加用例标题_测试用例_02

Allure2 报告动态设置测试用例标题

@DisplayName("动态更新测试用例标题")
public class DynamicAddTitleTest {
    @TestFactory
    List<DynamicTest> dynamicStrTest() {
        List<String> inputList = Arrays.asList("apple", "banan", "orang");

        return inputList.stream()
                .map(str -> DynamicTest.dynamicTest("动态测试字符串长度:" + str, () -> {
                    // 在此处可以使用TestInfo来动态更新测试用例标题
                    TestInfo testInfo = new TestInfo() {
                        @Override
                        public String getDisplayName() {
                            return "动态测试字符串长度:" + str;
                        }

                        @Override
                        public Set<String> getTags() {
                            return null;
                        }

                        @Override
                        public Optional<Class<?>> getTestClass() {
                            return Optional.empty();
                        }

                        @Override
                        public Optional<Method> getTestMethod() {
                            return Optional.empty();
                        }
                    };
                    assertEquals(5, str.length(), "Length of " + str);
                }))
                .toList();
    }
}

软件测试学习笔记丨Allure2报告中添加用例标题_用例_03

动态修改测试用例标题

修改前

package com.junit5;

import io.qameta.allure.Allure;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.*;

@DisplayName("首个报告测试用例")
public class FirstTest {

    @Test
    @DisplayName("第一个测试用例")
    public void test1(){
        //加法
        int result = 3+2;
        //登录
        //输入账号
        //输入密码
        //点击登录按钮

//        Allure.getLifecycle().updateTestCase(testResult -> testResult.setName("用户登录测试"));
        assertEquals(5,result,"计算错误");
    }
}

软件测试学习笔记丨Allure2报告中添加用例标题_Test_04

修改后

package com.junit5;

import io.qameta.allure.Allure;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.*;

@DisplayName("首个报告测试用例")
public class FirstTest {

    @Test
    @DisplayName("第一个测试用例")
    public void test1(){
        //加法
        int result = 3+2;
        //登录
        //输入账号
        //输入密码
        //点击登录按钮

        Allure.getLifecycle().updateTestCase(testResult -> testResult.setName("用户登录测试"));
        assertEquals(5,result,"计算错误");
    }
}

软件测试学习笔记丨Allure2报告中添加用例标题_软件测试_05