gpt4 book ai didi

java - 模拟测试异常处理

转载 作者:行者123 更新时间:2023-12-01 16:40:42 27 4
gpt4 key购买 nike

描述:我想要对实现接口(interface)的方法进行单元测试。方法从文件中检索数据,因此可能会引发异常。实际检索数据的代码是 Files.readAllLines(Paths.get(fileName));这件事迫使我处理IOException 。还有另外两个类使用接口(interface) FileLinesReader检索数据。一切正常,代码符合预期。但是,当我使用无效文件名(任何位置都不存在)运行整个代码时,NoSuchFileException被抛出,据我所知,是 Paths.get(fileName) 抛出的。我想正确处理代码执行期间最有可能发生的异常。

代码:

public interface FileLinesReader {
List<String> readAllLines(String fileName);
}
    public class DefaultFileLinesReader implements FileLinesReader {
String defaultFile;

public DefaultFileLinesReader(String defaultFile) {
this.defaultFile = defaultFile;
}

@Override
public List<String> readAllLines(String fileName) {
List<String> linesOutput;

try {
linesOutput = Files.readAllLines(Paths.get(fileName));
}
catch(IOException e) {
System.err.println("Provided file: \"" + fileName + "\" does not exist. Default file: " + defaultFile);
e.printStackTrace();
System.err.println("Do you want to use default file? [y/n]");

try(Scanner scanner = new Scanner(System.in)) {
while(true) {
String input = userInput(scanner);
if (input.equals("y")) {
try {
linesOutput = Files.readAllLines(Paths.get(defaultFile));
break;
}
catch (IOException ex) {
throw new RuntimeException("Default file not defined!", ex); //Should never be thrown. Default file must exist in MessageSender folder.
}
}
//Default file must exist in designated folder.
//If no file selected, execution is ceased.
if (input.equals("n")) {
throw new RuntimeException("No file selected.");
}
System.out.println("Invalid command.");
System.out.println("Do you want to use default file? [y/n]");
}
}
}
return linesOutput;
}

//Created to define input in unit tests
protected String userInput(Scanner scanner) {
return scanner.next();
}
}

问题:我想使用 Mockito 来测试这个类,但显然我仍然不太理解模拟。我想监视设置用户输入的方法,然后也通过监视抛出 RuntimeException因为我想停止代码执行。我得到的结果就像我的代码正常执行,而不是作为测试。 try-catch block 已执行,但我得到的消息是 NoSuchFileException已被抛出。到了用户可以输入命令的时刻,但是应该通过“n”作为输入的 spy 方法肯定不起作用。这就是我真正感到困惑的地方。我不确定我是否正确捕获异常。我尝试仅为 Paths.get(fileName) 创建单独的方法所以我也可以 mock 它,但我感觉代码因此变得更加麻烦。我现在拥有的是这样的代码:

@ExtendWith(MockitoExtension.class)
class DefaultFileLinesReaderTest {

private static final String FAKE_FILE = "fakeFile";

private DefaultFileLinesReader defaultFileLinesReaderTest;
private DefaultFileLinesReader defFileLinesReaderSpy;

@BeforeEach
void setUp() {
defaultFileLinesReaderTest = new DefaultFileLinesReader(FAKE_FILE);
defFileLinesReaderSpy = spy(defaultFileLinesReaderTest);
}

@Test
void readAllLines_RuntimeException() {
Scanner scanner = mock(Scanner.class);
when(defFileLinesReaderSpy.userInput(scanner)).thenReturn("n");
when(defFileLinesReaderSpy.readAllLines(FAKE_FILE)).thenThrow(new RuntimeException());

assertThrows(RuntimeException.class, () -> defFileLinesReaderSpy.readAllLines(FAKE_FILE));
}
}

运行测试时的输出如下:

Provided file: "fakeFile" does not exist. Default file: fakeFile
java.nio.file.NoSuchFileException: fakeFile
\\stacktrace here
Do you want to use default file? [y/n]

问题:如何测试readAllLines中是否抛出异常方法按我的预期处理吗?

最佳答案

通常,您会抛出RuntimeException的子类,您可能会考虑使用IllegalArgumetException

对于单元测试,您应该使用测试方法来测试类方法的正常行为,并使用其他测试方法来测试抛出的异常情况。

要测试可能引发异常的情况,您可以考虑以下示例(JUnit 4):

@Rule
public ExpectedException exceptionRule = ExpectedException.none();

@Test
public void shouldThrowException() {
exceptionRule.expect(IllegalArgumentException.class);
exceptionRule.expectMessage("Your exception message");
}

如果您只想检查抛出的异常类型,您可以简单地使用:

@Test(expected = IllegalArgumentException.class)
public void shouldthrowException() {
// Call method
}

关于java - 模拟测试异常处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61867715/

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