blob: e26d166b725f3f4e81e66907614aa1c71581de15 [file] [edit]
/*
* Copyright (C) 2024 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 test;
import static android.uprobestats.flags.Flags.FLAG_ENABLE_UPROBESTATS;
import static android.uprobestats.flags.Flags.FLAG_EXECUTABLE_METHOD_FILE_OFFSETS;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assume.assumeTrue;
import android.cts.statsdatom.lib.AtomTestUtils;
import android.cts.statsdatom.lib.ConfigUtils;
import android.cts.statsdatom.lib.DeviceUtils;
import android.cts.statsdatom.lib.ReportUtils;
import android.platform.test.annotations.RequiresFlagsDisabled;
import android.platform.test.annotations.RequiresFlagsEnabled;
import android.platform.test.flag.junit.CheckFlagsRule;
import android.platform.test.flag.junit.host.HostFlagsValueProvider;
import com.android.compatibility.common.util.CpuFeatures;
import com.android.internal.os.StatsdConfigProto;
import com.android.os.StatsLog;
import com.android.os.framework.FrameworkExtensionAtoms;
import com.android.os.framework.FrameworkExtensionAtoms.DeviceIdleTempAllowlistUpdated;
import com.android.os.uprobestats.TestUprobeStatsAtomReported;
import com.android.os.uprobestats.UprobestatsExtensionAtoms;
import com.android.tradefed.device.ITestDevice;
import com.android.tradefed.testtype.DeviceJUnit4ClassRunner;
import com.android.tradefed.testtype.junit4.BaseHostJUnit4Test;
import com.android.tradefed.util.RunUtil;
import com.google.protobuf.ExtensionRegistry;
import com.google.protobuf.TextFormat;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import uprobestats.protos.Config.UprobestatsConfig;
import java.io.File;
import java.nio.file.Files;
import java.util.List;
import java.util.Scanner;
@RunWith(DeviceJUnit4ClassRunner.class)
public class SmokeTest extends BaseHostJUnit4Test {
private static final String BATTERY_STATS_CONFIG_OATDUMP =
"test_bss_setBatteryState_oatdump.textproto";
private static final String BATTERY_STATS_CONFIG_ART =
"test_bss_setBatteryState_artApi.textproto";
private static final String TEMP_ALLOWLIST_CONFIG =
"test_updateDeviceIdleTempAllowlist.textproto";
private static final String CONFIG_NAME = "config";
private static final String CMD_SETPROP_UPROBESTATS = "setprop ctl.start uprobestats";
private static final String CONFIG_DIR = "/data/misc/uprobestats-configs/";
private ExtensionRegistry mRegistry;
@Rule
public final CheckFlagsRule mCheckFlagsRule =
HostFlagsValueProvider.createCheckFlagsRule(this::getDevice);
@Before
public void setUp() throws Exception {
ConfigUtils.removeConfig(getDevice());
ReportUtils.clearReports(getDevice());
getDevice().deleteFile(CONFIG_DIR + CONFIG_NAME);
RunUtil.getDefault().sleep(AtomTestUtils.WAIT_TIME_LONG);
getDevice().executeShellCommand("killall uprobestats");
mRegistry = ExtensionRegistry.newInstance();
UprobestatsExtensionAtoms.registerAllExtensions(mRegistry);
FrameworkExtensionAtoms.registerAllExtensions(mRegistry);
}
void startUprobeStats(String textprotoFilename, int atomId) throws Exception {
// 1. Parse config from resources
String textProto =
new Scanner(this.getClass().getResourceAsStream(textprotoFilename))
.useDelimiter("\\A")
.next();
UprobestatsConfig.Builder builder = UprobestatsConfig.newBuilder();
TextFormat.getParser().merge(textProto, builder);
UprobestatsConfig config = builder.build();
// 2. Write config to a file and drop it on the device
File tmp = File.createTempFile("uprobestats", CONFIG_NAME);
assertThat(tmp.setWritable(true)).isTrue();
Files.write(tmp.toPath(), config.toByteArray());
ITestDevice device = getDevice();
assertThat(getDevice().enableAdbRoot()).isTrue();
assertThat(getDevice().pushFile(tmp, CONFIG_DIR + CONFIG_NAME)).isTrue();
// 3. Configure StatsD
StatsdConfigProto.StatsdConfig.Builder configBuilder =
ConfigUtils.createConfigBuilder("AID_UPROBESTATS");
ConfigUtils.addEventMetric(configBuilder, atomId);
ConfigUtils.uploadConfig(getDevice(), configBuilder);
// 4. Start UprobeStats
device.executeShellCommand(CMD_SETPROP_UPROBESTATS);
// Allow UprobeStats time to attach probe
RunUtil.getDefault().sleep(AtomTestUtils.WAIT_TIME_LONG);
}
@Test
@RequiresFlagsDisabled(FLAG_EXECUTABLE_METHOD_FILE_OFFSETS)
@RequiresFlagsEnabled(FLAG_ENABLE_UPROBESTATS)
public void batteryStats_oatdump() throws Exception {
batteryStats(BATTERY_STATS_CONFIG_OATDUMP);
}
@Test
@RequiresFlagsEnabled({FLAG_ENABLE_UPROBESTATS, FLAG_EXECUTABLE_METHOD_FILE_OFFSETS})
public void batteryStats_artApi() throws Exception {
batteryStats(BATTERY_STATS_CONFIG_ART);
}
@Test
@RequiresFlagsEnabled({FLAG_ENABLE_UPROBESTATS, FLAG_EXECUTABLE_METHOD_FILE_OFFSETS})
public void batteryStats_oatdump_fallback() throws Exception {
batteryStats(BATTERY_STATS_CONFIG_OATDUMP);
}
private void batteryStats(String config) throws Exception {
startUprobeStats(
config, UprobestatsExtensionAtoms.TEST_UPROBESTATS_ATOM_REPORTED_FIELD_NUMBER);
// Set charging state, which should invoke BatteryStatsService#setBatteryState.
// Assumptions:
// - uprobestats flag is enabled
// - userdebug build
// - said method is precompiled (specified in frameworks/base/services/art-profile)
// If this test fails, check those assumptions first.
DeviceUtils.setChargingState(getDevice(), 2);
// Allow UprobeStats/StatsD time to collect metric
RunUtil.getDefault().sleep(AtomTestUtils.WAIT_TIME_LONG);
// See if the atom made it
List<StatsLog.EventMetricData> data =
ReportUtils.getEventMetricDataList(getDevice(), mRegistry);
assertThat(data.size()).isEqualTo(1);
TestUprobeStatsAtomReported reported =
data.get(0)
.getAtom()
.getExtension(UprobestatsExtensionAtoms.testUprobestatsAtomReported);
assertThat(reported.getFirstField()).isEqualTo(1);
assertThat(reported.getSecondField()).isGreaterThan(0);
assertThat(reported.getThirdField()).isEqualTo(0);
}
@Test
@RequiresFlagsEnabled(FLAG_ENABLE_UPROBESTATS)
public void updateDeviceIdleTempAllowlist() throws Exception {
assumeTrue(CpuFeatures.isArm64(getDevice()));
startUprobeStats(
TEMP_ALLOWLIST_CONFIG,
FrameworkExtensionAtoms.DEVICE_IDLE_TEMP_ALLOWLIST_UPDATED_FIELD_NUMBER);
// Set tempallowlist
getDevice().executeShellCommand("cmd deviceidle tempwhitelist com.google.android.tts");
// Allow UprobeStats/StatsD time to collect metric
RunUtil.getDefault().sleep(AtomTestUtils.WAIT_TIME_LONG);
// See if the atom made it
List<StatsLog.EventMetricData> data =
ReportUtils.getEventMetricDataList(getDevice(), mRegistry);
assertThat(data.size()).isEqualTo(1);
DeviceIdleTempAllowlistUpdated reported =
data.get(0)
.getAtom()
.getExtension(FrameworkExtensionAtoms.deviceIdleTempAllowlistUpdated);
assertThat(reported.getReason()).isEqualTo("shell");
}
}