summaryrefslogtreecommitdiff
path: root/subprojects/inline/src/test/java/org/mockitoinline/bugs/SelfSpyReferenceMemoryLeakTest.java
blob: f4bb55aea7407ef52d8ee88e340cd99dd307473b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * Copyright (c) 2019 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */

package org.mockitoinline.bugs;

import org.junit.Test;

import static org.mockito.Mockito.framework;
import static org.mockito.Mockito.spy;

public class SelfSpyReferenceMemoryLeakTest {
    private static final int ARRAY_LENGTH = 1 << 20;  // 4 MB

    @Test
    public void no_memory_leak_when_spy_holds_reference_to_self() {
        for (int i = 0; i < 100; ++i) {
            final DeepRefSelfClass instance = spy(new DeepRefSelfClass());
            instance.refInstance(instance);

            framework().clearInlineMocks();
        }
    }

    private static class DeepRefSelfClass {
        private final DeepRefSelfClass[] array = new DeepRefSelfClass[1];

        private final int[] largeArray = new int[ARRAY_LENGTH];

        private void refInstance(DeepRefSelfClass instance) {
            array[0] = instance;
        }
    }
}