[785] | 1 | package testcode;
|
---|
| 2 |
|
---|
| 3 | import static org.junit.Assert.assertEquals;
|
---|
[1269] | 4 | import static org.junit.Assert.assertFalse;
|
---|
[1017] | 5 | import static org.mockito.ArgumentMatchers.any;
|
---|
[1279] | 6 | import static org.mockito.ArgumentMatchers.anyInt;
|
---|
[1014] | 7 | import static org.mockito.ArgumentMatchers.eq;
|
---|
[785] | 8 | import static org.mockito.Mockito.mock;
|
---|
[1279] | 9 | import static org.mockito.Mockito.times;
|
---|
| 10 | import static org.mockito.Mockito.verify;
|
---|
[785] | 11 | import static org.mockito.Mockito.when;
|
---|
| 12 |
|
---|
[1279] | 13 | import org.eclipse.jdt.annotation.NonNull;
|
---|
[785] | 14 | import org.junit.Test;
|
---|
[1011] | 15 | import org.junit.internal.runners.JUnit4ClassRunner;
|
---|
| 16 | import org.junit.runner.RunWith;
|
---|
[1070] | 17 | import org.mockito.AdditionalMatchers;
|
---|
[785] | 18 |
|
---|
| 19 | class TestClass {
|
---|
| 20 | public int f(int x) {
|
---|
| 21 | return x + 1;
|
---|
| 22 | }
|
---|
| 23 | }
|
---|
| 24 |
|
---|
[1017] | 25 | class NumberClass {
|
---|
| 26 | public int f(Number x) {
|
---|
| 27 | return x.intValue();
|
---|
| 28 | }
|
---|
| 29 | }
|
---|
| 30 |
|
---|
[785] | 31 | /**
|
---|
| 32 | * Test for mockito translator. This program is going to be translated and run
|
---|
| 33 | * in python.
|
---|
| 34 | */
|
---|
[1011] | 35 | @RunWith(JUnit4ClassRunner.class)
|
---|
[785] | 36 | public class MockitoBasicTest {
|
---|
| 37 |
|
---|
| 38 | /**
|
---|
| 39 | * NOTE NO CONSTRUCTOR. This is needed to check that the proper constructor,
|
---|
| 40 | * matching in this case the implicit superclass TestCase from Python, is
|
---|
| 41 | * created. This is a special case, in normal cases java already enforces
|
---|
| 42 | * all required code including the call to super().
|
---|
| 43 | */
|
---|
| 44 |
|
---|
| 45 | @Test
|
---|
| 46 | public void testStub1() {
|
---|
[1279] | 47 | final @NonNull TestClass test = mock(TestClass.class);
|
---|
[785] | 48 | when(test.f(3)).thenReturn(1);
|
---|
| 49 | // the mock did not do any when.thenReturn and should fail
|
---|
| 50 | assertEquals(1, test.f(3));
|
---|
| 51 |
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[1014] | 54 | @Test
|
---|
| 55 | public void testEqMatcher() {
|
---|
[1279] | 56 | final @NonNull TestClass test = mock(TestClass.class);
|
---|
[1014] | 57 | when(test.f(eq(3))).thenReturn(1);
|
---|
[1015] | 58 | when(test.f(eq(4))).thenReturn(2);
|
---|
[1014] | 59 | assertEquals(1, test.f(3));
|
---|
[1015] | 60 | assertEquals(2, test.f(4));
|
---|
[1014] | 61 | }
|
---|
| 62 |
|
---|
[1274] | 63 | // does not work together with workaround for #396...
|
---|
[1017] | 64 | @Test
|
---|
| 65 | public void testAnyOfClass() {
|
---|
[1279] | 66 | final @NonNull NumberClass test = mock(NumberClass.class);
|
---|
[1017] | 67 | when(test.f(any(Double.class))).thenReturn(1);
|
---|
| 68 | when(test.f(any(Integer.class))).thenReturn(2);
|
---|
| 69 | assertEquals(1, test.f(3d));
|
---|
| 70 | assertEquals(2, test.f(4));
|
---|
| 71 |
|
---|
| 72 | }
|
---|
| 73 |
|
---|
[1070] | 74 | @Test
|
---|
| 75 | public void testNot() {
|
---|
[1279] | 76 | final @NonNull TestClass test = mock(TestClass.class);
|
---|
[1070] | 77 | when(test.f(AdditionalMatchers.not(eq(3)))).thenReturn(1);
|
---|
| 78 | assertEquals(1, test.f(1));
|
---|
| 79 | assertEquals(1, test.f(2));
|
---|
| 80 | }
|
---|
[1269] | 81 |
|
---|
| 82 | @Test
|
---|
| 83 | public void testNotEqual() {
|
---|
[1279] | 84 | final @NonNull TestClass a = mock(TestClass.class);
|
---|
| 85 | final @NonNull TestClass b = mock(TestClass.class);
|
---|
[1269] | 86 | assertFalse(a.equals(b));
|
---|
| 87 | }
|
---|
| 88 |
|
---|
[1279] | 89 | @Test
|
---|
| 90 | public void testVerify() {
|
---|
| 91 | final @NonNull TestClass a = mock(TestClass.class);
|
---|
| 92 | when(a.f(anyInt())).thenReturn(1);
|
---|
| 93 | a.f(1);
|
---|
| 94 | a.f(1);
|
---|
| 95 | verify(a, times(2)).f(1);
|
---|
| 96 | verify(a, times(2)).f(any(Integer.class));
|
---|
| 97 | verify(a, times(0)).f(2);
|
---|
| 98 | }
|
---|
| 99 |
|
---|
[785] | 100 | }
|
---|