|
| 1 | +/* |
| 2 | + * Copyright (c) 2022 Mockito contributors |
| 3 | + * This program is made available under the terms of the MIT License. |
| 4 | + */ |
| 5 | +package org.mockitousage.strictness; |
| 6 | + |
| 7 | +import org.assertj.core.api.Assertions; |
| 8 | +import org.junit.Before; |
| 9 | +import org.junit.Rule; |
| 10 | +import org.junit.Test; |
| 11 | +import org.mockito.exceptions.misusing.PotentialStubbingProblem; |
| 12 | +import org.mockito.junit.MockitoJUnit; |
| 13 | +import org.mockito.junit.MockitoRule; |
| 14 | +import org.mockito.quality.Strictness; |
| 15 | +import org.mockitousage.IMethods; |
| 16 | + |
| 17 | +import static org.mockito.Mockito.*; |
| 18 | + |
| 19 | +public class StrictnessWithSettingsTest { |
| 20 | + |
| 21 | + public @Rule MockitoRule rule = MockitoJUnit.rule().strictness(Strictness.STRICT_STUBS); |
| 22 | + |
| 23 | + IMethods lenientMock; |
| 24 | + IMethods regularMock; |
| 25 | + IMethods strictMock; |
| 26 | + |
| 27 | + @Before |
| 28 | + public void before() { |
| 29 | + lenientMock = mock(IMethods.class, withSettings().strictness(Strictness.LENIENT)); |
| 30 | + regularMock = mock(IMethods.class); |
| 31 | + strictMock = mock(IMethods.class, withSettings().strictness(Strictness.STRICT_STUBS)); |
| 32 | + } |
| 33 | + |
| 34 | + @Test |
| 35 | + public void mock_is_lenient() { |
| 36 | + when(lenientMock.simpleMethod("1")).thenReturn("1"); |
| 37 | + |
| 38 | + // lenient mock does not throw |
| 39 | + ProductionCode.simpleMethod(lenientMock, "3"); |
| 40 | + } |
| 41 | + |
| 42 | + @Test |
| 43 | + public void mock_is_strict_with_default_settings() { |
| 44 | + when(regularMock.simpleMethod("3")).thenReturn("3"); |
| 45 | + |
| 46 | + Assertions.assertThatThrownBy(() -> ProductionCode.simpleMethod(regularMock, "4")) |
| 47 | + .isInstanceOf(PotentialStubbingProblem.class); |
| 48 | + } |
| 49 | + |
| 50 | + @Test |
| 51 | + public void mock_is_strict_with_explicit_settings() { |
| 52 | + when(strictMock.simpleMethod("2")).thenReturn("2"); |
| 53 | + |
| 54 | + Assertions.assertThatThrownBy(() -> ProductionCode.simpleMethod(strictMock, "5")) |
| 55 | + .isInstanceOf(PotentialStubbingProblem.class); |
| 56 | + } |
| 57 | +} |
0 commit comments