blob: 527f8bca035a45ac66986362faffff1e92d57f38 [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 com.android.server.cts.device.batterystats;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import android.app.job.JobInfo;
import android.app.job.JobScheduler;
import android.content.ComponentName;
import android.support.test.runner.AndroidJUnit4;
import android.util.Log;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
/**
* Used by BatteryStatsValidationTest.
*/
@RunWith(AndroidJUnit4.class)
public class BatteryStatsJobDurationTests extends BatteryStatsDeviceTestBase {
private static final ComponentName JOB_COMPONENT_NAME =
new ComponentName("com.android.server.cts.device.batterystats",
SimpleJobService.class.getName());
// Keep a buffer because job execution can take longer on resource constrained devices
// like Android Wear.
private static final long JOB_TIMEOUT_MS = SimpleJobService.JOB_EXECUTION_MS + 30000L;
public static final String TAG = "BatteryStatsJobDurTests";
private JobInfo createJobInfo(int id) {
JobInfo.Builder builder = new JobInfo.Builder(id, JOB_COMPONENT_NAME);
builder.setOverrideDeadline(0);
return builder.build();
}
@Test
public void testJobDuration() throws Exception {
JobScheduler js = mContext.getSystemService(JobScheduler.class);
assertTrue("JobScheduler service not available", js != null);
final JobInfo job = createJobInfo(1);
for (int i = 0; i < 3; i++) {
CountDownLatch latch = SimpleJobService.resetCountDownLatch();
Log.i(TAG, "Scheduling job");
js.schedule(job);
Log.i(TAG, "Waiting for job to finish");
if (!latch.await(JOB_TIMEOUT_MS, TimeUnit.MILLISECONDS)) {
Log.e(TAG, String.format("Job didn't finish in %d ms", JOB_TIMEOUT_MS));
fail(String.format("Job didn't finish in %d ms", JOB_TIMEOUT_MS));
}
}
}
}