blob: 1843a57df7dfee18b7de87f3b97445590dd0c5fb [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.s2graph.core.schema
import org.apache.s2graph.core.TestCommonWithModels
import org.apache.s2graph.core.utils.SafeUpdateCache
import org.scalatest.{BeforeAndAfterAll, FunSuite, Matchers}
class SchemaTest extends FunSuite with Matchers with TestCommonWithModels with BeforeAndAfterAll {
override def beforeAll(): Unit = {
initTests()
}
override def afterAll(): Unit = {
graph.shutdown()
}
test("test Label.findByName") {
val labelOpt = Label.findByName(labelName, useCache = false)
println(labelOpt)
labelOpt.isDefined shouldBe true
val indices = labelOpt.get.indices
indices.size > 0 shouldBe true
println(indices)
val defaultIndexOpt = labelOpt.get.defaultIndex
println(defaultIndexOpt)
defaultIndexOpt.isDefined shouldBe true
val metas = labelOpt.get.metaProps
println(metas)
metas.size > 0 shouldBe true
val srcService = labelOpt.get.srcService
println(srcService)
val tgtService = labelOpt.get.tgtService
println(tgtService)
val service = labelOpt.get.service
println(service)
val srcColumn = labelOpt.get.srcService
println(srcColumn)
val tgtColumn = labelOpt.get.tgtService
println(tgtColumn)
}
test("serialize/deserialize Schema.") {
import scala.collection.JavaConverters._
val originalMap = Schema.safeUpdateCache.asMap().asScala
val newCache = new SafeUpdateCache(Schema.maxSize, Schema.ttl)(scala.concurrent.ExecutionContext.Implicits.global)
Schema.fromBytes(newCache, Schema.toBytes())
val newMap = newCache.asMap().asScala
originalMap.size shouldBe newMap.size
originalMap.keySet shouldBe newMap.keySet
originalMap.keySet.foreach { key =>
val (originalVal, _, _) = originalMap(key)
val (newVal, _, _) = newMap(key)
originalVal shouldBe newVal
}
}
}