blob: c56a081a8b6a8e669c5bfe32ef0b021e0d85fd7d [file] [log] [blame]
/*
* Copyright (C) 2018 The Android Open Source Project
*
* 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.android.tradefed.device.metric;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.doNothing;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import com.android.tradefed.device.ITestDevice;
import com.android.tradefed.invoker.IInvocationContext;
import com.android.tradefed.result.ITestInvocationListener;
import com.android.tradefed.result.InputStreamSource;
import com.android.tradefed.result.LogDataType;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.mockito.Spy;
import java.io.File;
/** Unit tests for {@link MemInfoMetricCollector}. */
// TODO(b/71868090): Consolidate all the individual metric collector tests into one common tests.
@RunWith(JUnit4.class)
public class MemInfoMetricCollectorTest {
@Mock IInvocationContext mContext;
@Mock ITestInvocationListener mListener;
@Mock ITestDevice mDevice;
@Spy MemInfoMetricCollector mMemInfoMetricCollector;
@Rule public TemporaryFolder tempFolder = new TemporaryFolder();
@Before
public void setup() throws Exception {
MockitoAnnotations.initMocks(this);
mMemInfoMetricCollector.init(mContext, mListener);
doNothing()
.when(mListener)
.testLog(
anyString(), eq(LogDataType.COMPACT_MEMINFO), any(InputStreamSource.class));
doReturn(new File("compact-meminfo-1"))
.when(mMemInfoMetricCollector)
.saveProcessOutput(any(ITestDevice.class), anyString(), anyString());
doReturn(tempFolder.newFolder()).when(mMemInfoMetricCollector).createTempDir();
}
@Test
public void testCollect() throws Exception {
DeviceMetricData runData = new DeviceMetricData(mContext);
when(mMemInfoMetricCollector.getFileSuffix()).thenReturn("1");
mMemInfoMetricCollector.collect(mDevice, runData);
// Verify that we logged the metric file.
verify(mListener).testLog(eq("compact-meminfo-1"), eq(LogDataType.COMPACT_MEMINFO), any());
}
}