0Pricing
Testing Mastery: JUnit, Mockito & Integration Tests · Урок

Тестирование исключений и ограничения времени

Проверяйте ожидаемые исключения и устанавливайте ограничения времени, чтобы предотвращать бесконечные циклы и длительное выполнение тестовых случаев.

«Тестирование исключений и ограничения времени» — бесплатный урок Testing Mastery: JUnit, Mockito & Integration Tests на CoddyKit. Это урок 3 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Testing Mastery: JUnit, Mockito & Integration Tests, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Testing Mastery: JUnit, Mockito & Integration Tests содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

Test for Expected Errors

Sometimes, your code is designed to throw an error under specific, invalid conditions. For example, dividing by zero. Exception testing ensures that your code handles these situations correctly.

  • It validates both the success and failure paths.
  • It confirms your error messages are accurate.

Catching Exceptions with JUnit

JUnit 5 provides the assertThrows method to verify that a specific exception is thrown. This is the recommended and cleanest way to test for expected exceptions.

  • It takes the expected exception type (e.g., IllegalArgumentException.class).
  • It takes a lambda expression (a small piece of code) that should trigger the exception.

`assertThrows` in Action

Let's see assertThrows in a simple test. Our Calculator method divide should throw an IllegalArgumentException if the divisor is zero.

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

class Calculator {
    public int divide(int a, int b) {
        if (b == 0) {
            throw new IllegalArgumentException("Divisor cannot be zero");
        }
        return a / b;
    }
}

public class ExceptionTest {
    @Test
    void testDivideByZeroThrowsException() {
        Calculator calc = new Calculator();
        assertThrows(IllegalArgumentException.class, () -> {
            calc.divide(10, 0);
        });
    }
}

Checking Exception Details

It's often not enough to just know *that* an exception was thrown. You might also want to verify its details, like the exception message or other properties.

The assertThrows method returns the actual exception object, allowing you to perform further assertions on it.

Asserting Exception Message

Here, we capture the exception object returned by assertThrows and then use assertEquals to verify its message. This makes your exception tests very precise.

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

class Calculator {
    public int divide(int a, int b) {
        if (b == 0) {
            throw new IllegalArgumentException("Divisor cannot be zero");
        }
        return a / b;
    }
}

public class ExceptionMessageTest {
    @Test
    void testDivideByZeroMessage() {
        Calculator calc = new Calculator();
        IllegalArgumentException thrown = assertThrows(
            IllegalArgumentException.class,
            () -> calc.divide(10, 0),
            "Expected divide() to throw, but it didn't"
        );
        assertEquals("Divisor cannot be zero", thrown.getMessage());
    }
}

Preventing Endless Tests with Timeouts

Sometimes, a piece of code can get stuck in an infinite loop or take an unexpectedly long time to complete. This can cause your test suite to hang indefinitely.

Timeouts are a crucial feature that automatically fail a test if it exceeds a specified duration, ensuring your test suite runs efficiently.

Setting Timeouts with `@Timeout`

JUnit 5 uses the @Timeout annotation to set a maximum duration for test methods or entire test classes. You specify the maximum value and a unit of time.

  • Common units include TimeUnit.SECONDS, TimeUnit.MILLISECONDS, TimeUnit.MINUTES.
  • If the test runs longer than the specified time, it will fail.

Method-Level Timeout Example

Here's how to apply a timeout to a single test method. If the longRunningTask() takes more than 1 second, this test will automatically fail.

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Timeout;
import java.util.concurrent.TimeUnit;
import static org.junit.jupiter.api.Assertions.*;

public class TimeoutMethodTest {

    // A method that might take too long
    private void longRunningTask() throws InterruptedException {
        Thread.sleep(1500); // Simulates a task taking 1.5 seconds
    }

    @Test
    @Timeout(value = 1, unit = TimeUnit.SECONDS)
    void testTaskShouldCompleteWithinOneSecond() throws InterruptedException {
        longRunningTask(); // This will cause the test to fail due to timeout
        assertTrue(true, "Task completed (but it will timeout)");
    }
}

Class-Level Timeouts

You can also apply the @Timeout annotation at the class level. When placed on a test class, all test methods within that class will inherit the specified timeout.

If a test method also has its own @Timeout annotation, the method-level timeout will override the class-level one for that specific method.

Test Your Knowledge

Which JUnit 5 feature is best suited to ensure a test method completes execution within a predefined time limit, failing if it exceeds that limit?

Recap: Exceptions & Timeouts

In this lesson, you learned to write robust tests for expected errors and to prevent runaway tests:

  • You used assertThrows to verify that specific exceptions are thrown by your code.
  • You learned how to verify specific details of an exception, such as its message.
  • You applied the @Timeout annotation to set time limits for your test methods and classes, ensuring efficient test execution.

Часто задаваемые вопросы

Урок «Тестирование исключений и ограничения времени» бесплатный?

Да — полный текст урока «Тестирование исключений и ограничения времени» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Testing Mastery: JUnit, Mockito & Integration Tests, подпишись на CoddyKit PRO. Курс Testing Mastery: JUnit, Mockito & Integration Tests содержит 4 уроков всего.

Чему я научусь в уроке «Тестирование исключений и ограничения времени»?

Проверяйте ожидаемые исключения и устанавливайте ограничения времени, чтобы предотвращать бесконечные циклы и длительное выполнение тестовых случаев. Ты практикуешь Testing Mastery: JUnit, Mockito & Integration Tests с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать Testing Mastery: JUnit, Mockito & Integration Tests?

Предыдущий опыт не требуется. Testing Mastery: JUnit, Mockito & Integration Tests на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 3 из 4.

Сколько времени занимает урок «Тестирование исключений и ограничения времени»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке Testing Mastery: JUnit, Mockito & Integration Tests?

Да. Каждый урок Testing Mastery: JUnit, Mockito & Integration Tests включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Жизненный цикл и порядок тестов
  2. Параметризованные и динамические тесты
  3. Тестирование исключений и ограничения времени
  4. Условные тесты и предположения
← Назад к Testing Mastery: JUnit, Mockito & Integration Tests