/*
* Copyright 2016 higherfrequencytrading.com
*
* 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 net.openhft.ticker.impl;
import net.openhft.affinity.Affinity;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Created by peter on 13/07/15.
*/
public class JNIClockTest {
@Test
@Ignore("TODO Fix")
public void testNanoTime() throws InterruptedException {
for (int i = 0; i < 20000; i++)
System.nanoTime();
Affinity.setAffinity(2);
JNIClock instance = JNIClock.INSTANCE;
for (int i = 0; i < 50; i++) {
long start0 = System.nanoTime();
long start1 = instance.ticks();
Thread.sleep(10);
long time0 = System.nanoTime();
long time1 = instance.ticks();
if (i > 1) {
assertEquals(10_100_000, time0 - start0, 100_000);
assertEquals(10_100_000, instance.toNanos(time1 - start1), 100_000);
assertEquals(instance.toNanos(time1 - start1) / 1e3, instance.toMicros(time1 - start1), 0.6);
}
}
}
@Test
@Ignore("Long running")
public void testJitter() {
Affinity.setAffinity(2);
assertEquals(2, Affinity.getCpu());
int samples = 100000, count = 0;
long[] time = new long[samples];
long[] length = new long[samples];
JNIClock clock = JNIClock.INSTANCE;
long start = clock.ticks(), prev = start, prevJump = start;
for (int i = 0; i < 1000_000_000; i++) {
long now = clock.ticks();
long delta = now - prev;
if (delta > 4_000) {
time[count] = now - prevJump;
prevJump = now;
length[count] = delta;
count++;
if (count >= samples)
break;
}
prev = now;
}
for (int i = 0; i < count; i++) {
System.out.println(((long) (clock.toMicros(time[i]) * 10)) / 10.0 + ", " + ((long) (clock.toMicros(length[i]) * 10) / 10.0));
}
}
}