blob: b450b6ba7180593d9e4d4c03152adf7648ffc7c7 [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.druid.query;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.druid.java.util.common.ISE;
import org.apache.druid.java.util.common.UOE;
import org.apache.druid.segment.TestHelper;
import org.junit.Assert;
import org.junit.Test;
import java.util.concurrent.CancellationException;
public class QueryInterruptedExceptionTest
{
private static final ObjectMapper MAPPER = TestHelper.makeJsonMapper();
@Test
public void testErrorCode()
{
Assert.assertEquals(
"Query cancelled",
new QueryInterruptedException(new QueryInterruptedException(new CancellationException())).getErrorCode()
);
Assert.assertEquals("Query cancelled", new QueryInterruptedException(new CancellationException()).getErrorCode());
Assert.assertEquals("Query interrupted", new QueryInterruptedException(new InterruptedException()).getErrorCode());
Assert.assertEquals("Unsupported operation", new QueryInterruptedException(new UOE("Unsupported")).getErrorCode());
Assert.assertEquals("Unknown exception", new QueryInterruptedException(null).getErrorCode());
Assert.assertEquals("Unknown exception", new QueryInterruptedException(new ISE("Something bad!")).getErrorCode());
Assert.assertEquals(
"Unknown exception",
new QueryInterruptedException(new QueryInterruptedException(new ISE("Something bad!"))).getErrorCode()
);
}
@Test
public void testErrorMessage()
{
Assert.assertEquals(
null,
new QueryInterruptedException(new QueryInterruptedException(new CancellationException())).getMessage()
);
Assert.assertEquals(
null,
new QueryInterruptedException(new CancellationException()).getMessage()
);
Assert.assertEquals(
null,
new QueryInterruptedException(new InterruptedException()).getMessage()
);
Assert.assertEquals(
null,
new QueryInterruptedException(null).getMessage()
);
Assert.assertEquals(
"Something bad!",
new QueryInterruptedException(new ISE("Something bad!")).getMessage()
);
Assert.assertEquals(
"Something bad!",
new QueryInterruptedException(new QueryInterruptedException(new ISE("Something bad!"))).getMessage()
);
}
@Test
public void testErrorClass()
{
Assert.assertEquals(
"java.util.concurrent.CancellationException",
new QueryInterruptedException(new QueryInterruptedException(new CancellationException())).getErrorClass()
);
Assert.assertEquals(
"java.util.concurrent.CancellationException",
new QueryInterruptedException(new CancellationException()).getErrorClass()
);
Assert.assertEquals(
"java.lang.InterruptedException",
new QueryInterruptedException(new InterruptedException()).getErrorClass()
);
Assert.assertEquals(
null,
new QueryInterruptedException(null).getErrorClass()
);
Assert.assertEquals(
"org.apache.druid.java.util.common.ISE",
new QueryInterruptedException(new ISE("Something bad!")).getErrorClass()
);
Assert.assertEquals(
"org.apache.druid.java.util.common.ISE",
new QueryInterruptedException(new QueryInterruptedException(new ISE("Something bad!"))).getErrorClass()
);
}
@Test
public void testHost()
{
Assert.assertEquals(
"myhost",
new QueryInterruptedException(new QueryInterruptedException(new CancellationException(), "myhost")).getHost()
);
}
@Test
public void testSerde()
{
Assert.assertEquals(
"Query cancelled",
roundTrip(new QueryInterruptedException(new QueryInterruptedException(new CancellationException()))).getErrorCode()
);
Assert.assertEquals(
"java.util.concurrent.CancellationException",
roundTrip(new QueryInterruptedException(new QueryInterruptedException(new CancellationException()))).getErrorClass()
);
Assert.assertEquals(
null,
roundTrip(new QueryInterruptedException(new QueryInterruptedException(new CancellationException()))).getMessage()
);
Assert.assertEquals(
"java.util.concurrent.CancellationException",
roundTrip(new QueryInterruptedException(new CancellationException())).getErrorClass()
);
Assert.assertEquals(
"java.lang.InterruptedException",
roundTrip(new QueryInterruptedException(new InterruptedException())).getErrorClass()
);
Assert.assertEquals(
null,
roundTrip(new QueryInterruptedException(null)).getErrorClass()
);
Assert.assertEquals(
"org.apache.druid.java.util.common.ISE",
roundTrip(new QueryInterruptedException(new ISE("Something bad!"))).getErrorClass()
);
Assert.assertEquals(
"org.apache.druid.java.util.common.ISE",
roundTrip(new QueryInterruptedException(new QueryInterruptedException(new ISE("Something bad!")))).getErrorClass()
);
Assert.assertEquals(
"Something bad!",
roundTrip(new QueryInterruptedException(new ISE("Something bad!"))).getMessage()
);
Assert.assertEquals(
"Something bad!",
roundTrip(new QueryInterruptedException(new QueryInterruptedException(new ISE("Something bad!")))).getMessage()
);
Assert.assertEquals(
"Unknown exception",
roundTrip(new QueryInterruptedException(new ISE("Something bad!"))).getErrorCode()
);
Assert.assertEquals(
"Unknown exception",
roundTrip(new QueryInterruptedException(new QueryInterruptedException(new ISE("Something bad!")))).getErrorCode()
);
}
private static QueryInterruptedException roundTrip(final QueryInterruptedException e)
{
try {
return MAPPER.readValue(MAPPER.writeValueAsBytes(e), QueryInterruptedException.class);
}
catch (Exception e2) {
throw new RuntimeException(e2);
}
}
}