blob: 255d9c01e1278247206448d57a9dbe03d922358d [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.apex.malhar.lib.utils.serde;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.junit.Assert;
import org.junit.Test;
import com.esotericsoftware.kryo.io.Input;
import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
import com.datatorrent.netlet.util.Slice;
public class CollectionSerdeTest
{
@Test
public void testSerdeList()
{
CollectionSerde<String, List<String>> serdeList =
new CollectionSerde<>(new StringSerde(), (Class)ArrayList.class);
List<String> stringList = Lists.newArrayList("a", "b", "c");
SerializationBuffer buffer = new SerializationBuffer(new WindowedBlockStream());
serdeList.serialize(stringList, buffer);
Slice slice = buffer.toSlice();
List<String> deserializedList = serdeList.deserialize(new Input(slice.buffer, slice.offset, slice.length));
Assert.assertEquals(stringList, deserializedList);
}
@Test
public void testSerdeSet()
{
CollectionSerde<String, Set<String>> serdeSet =
new CollectionSerde<>(new StringSerde(), (Class)HashSet.class);
Set<String> stringList = Sets.newHashSet("a", "b", "c");
SerializationBuffer buffer = new SerializationBuffer(new WindowedBlockStream());
serdeSet.serialize(stringList, buffer);
Slice slice = buffer.toSlice();
Set<String> deserializedSet = serdeSet.deserialize(new Input(slice.buffer, slice.offset, slice.length));
Assert.assertEquals(stringList, deserializedSet);
}
}