blob: 50e288c419bf56f7bed12c28eba92531f5c07c68 [file] [log] [blame]
/*
* Copyright (C) 2014 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.hardware.cts.helpers.sensorverification;
import junit.framework.TestCase;
import android.hardware.cts.helpers.SensorStats;
import android.hardware.cts.helpers.TestSensorEnvironment;
import android.hardware.cts.helpers.TestSensorEvent;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* Tests for {@link EventOrderingVerification}.
*/
public class JitterVerificationTest extends TestCase {
public void testVerify() {
final int SAMPLE_SIZE = 100;
// for unit testing the verification, only the parameter 'sensorMightHaveMoreListeners' is
// required
TestSensorEnvironment environment = new TestSensorEnvironment(
null /* context */,
null /* sensor */,
false /* sensorMightHaveMoreListeners */,
0 /*samplingPeriodUs */,
0 /* maxReportLatencyUs */);
// 100 samples at 1000Hz
long[] timestamps = new long[SAMPLE_SIZE];
for (int i = 0; i < SAMPLE_SIZE; i++) {
timestamps[i] = i * 100000;
}
SensorStats stats = new SensorStats();
ISensorVerification verification = getVerification(1, timestamps);
verification.verify(environment, stats);
verifyStats(stats, true, 0.0);
// 90 samples at 1000Hz, 10 samples at 2000Hz
long timestamp = 0;
for (int i = 0; i < SAMPLE_SIZE; i++) {
timestamps[i] = timestamp;
timestamp += (i % 10 == 0) ? 500000 : 1000000;
}
stats = new SensorStats();
verification = getVerification(1, timestamps);
try {
verification.verify(environment, stats);
fail("Expected an AssertionError");
} catch (AssertionError e) {
// Expected;
}
verifyStats(stats, false, 47.34);
}
public void testCalculateJitter() {
long[] timestamps = new long[]{0, 1, 2, 3, 4};
JitterVerification verification = getVerification(1, timestamps);
List<Double> jitterValues = verification.getJitterValues();
assertEquals(4, jitterValues.size());
assertEquals(0.0, jitterValues.get(0));
assertEquals(0.0, jitterValues.get(1));
assertEquals(0.0, jitterValues.get(2));
assertEquals(0.0, jitterValues.get(3));
timestamps = new long[]{0, 0, 2, 4, 4};
verification = getVerification(1, timestamps);
jitterValues = verification.getJitterValues();
assertEquals(4, jitterValues.size());
assertEquals(1.0, jitterValues.get(0));
assertEquals(1.0, jitterValues.get(1));
assertEquals(1.0, jitterValues.get(2));
assertEquals(1.0, jitterValues.get(3));
timestamps = new long[]{0, 1, 4, 9, 16};
verification = getVerification(1, timestamps);
jitterValues = verification.getJitterValues();
assertEquals(4, jitterValues.size());
assertEquals(4, jitterValues.size());
assertEquals(3.0, jitterValues.get(0));
assertEquals(1.0, jitterValues.get(1));
assertEquals(1.0, jitterValues.get(2));
assertEquals(3.0, jitterValues.get(3));
}
private static JitterVerification getVerification(int threshold, long ... timestamps) {
Collection<TestSensorEvent> events = new ArrayList<>(timestamps.length);
for (long timestamp : timestamps) {
events.add(new TestSensorEvent(null, timestamp, 0, null));
}
JitterVerification verification = new JitterVerification(threshold);
verification.addSensorEvents(events);
return verification;
}
private void verifyStats(SensorStats stats, boolean passed, double jitter95) {
assertEquals(passed, stats.getValue(JitterVerification.PASSED_KEY));
assertEquals(
jitter95,
(Double) stats.getValue(SensorStats.JITTER_95_PERCENTILE_PERCENT_KEY),
0.1);
}
}