From 1abf571e2618248010b8cd5035405e0557ff0789 Mon Sep 17 00:00:00 2001 From: FaKod Date: Tue, 14 Feb 2012 07:51:52 +0100 Subject: [PATCH] removed test classes --- examples/eu/fakod/examples/DSLTest.scala | 62 ------ examples/eu/fakod/examples/RelationTest.scala | 179 ------------------ 2 files changed, 241 deletions(-) delete mode 100644 examples/eu/fakod/examples/DSLTest.scala delete mode 100644 examples/eu/fakod/examples/RelationTest.scala diff --git a/examples/eu/fakod/examples/DSLTest.scala b/examples/eu/fakod/examples/DSLTest.scala deleted file mode 100644 index 3b4cf7a..0000000 --- a/examples/eu/fakod/examples/DSLTest.scala +++ /dev/null @@ -1,62 +0,0 @@ -package eu.fakod.examples - -import org.neo4j.graphdb.Traverser.Order -import collection.mutable.Buffer -import org.neo4j.graphdb._ -import org.neo4j.scala.{EmbeddedGraphDatabaseServiceProvider, Neo4jWrapper} - -/** - * - * @author Christopher Schmidt - * Date: 22.11.11 - * Time: 07:25 - */ - -object QueryVariable extends Enumeration { - val a, b, c, d, e, f, g = Value -} - -trait Match { - def OUT = Direction.OUTGOING.asInstanceOf[Object] - - def IN = Direction.INCOMING.asInstanceOf[Object] - - def BREADTH_FIRST = Order.BREADTH_FIRST - - def -- = new { - def apply(s: String) = new { - val list = Buffer[Object]() - - def --> = { - list.prepend(OUT) - list.prepend(DynamicRelationshipType.withName(s).asInstanceOf[Object]) - list - } - - def --(s: String) = { - list += DynamicRelationshipType.withName(s).asInstanceOf[Object] - list += OUT - this - } - } - } - - -} - -import QueryVariable._ - -//object MatchTest extends App with Match { -// //with Neo4jWrapper with EmbeddedGraphDatabaseServiceProvider { -// -// val t1 = --("CODED_BY") -- ("KNOWS") --> -// -// println(t1) -// -// val t2 = start(a = node) { -// MATCH(a -- ("CODED_BY") -- b -- ("KNOWS") --> c) -// RETURN(b[Matrix]) -// } { -// s => -// } -//} \ No newline at end of file diff --git a/examples/eu/fakod/examples/RelationTest.scala b/examples/eu/fakod/examples/RelationTest.scala deleted file mode 100644 index dbf62cf..0000000 --- a/examples/eu/fakod/examples/RelationTest.scala +++ /dev/null @@ -1,179 +0,0 @@ -package eu.fakod.examples - -import collection.mutable.Buffer -import org.neo4j.graphdb.Traverser.Order -import org.neo4j.graphdb.{Direction, DynamicRelationshipType} - -/** - * - * @author Christopher Schmidt - * Date: 18.01.12 - * Time: 06:57 - */ - -object PathVar extends Enumeration { - type PathVar = Value - val A, B, C, D, E, F, G, No, x = Value -} - -import PathVar._ - -object Dir extends Enumeration { - type Dir = Value - val IN, OUT, NONE = Value -} - -import Dir._ - -class RelationBuffer(firstString: String, pv: PathVar, d: Dir) { - - val pathVarBuf = Buffer[PathVar]() - val stringBuf = Buffer[String]() - val dirBuf = Buffer[Dir]() - - if (pv != null) pathVarBuf += pv - if (firstString != null) stringBuf += firstString - if (d != null) dirBuf += d - - def this(pv: PathVar) = this (null, pv, null) - - def this(s: String) = this (s, null, null) - - def this(s: String, d: Dir) = this (s, null, d) - - - private def store(s: String, d: Dir, pv: PathVar) = { - stringBuf += s - dirBuf += d - if (pv != null) pathVarBuf += pv - } - - private def store(pv: PathVar, d: Dir) = { - pathVarBuf += pv - if (d != null) dirBuf += d - } - - private def store(s: String, d: Dir) = { - stringBuf += s - if (d != null) dirBuf += d - } - - private def store(s: String, pv: PathVar) = { - stringBuf += s - pathVarBuf += pv - } - - private def store(d: Dir) = dirBuf += d - - private def arrowRight = { - dirBuf.remove(dirBuf.length - 1) - dirBuf += OUT - } - - def --(s: String) = { - store(s, NONE) - this - } - - def --(pv: PathVar) = { - store(pv, NONE) - this - } - - def --() = { - store(NONE) - this - } - - def ->-(s: String) = { - arrowRight - store(s, No) - this - } - - def ->-(pv: PathVar) = { - arrowRight - pathVarBuf += pv - this - } - - def ->-() = { - arrowRight - pathVarBuf += No - this - } - - def -<-(s: String) = { - store(s, IN) - this - } - - def -<-(pv: PathVar) = { - store(pv, IN) - this - } - - def -<-() = { - store(IN) - this - } - - override def toString = ("\npathVarBuf: " + pathVarBuf + " stringBuf: " + stringBuf + " dirBuf: " + dirBuf) -} - -trait DoRelation { - // def OUT = Direction.OUTGOING.asInstanceOf[Object] - // - // def IN = Direction.INCOMING.asInstanceOf[Object] - // - // def BREADTH_FIRST = Order.BREADTH_FIRST - - implicit def toRelationBuffer(pv: PathVar) = new RelationBuffer(pv) - - def --(s: String) = new RelationBuffer(s, No, NONE) - - def -<-(s: String) = new RelationBuffer(s, No, IN) - -} - -object RelationTest extends App with DoRelation { - - def aa = A -<- "aaKNOWS" ->- B -- "CODED_BY" ->- C - - def bb = x -- ("bbKNOWS") ->- B -<- "CODED_BY" -- C - - def cc = A -- ("ccKNOWS") ->- x -- ("CODED_BY") ->- C - - def dd = A -- ("ddKNOWS") ->- B -- ("CODED_BY") ->- x - - def ee = --("eeKNOWS") ->- ("CODED_BY") ->- - - def ff = -<-("ffKNOWS") -- ("CODED_BY") ->- - - def gg = --("ggKNOWS") -- ("CODED_BY") -- - - def hh = --("hhKNOWS") -<- ("CODED_BY") -- - - - def ii = A -- "iiKNOWS" ->- E -- "CODED_BY" ->- - - def jj = A -<- ("jjKNOWS") -- E -- "CODED_BY" -- - - def kk = C -- "kkKNOWS" -- "CODED_BY" -- "WHAT_EVER" ->- - - def ll = D -- "llKNOWS" -<- "CODED_BY" -- - - - println(aa) - println(bb) - println(cc) - println(dd) - println(ee) - println(ff) - println(gg) - println(hh) - println(ii) - println(jj) - println(kk) - println(ll) -} \ No newline at end of file