blob: 75e3fd5c1fd46d36ac8c724970517d9813ad2825 [file] [log] [blame]
/*
* Copyright (C) 2017 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 android.bootstats.cts;
import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
import com.android.tradefed.testtype.DeviceTestCase;
import junit.framework.Assert;
/**
* Set of tests that verify statistics collection during boot.
*/
public class BootStatsHostTest extends DeviceTestCase {
private static final String TAG = "BootStatsHostTest";
public void testBootStats() throws Exception {
long startTime = System.currentTimeMillis();
// Clear buffer to make it easier to find new logs
getDevice().executeShellCommand("logcat --buffer=events --clear");
// reboot device
getDevice().rebootUntilOnline();
waitForBootCompleted();
int upperBoundSeconds = (int) ((System.currentTimeMillis() - startTime) / 1000);
// wait for logs to post
Thread.sleep(10000);
// find logs and parse them
// ex: sysui_multi_action: [757,804,799,ota_boot_complete,801,85,802,1]
// ex: 757,804,799,counter_name,801,bucket_value,802,increment_value
final String bucketTag = Integer.toString(MetricsEvent.RESERVED_FOR_LOGBUILDER_BUCKET);
final String counterNameTag = Integer.toString(MetricsEvent.RESERVED_FOR_LOGBUILDER_NAME);
final String counterNamePattern = counterNameTag + ",boot_complete,";
final String multiActionPattern = "sysui_multi_action: [";
final String log = getDevice().executeShellCommand("logcat --buffer=events -d");
int counterNameIndex = log.indexOf(counterNamePattern);
Assert.assertTrue("did not find boot logs", counterNameIndex != -1);
int multiLogStart = log.lastIndexOf(multiActionPattern, counterNameIndex);
multiLogStart += multiActionPattern.length();
int multiLogEnd = log.indexOf("]", multiLogStart);
String[] multiLogDataStrings = log.substring(multiLogStart, multiLogEnd).split(",");
boolean foundBucket = false;
int bootTime = 0;
for (int i = 0; i < multiLogDataStrings.length; i += 2) {
if (bucketTag.equals(multiLogDataStrings[i])) {
foundBucket = true;
Assert.assertTrue("histogram data was truncated",
(i + 1) < multiLogDataStrings.length);
bootTime = Integer.valueOf(multiLogDataStrings[i + 1]);
}
}
Assert.assertTrue("log line did not contain a tag " + bucketTag, foundBucket);
Assert.assertTrue("reported boot time must be less than observed boot time",
bootTime < upperBoundSeconds);
Assert.assertTrue("reported boot time must be non-zero", bootTime > 0);
}
private boolean isBootCompleted() throws Exception {
return "1".equals(getDevice().executeShellCommand("getprop sys.boot_completed").trim());
}
private void waitForBootCompleted() throws Exception {
for (int i = 0; i < 45; i++) {
if (isBootCompleted()) {
return;
}
Thread.sleep(1000);
}
throw new AssertionError("System failed to become ready!");
}
}