blob: 20633ed4f409142dcbbedb73dff6a07ec03c3983 [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.camel.impl;
import java.io.File;
import java.io.InputStream;
import org.apache.camel.Exchange;
import org.apache.camel.LoggingLevel;
import org.apache.camel.TypeConverter;
import org.apache.camel.TypeConverterExists;
import org.apache.camel.TypeConverterExistsException;
import org.apache.camel.support.TypeConverterSupport;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class TypeConverterRegistryTest {
@Test
@Disabled("TODO: lookup for base converters")
public void testDefaultTypeConverterRegistry() {
DefaultCamelContext ctx = new DefaultCamelContext();
assertNotNull(ctx.getTypeConverterRegistry());
// file to input stream is a default converter in Camel
TypeConverter tc = ctx.getTypeConverterRegistry().lookup(InputStream.class, File.class);
assertNotNull(tc);
}
@Test
public void testAddTypeConverter() {
DefaultCamelContext context = new DefaultCamelContext();
// START SNIPPET: e1
// add our own type converter manually that converts from String ->
// MyOrder using MyOrderTypeConverter
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
// END SNIPPET: e1
// START SNIPPET: e3
MyOrder order = context.getTypeConverter().convertTo(MyOrder.class, "123");
// END SNIPPET: e3
assertNotNull(order);
assertEquals(123, order.getId());
}
@Test
public void testAddDuplicateTypeConverter() {
DefaultCamelContext context = new DefaultCamelContext();
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
}
@Test
public void testAddDuplicateTypeConverterIgnore() {
DefaultCamelContext context = new DefaultCamelContext();
context.getTypeConverterRegistry().setTypeConverterExists(TypeConverterExists.Ignore);
context.getTypeConverterRegistry().setTypeConverterExistsLoggingLevel(LoggingLevel.INFO);
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
}
@Test
public void testAddDuplicateTypeConverterFail() {
DefaultCamelContext context = new DefaultCamelContext();
context.getTypeConverterRegistry().setTypeConverterExists(TypeConverterExists.Fail);
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
try {
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
fail("Should have thrown exception");
} catch (TypeConverterExistsException e) {
// expected
}
}
@Test
public void testRemoveTypeConverter() {
DefaultCamelContext context = new DefaultCamelContext();
// add our own type converter manually that converts from String ->
// MyOrder using MyOrderTypeConverter
context.getTypeConverterRegistry().addTypeConverter(MyOrder.class, String.class, new MyOrderTypeConverter());
MyOrder order = context.getTypeConverter().convertTo(MyOrder.class, "123");
assertNotNull(order);
assertEquals(123, order.getId());
// now remove it
boolean removed = context.getTypeConverterRegistry().removeTypeConverter(MyOrder.class, String.class);
assertTrue(removed, "Type converter should be removed");
order = context.getTypeConverter().convertTo(MyOrder.class, "123");
assertNull(order, "Type converter should be removed");
}
private static class MyOrder {
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
// START SNIPPET: e2
private static class MyOrderTypeConverter extends TypeConverterSupport {
@Override
@SuppressWarnings("unchecked")
public <T> T convertTo(Class<T> type, Exchange exchange, Object value) {
// converter from value to the MyOrder bean
MyOrder order = new MyOrder();
order.setId(Integer.parseInt(value.toString()));
return (T) order;
}
}
// END SNIPPET: e2
}