blob: 7b67cf0263c66049c074214edea6041436ceac0c [file] [log] [blame]
// Copyright 2020 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.metrics;
import static com.google.common.truth.Truth.assertThat;
import static com.google.common.truth.Truth8.assertThat;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import static org.mockito.Mockito.withSettings;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.sun.management.GarbageCollectionNotificationInfo;
import com.sun.management.GcInfo;
import java.lang.management.GarbageCollectorMXBean;
import java.lang.management.MemoryUsage;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.management.Notification;
import javax.management.NotificationEmitter;
import javax.management.NotificationFilter;
import javax.management.NotificationListener;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Unit tests for {@link PostGCMemoryUseRecorder}. */
@RunWith(JUnit4.class)
public class PostGCMemoryUseRecorderTest {
private GarbageCollectorMXBean createMXBeanWithName(String name) {
GarbageCollectorMXBean b =
mock(
GarbageCollectorMXBean.class,
withSettings().extraInterfaces(NotificationEmitter.class));
when(b.getName()).thenReturn(name);
return b;
}
private List<GarbageCollectorMXBean> createGCBeans(String[] names) {
List<GarbageCollectorMXBean> beans = new ArrayList<>();
for (String n : names) {
beans.add(createMXBeanWithName(n));
}
return beans;
}
@Test
public void listenToSingleNonCopyGC() {
List<GarbageCollectorMXBean> beans = createGCBeans(new String[] {"FooGC"});
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(beans);
verify((NotificationEmitter) beans.get(0), times(1)).addNotificationListener(rec, null, null);
}
@Test
public void listenToMultipleNonCopyGCs() {
List<GarbageCollectorMXBean> beans = createGCBeans(new String[] {"FooGC", "BarGC"});
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(beans);
verify((NotificationEmitter) beans.get(0), times(1)).addNotificationListener(rec, null, null);
verify((NotificationEmitter) beans.get(1), times(1)).addNotificationListener(rec, null, null);
}
@Test
public void dontListenToCopyGC() {
List<GarbageCollectorMXBean> beans = createGCBeans(new String[] {"FooGC", "Copy"});
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(beans);
verify((NotificationEmitter) beans.get(0), times(1)).addNotificationListener(rec, null, null);
verify((NotificationEmitter) beans.get(1), never())
.addNotificationListener(
any(NotificationListener.class), any(NotificationFilter.class), any());
}
private static MemoryUsage createMockMemoryUsage(long used) {
MemoryUsage mu = mock(MemoryUsage.class);
when(mu.getUsed()).thenReturn(used);
return mu;
}
private static Notification createMockNotification(
String type, String action, Map<String, Long> memUsed) {
return createMockNotification(type, action, "dummycause", memUsed);
}
private static Notification createMockNotification(
String type, String action, String cause, Map<String, Long> memUsed) {
ImmutableMap.Builder<String, MemoryUsage> memUsageMap = ImmutableMap.builder();
for (Map.Entry<String, Long> e : memUsed.entrySet()) {
memUsageMap.put(e.getKey(), createMockMemoryUsage(e.getValue()));
}
GcInfo gcInfo = mock(GcInfo.class);
when(gcInfo.getMemoryUsageAfterGc()).thenReturn(memUsageMap.build());
GarbageCollectionNotificationInfo notInfo =
new GarbageCollectionNotificationInfo("DummyGCName", action, cause, gcInfo);
Notification n = mock(Notification.class);
when(n.getType()).thenReturn(type);
when(n.getUserData()).thenReturn(notInfo.toCompositeData(null));
return n;
}
private static Notification createMajorGCNotification(Map<String, Long> memUsed) {
return createMockNotification(
GarbageCollectionNotificationInfo.GARBAGE_COLLECTION_NOTIFICATION,
"end of major GC",
memUsed);
}
private static Notification createMajorGCNotification(long used) {
return createMajorGCNotification(ImmutableMap.of("Foo", used));
}
@Test
public void peakHeapStartsAbsent() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
assertThat(rec.getPeakPostGCHeapMemoryUsed()).isEmpty();
}
@Test
public void peakHeapAbsentAfterReset() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
rec.handleNotification(createMajorGCNotification(1000L), null);
rec.reset();
assertThat(rec.getPeakPostGCHeapMemoryUsed()).isEmpty();
}
@Test
public void noGcCauseEventsNotIgnored() {
PostGCMemoryUseRecorder underTest = new PostGCMemoryUseRecorder(ImmutableList.of());
Notification notificationWithNoGcCause =
createMockNotification(
GarbageCollectionNotificationInfo.GARBAGE_COLLECTION_NOTIFICATION,
"end of major GC",
/*cause=*/ "No GC",
ImmutableMap.of("somepool", 100L));
underTest.doHandleNotification(notificationWithNoGcCause, /*handback=*/ null);
assertThat(underTest.getPeakPostGCHeapMemoryUsed()).hasValue(100L);
}
@Test
public void peakHeapIncreasesWhenBigger() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
rec.handleNotification(createMajorGCNotification(1000L), null);
assertThat(rec.getPeakPostGCHeapMemoryUsed()).hasValue(1000L);
rec.handleNotification(createMajorGCNotification(1001L), null);
assertThat(rec.getPeakPostGCHeapMemoryUsed()).hasValue(1001L);
rec.handleNotification(createMajorGCNotification(2001L), null);
assertThat(rec.getPeakPostGCHeapMemoryUsed()).hasValue(2001L);
}
@Test
public void peakHeapDoesntDecrease() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
rec.handleNotification(createMajorGCNotification(1000L), null);
rec.handleNotification(createMajorGCNotification(500L), null);
assertThat(rec.getPeakPostGCHeapMemoryUsed()).hasValue(1000L);
rec.handleNotification(createMajorGCNotification(999L), null);
assertThat(rec.getPeakPostGCHeapMemoryUsed()).hasValue(1000L);
}
@Test
public void ignoreNonGCNotification() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
rec.handleNotification(
createMockNotification(
"some other notification", "end of major GC", ImmutableMap.of("Foo", 1000L)),
null);
assertThat(rec.getPeakPostGCHeapMemoryUsed()).isEmpty();
}
@Test
public void ignoreNonMajorGCNotification() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
rec.handleNotification(
createMockNotification(
GarbageCollectionNotificationInfo.GARBAGE_COLLECTION_NOTIFICATION,
"end of minor GC",
ImmutableMap.of("Foo", 1000L)),
null);
assertThat(rec.getPeakPostGCHeapMemoryUsed()).isEmpty();
}
@Test
public void sumMemUsageInfo() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
rec.handleNotification(
createMajorGCNotification(ImmutableMap.of("Foo", 111L, "Bar", 222L, "Qux", 333L)), null);
assertThat(rec.getPeakPostGCHeapMemoryUsed()).hasValue(666L);
}
@Test
public void memoryUsageReportedZeroGetsSetAndStaysSet() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
assertThat(rec.wasMemoryUsageReportedZero()).isFalse();
rec.handleNotification(
createMajorGCNotification(ImmutableMap.of("Foo", 0L, "Bar", 0L, "Qux", 0L)), null);
assertThat(rec.wasMemoryUsageReportedZero()).isTrue();
rec.handleNotification(
createMajorGCNotification(ImmutableMap.of("Foo", 123L, "Bar", 456L, "Qux", 789L)), null);
assertThat(rec.wasMemoryUsageReportedZero()).isTrue();
}
@Test
public void memoryUsageReportedZeroDoesntGetSet() {
PostGCMemoryUseRecorder rec = new PostGCMemoryUseRecorder(new ArrayList<>());
assertThat(rec.wasMemoryUsageReportedZero()).isFalse();
rec.handleNotification(
createMajorGCNotification(ImmutableMap.of("Foo", 123L, "Bar", 456L, "Qux", 789L)), null);
assertThat(rec.wasMemoryUsageReportedZero()).isFalse();
}
}