blob: 5785c1c2d3e8f457cdddd47cde26853524672954 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.accumulo.tracer;
import static org.junit.Assert.assertEquals;
import java.util.Collections;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.accumulo.tracer.thrift.RemoteSpan;
import org.apache.htrace.HTraceConfiguration;
import org.apache.htrace.Span;
import org.apache.htrace.impl.MilliSpan;
import org.junit.Test;
public class AsyncSpanReceiverTest {
static class TestReceiver extends AsyncSpanReceiver<String,String> {
AtomicInteger spansSent = new AtomicInteger(0);
TestReceiver() {
super(HTraceConfiguration.EMPTY);
}
TestReceiver(HTraceConfiguration conf) {
super(conf);
}
@Override
protected String createDestination(String o) throws Exception {
return "DEST";
}
@Override
protected void send(String resource, RemoteSpan span) throws Exception {
spansSent.incrementAndGet();
}
@Override
protected String getSpanKey(Map<String,String> data) {
return "DEST";
}
int getSpansSent() {
return spansSent.get();
}
int getQueueSize() {
return sendQueueSize.get();
}
}
Span createSpan(long length) {
long time = System.currentTimeMillis();
return new MilliSpan.Builder().begin(time).end(time + length).description("desc")
.parents(Collections.emptyList()).spanId(1).traceId(2).build();
}
@Test
public void test() throws InterruptedException {
try (TestReceiver receiver = new TestReceiver()) {
receiver.receiveSpan(createSpan(0));
while (receiver.getQueueSize() > 0) {
Thread.sleep(500);
}
assertEquals(0, receiver.getQueueSize());
assertEquals(0, receiver.getSpansSent());
receiver.receiveSpan(createSpan(1));
while (receiver.getQueueSize() > 0) {
Thread.sleep(500);
}
assertEquals(0, receiver.getQueueSize());
assertEquals(1, receiver.getSpansSent());
}
}
@Test
public void testKeepAll() throws InterruptedException {
try (TestReceiver receiver = new TestReceiver(HTraceConfiguration
.fromMap(Collections.singletonMap(AsyncSpanReceiver.SPAN_MIN_MS, "0")))) {
receiver.receiveSpan(createSpan(0));
while (receiver.getQueueSize() > 0) {
Thread.sleep(500);
}
assertEquals(0, receiver.getQueueSize());
assertEquals(1, receiver.getSpansSent());
}
}
@Test
public void testExcludeMore() throws InterruptedException {
try (TestReceiver receiver = new TestReceiver(HTraceConfiguration
.fromMap(Collections.singletonMap(AsyncSpanReceiver.SPAN_MIN_MS, "10")))) {
receiver.receiveSpan(createSpan(0));
while (receiver.getQueueSize() > 0) {
Thread.sleep(500);
}
assertEquals(0, receiver.getQueueSize());
assertEquals(0, receiver.getSpansSent());
receiver.receiveSpan(createSpan(9));
while (receiver.getQueueSize() > 0) {
Thread.sleep(500);
}
assertEquals(0, receiver.getQueueSize());
assertEquals(0, receiver.getSpansSent());
receiver.receiveSpan(createSpan(10));
while (receiver.getQueueSize() > 0) {
Thread.sleep(500);
}
assertEquals(0, receiver.getQueueSize());
assertEquals(1, receiver.getSpansSent());
}
}
}