TestSerializationFactory.java
/**
* 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.hadoop.io.serializer;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.test.GenericTestUtils;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.CommonConfigurationKeys;
import org.apache.hadoop.io.Writable;
import org.slf4j.event.Level;
public class TestSerializationFactory {
static {
GenericTestUtils.setLogLevel(SerializationFactory.LOG, Level.TRACE);
}
static Configuration conf;
static SerializationFactory factory;
@BeforeAll
public static void setup() throws Exception {
conf = new Configuration();
factory = new SerializationFactory(conf);
}
@Test
public void testSerializationKeyIsEmpty() {
Configuration conf = new Configuration();
conf.set(CommonConfigurationKeys.IO_SERIALIZATIONS_KEY, "");
SerializationFactory factory = new SerializationFactory(conf);
}
/**
* Test the case when {@code IO_SERIALIZATIONS_KEY}
* is not set at all, because something unset this key.
* This shouldn't result in any error, the defaults present
* in construction should be used in this case.
*/
@Test
public void testSerializationKeyIsUnset() {
Configuration conf = new Configuration();
conf.unset(CommonConfigurationKeys.IO_SERIALIZATIONS_KEY);
SerializationFactory factory = new SerializationFactory(conf);
}
@Test
public void testSerializationKeyIsInvalid() {
Configuration conf = new Configuration();
conf.set(CommonConfigurationKeys.IO_SERIALIZATIONS_KEY, "INVALID_KEY_XXX");
SerializationFactory factory = new SerializationFactory(conf);
}
@Test
public void testGetSerializer() {
// Test that a valid serializer class is returned when its present
assertNotNull(factory.getSerializer(Writable.class),
"A valid class must be returned for default Writable SerDe");
// Test that a null is returned when none can be found.
assertNull(factory.getSerializer(TestSerializationFactory.class),
"A null should be returned if there are no serializers found.");
}
@Test
public void testGetDeserializer() {
// Test that a valid serializer class is returned when its present
assertNotNull(factory.getDeserializer(Writable.class),
"A valid class must be returned for default Writable SerDe");
// Test that a null is returned when none can be found.
assertNull(factory.getDeserializer(TestSerializationFactory.class),
"A null should be returned if there are no deserializers found");
}
@Test
public void testSerializationKeyIsTrimmed() {
Configuration conf = new Configuration();
conf.set(CommonConfigurationKeys.IO_SERIALIZATIONS_KEY, " org.apache.hadoop.io.serializer.WritableSerialization ");
SerializationFactory factory = new SerializationFactory(conf);
assertNotNull(factory.getSerializer(LongWritable.class),
"Valid class must be returned");
}
}