gpt4 book ai didi

java - 了解 JUnit 5 中的异常测试

转载 作者:搜寻专家 更新时间:2023-10-31 19:51:54 29 4
gpt4 key购买 nike

我已经离开 Java 有一段时间了,同时 JUnit 5 出现了。我正在尝试将一些现有的 JUnit 4 测试重写为 JUnit 5,但我正在努力解决如何处理抛出异常的方法。例如,我有一个我编写的名为 LocalizationUtils 的类(不要与 API 中使用该名称的任何其他类混淆)并且它有一个名为 getResources() 的方法,该方法需要一个非空的基本名称作为输入并返回如果可以找到相应的资源包。如果基本名称为 null,则抛出 NullPointerException;如果找不到资源包,则抛出 MissingResourceException。这是代码:

    static public ResourceBundle getResources(String baseName) throws NullPointerException, MissingResourceException {

if (baseName == null) {
final String msg = "The base name cannot be null.";
NullPointerException npExcp = new NullPointerException(msg);
Logger logger = Logger.getLogger(CLASS_NAME);
logger.log(Level.SEVERE, msg, npExcp);
throw npExcp;
}

/* Get the resource bundle for the current locale. */
try {
return(ResourceBundle.getBundle(baseName));
}
catch (MissingResourceException mrExcp) {
String msg = "Unable to find resources for base name " + baseName + ".";
Logger logger = Logger.getLogger(CLASS_NAME);
logger.log(Level.SEVERE, msg, mrExcp);
throw mrExcp;
}

}

JUnit 5 手册给出了这个处理异常的例子:

@Test
void exceptionTesting() {
Throwable exception = assertThrows(IllegalArgumentException.class, () -> {
throw new IllegalArgumentException("a message");
});
assertEquals("a message", exception.getMessage());
}

这个例子对我来说毫无意义。它似乎凭空创建了一个消息“一条消息”的异常。我根本看不到它实际上在执行任何类或方法。没有关于这应该如何工作的真正解释,所以也许/可能这只是我的误解。

为了尝试编写一个实际执行我的代码并强制发生这两个错误的测试,我编写了这个 JUnit 5 测试:

@Test
void testGetResourcesString() {

//Normal cases

//Exception - input parameter is null
/* Verify that the expected type of exception was thrown. */
Throwable npExcp = assertThrows(NullPointerException.class, () -> {
LocalizationUtils.getResources(null);
});
/* Verify that the exact right error message was generated. */
assertEquals("The base name cannot be null.", npExcp.getMessage());


//Exception - all input is non-null but resource bundle not found
/* Verify that the expected type of exception was thrown. */
Throwable mrExcp = assertThrows(MissingResourceException.class, () -> {
LocalizationUtils.getResources("foo");
});
/* Verify that the exact right error message was generated. */
assertEquals("Can't find bundle for base name foo, locale en_CA", mrExcp.getMessage());
}

此测试中的所有内容都按我的预期工作,并且看起来比手册中的示例更合乎逻辑,因为它实际上执行了一个类和方法以导致抛出异常。我还想确保生成了完全正确的消息,因为很容易想象一个具有多个输入参数的方法,而不是只有一个参数为 null 的方法应该抛出带有唯一消息的异常.仅仅确定抛出了正确的异常对我来说似乎还不够:我觉得我想确保创建了正确的消息,以便我知道代码正在对几个正确的 null 参数使用react。

虽然我不愿意相信手册是错误的;我想象一个由几位经验丰富的开发人员组成的团队编写了它并且非常小心。任何比我拥有更多 JUnit 5 知识的人——这一定是几乎所有使用过 JUnit 5 的人——能否确认手册中的示例是正确的,如果是,当没有类或方法名称时它应该如何工作提供?

最佳答案

该示例确实调用了“方法”。 lambda 表达式 () -> {...} 定义了一个匿名方法。它包含一条语句:throw new IllegalArgumentException

Refer to the java language specs

() -> {}                // No parameters; result is void
() -> 42 // No parameters, expression body
() -> null // No parameters, expression body
() -> { return 42; } // No parameters, block body with return
() -> { System.gc(); } // No parameters, void block body
(int x) -> x+1 // Single declared-type parameter
(int x) -> { return x+1; } // Single declared-type parameter
(x) -> x+1 // Single inferred-type parameter
x -> x+1 // Parens optional for single inferred-type case

所以这个例子只有一个方法,它所做的只是抛出一个异常。

() -> { throw new IllegalArgumentException("a message"); }

您的代码中,您实际上是在定义一个没有参数的方法,用一个参数调用您的方法。

() -> { LocalizationUtils.getResources(null); } 

关于java - 了解 JUnit 5 中的异常测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52825082/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com