blob: d44bbe7f285ffa10f7e1f6f55a211615d4d36edd [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.io
//import org.apache.s2graph.core.{EdgeId, S2VertexPropertyId}
import org.apache.s2graph.core.schema.{ColumnMeta, Service, ServiceColumn}
import org.apache.s2graph.core.types.{InnerVal, VertexId}
import org.apache.s2graph.core.utils.logger
import org.scalatest.{FunSuite, Matchers}
//class ConversionsTest extends FunSuite with Matchers {
// import Conversions._
// import org.apache.s2graph.core.types.HBaseType._
//
// test("innerVal test") {
// val value = InnerVal.withStr("a,b,c", DEFAULT_VERSION)
//
// val writer = InnerValLikeWrites
// val reader = InnerValLikeReads
// val json = writer.writes(value)
// val deserialized = reader.reads(json).get
//
// println(s"[Given]: $value")
// println(s"[GivenJson]: $json")
// println(s"[Deserialized]: $deserialized")
// println(s"[DeserializedJson]: ${writer.writes(deserialized)}")
//
// value shouldBe (deserialized)
// }
//
// test("serviceColumn test") {
// val value = Service(Option(1), "serviceName", "accessToken", "cluster", "hTableName", 10, Option(10), None)
// val writer = serviceWrites
// val reader = serviceReads
// val json = writer.writes(value)
// val deserialized = reader.reads(json).get
//
// println(s"[Given]: $value")
// println(s"[GivenJson]: $json")
// println(s"[Deserialized]: $deserialized")
// println(s"[DeserializedJson]: ${writer.writes(deserialized)}")
//
// value shouldBe (deserialized)
//
// }
//
// test("s2VertexPropertyId test") {
//// val column = ServiceColumn(Option(10), 1, "vertex", "string", DEFAULT_VERSION)
// val columnMeta = ColumnMeta(Option(1), 1, "name", 1.toByte, "string")
// val innerVal = InnerVal.withStr("shon", DEFAULT_VERSION)
// val value = S2VertexPropertyId(columnMeta, innerVal)
//
// val writer = s2VertexPropertyIdWrites
// val reader = s2VertexPropertyIdReads
// val json = writer.writes(value)
// val deserialized = reader.reads(json).get
//
// println(s"[Given]: $value")
// println(s"[GivenJson]: $json")
// println(s"[Deserialized]: $deserialized")
// println(s"[DeserializedJson]: ${writer.writes(deserialized)}")
//
// value shouldBe (deserialized)
// }
//
// test("s2VertexId test") {
// val column = ServiceColumn(Option(10), 1, "vertex", "string", DEFAULT_VERSION)
// val innerVal = InnerVal.withStr("vertex.1", DEFAULT_VERSION)
// val value = VertexId(column, innerVal)
//
// val writer = s2VertexIdWrites
// val reader = s2VertexIdReads
// val json = writer.writes(value)
// val deserialized = reader.reads(json).get
//
// println(s"[Given]: $value")
// println(s"[GivenJson]: $json")
// println(s"[Deserialized]: $deserialized")
// println(s"[DeserializedJson]: ${writer.writes(deserialized)}")
//
// value shouldBe (deserialized)
// }
//
// test("EdgeId test") {
// val s =
// s"""
// |{
// | "srcVertexId": {
// | "value": 1,
// | "dataType": "long",
// | "schemaVersion": "v3"
// | },
// | "tgtVertexId": {
// | "value": 2,
// | "dataType": "bigDecimal",
// | "schemaVersion": "v3"
// | },
// | "labelName": "knows",
// | "direction": "out",
// | "ts": 0
// |}
// """.stripMargin
// val value = EdgeId.fromString(s)
//
// val writer = s2EdgeIdWrites
// val reader = s2EdgeIdReads
// val json = writer.writes(value)
// val deserialized = reader.reads(json).get
//
// println(s"[Given]: $value")
// println(s"[GivenJson]: $json")
// println(s"[Deserialized]: $deserialized")
// println(s"[DeserializedJson]: ${writer.writes(deserialized)}")
//
// value shouldBe (deserialized)
// }
//}