blob: c5b399006387ddc472f53b932d25c0f46c04768f [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.services.util
import org.scalatest.{BeforeAndAfterEach, FlatSpec, Matchers}
import upickle.default.{read, write}
import org.apache.gearpump.cluster.UserConfig
import org.apache.gearpump.metrics.Metrics.{Counter, MetricType}
import org.apache.gearpump.services.util.UpickleUtil._
import org.apache.gearpump.streaming.ProcessorId
import org.apache.gearpump.streaming.appmaster.{ProcessorSummary, StreamAppMasterSummary}
import org.apache.gearpump.util.Graph
class UpickleSpec extends FlatSpec with Matchers with BeforeAndAfterEach {
"UserConfig" should "serialize and deserialize with upickle correctly" in {
val conf = UserConfig.empty.withString("key", "value")
val serialized = write(conf)
val deserialized = read[UserConfig](serialized)
assert(deserialized.getString("key") == Some("value"))
}
"Graph" should "be able to serialize/deserialize correctly" in {
val graph = new Graph[Int, String](List(0, 1), List((0, "edge", 1)))
val serialized = write(graph)
val deserialized = read[Graph[Int, String]](serialized)
graph.getVertices.toSet shouldBe deserialized.getVertices.toSet
graph.getEdges.toSet shouldBe deserialized.getEdges.toSet
}
"MetricType" should "be able to serialize/deserialize correctly" in {
val metric: MetricType = Counter("counter", 100L)
val serialized = write(metric)
val deserialized = read[MetricType](serialized)
metric shouldBe deserialized
}
"StreamingAppMasterDataDetail" should "serialize and deserialize with upickle correctly" in {
val app = new StreamAppMasterSummary(appId = 0,
processors = Map.empty[ProcessorId, ProcessorSummary],
processorLevels = Map.empty[ProcessorId, Int]
)
val serialized = write(app)
val deserialized = read[StreamAppMasterSummary](serialized)
assert(deserialized == app)
}
}