blob: 0772a5e589d951aa62171a2846007bd66b2ca889 [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.gearpump.serializer
import akka.actor.{ActorSystem, ExtendedActorSystem}
import com.esotericsoftware.kryo.io.{Input, Output}
import com.esotericsoftware.kryo.{Kryo, Serializer => KryoSerializer}
import com.typesafe.config.{ConfigFactory, ConfigValueFactory}
import org.apache.gearpump.cluster.TestUtil
import org.apache.gearpump.serializer.SerializerSpec._
import org.scalatest.mock.MockitoSugar
import org.scalatest.{FlatSpec, Matchers}
import scala.collection.JavaConverters._
import scala.concurrent.Await
import scala.concurrent.duration.Duration
class SerializerSpec extends FlatSpec with Matchers with MockitoSugar {
val config = ConfigFactory.empty.withValue("gearpump.serializers",
ConfigValueFactory.fromAnyRef(Map(classOf[ClassA].getName -> classOf[ClassASerializer].getName,
classOf[ClassB].getName -> classOf[ClassBSerializer].getName).asJava))
"GearpumpSerialization" should "register custom serializers" in {
val serialization = new GearpumpSerialization(config)
val kryo = new Kryo
serialization.customize(kryo)
val forB = kryo.getRegistration(classOf[ClassB])
assert(forB.getSerializer.isInstanceOf[ClassBSerializer])
val forA = kryo.getRegistration(classOf[ClassA])
assert(forA.getSerializer.isInstanceOf[ClassASerializer])
}
"FastKryoSerializer" should "serialize correctly" in {
val myConfig = config.withFallback(TestUtil.DEFAULT_CONFIG.withoutPath("gearpump.serializers"))
val system = ActorSystem("my", myConfig)
val serializer = new FastKryoSerializer(system.asInstanceOf[ExtendedActorSystem])
val bytes = serializer.serialize(new ClassA)
val anotherA = serializer.deserialize(bytes)
assert(anotherA.isInstanceOf[ClassA])
system.terminate()
Await.result(system.whenTerminated, Duration.Inf)
}
}
object SerializerSpec {
class ClassA {}
class ClassASerializer extends KryoSerializer[ClassA] {
override def write(kryo: Kryo, output: Output, `object`: ClassA): Unit = {
output.writeString(classOf[ClassA].getName)
}
override def read(kryo: Kryo, input: Input, `type`: Class[ClassA]): ClassA = {
val className = input.readString()
Class.forName(className).newInstance().asInstanceOf[ClassA]
}
}
class ClassB {}
class ClassBSerializer extends KryoSerializer[ClassA] {
override def write(kryo: Kryo, output: Output, `object`: ClassA): Unit = {}
override def read(kryo: Kryo, input: Input, `type`: Class[ClassA]): ClassA = {
null
}
}
}