| Project | Number | Date |
|---|---|---|
| cypher-for-gremlin | 0.9.9 | 07 Jun 2018, 12:04 |
| Steps | Scenarios | Features | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Feature | Passed | Failed | Skipped | Pending | Undefined | Total | Passed | Failed | Total | Duration | Status |
| WhereAcceptance | 5 | 0 | 0 | 0 | 0 | 5 | 1 | 0 | 1 | 1.805 | Passed |
12:02:38.723 [Test worker] INFO o.o.g.r.GremlinServerExternalResource - Running tests using embeded TinkerGraph 12:02:39.014 [Test worker] INFO o.a.t.gremlin.server.GremlinServer - Graph [graph] was successfully configured via [../testware-common/src/main/resources/tinkergraph-empty.properties]. 12:02:39.016 [Test worker] INFO o.a.t.g.s.util.ServerGremlinExecutor - Initialized Gremlin thread pool. Threads in pool named with pattern gremlin-* 12:02:39.091 [Test worker] INFO o.a.t.g.s.util.ServerGremlinExecutor - Initialized GremlinExecutor and preparing GremlinScriptEngines instances. 12:02:40.626 [Test worker] INFO o.a.t.g.s.util.ServerGremlinExecutor - Initialized gremlin-groovy GremlinScriptEngine and registered metrics 12:02:40.628 [Test worker] INFO o.a.t.g.s.util.ServerGremlinExecutor - A GraphTraversalSource is now bound to [g] with graphtraversalsource[tinkergraph[vertices:0 edges:0], standard] 12:02:40.716 [Test worker] INFO o.a.t.gremlin.server.op.OpLoader - Adding the cypher OpProcessor. 12:02:40.719 [Test worker] INFO o.a.t.gremlin.server.op.OpLoader - Adding the standard OpProcessor. 12:02:40.721 [Test worker] INFO o.a.t.gremlin.server.op.OpLoader - Adding the session OpProcessor. 12:02:40.954 [Test worker] INFO o.a.t.gremlin.server.op.OpLoader - Adding the traversal OpProcessor. 12:02:40.964 [Test worker] INFO o.a.t.g.s.o.t.TraversalOpProcessor - Initialized cache for TraversalOpProcessor with size 1000 and expiration time of 600000 ms 12:02:40.989 [Test worker] INFO o.a.t.gremlin.server.GremlinServer - Executing start up LifeCycleHook 12:02:40.999 [Test worker] INFO o.a.t.gremlin.server.GremlinServer - Loading 'modern' graph data. 12:02:41.013 [Test worker] INFO o.a.t.gremlin.server.GremlinServer - idleConnectionTimeout was set to 0 which resolves to 0 seconds when configuring this value - this feature will be disabled 12:02:41.013 [Test worker] INFO o.a.t.gremlin.server.GremlinServer - keepAliveInterval was set to 0 which resolves to 0 seconds when configuring this value - this feature will be disabled 12:02:41.074 [Test worker] INFO o.a.t.g.server.AbstractChannelizer - Configured application/vnd.gremlin-v3.0+gryo with org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV3d0 12:02:41.136 [gremlin-server-boss-1] INFO o.a.t.gremlin.server.GremlinServer - Gremlin Server configured with worker thread pool of 1, gremlin pool of 4 and boss thread pool of 1. 12:02:41.136 [gremlin-server-boss-1] INFO o.a.t.gremlin.server.GremlinServer - Channel started at port 36173. 12:02:41.138 [Test worker] INFO o.o.g.server.EmbeddedGremlinServer - EmbeddedGremlinServer started (port 36173) 12:02:41.282 [Test worker] INFO o.a.t.gremlin.driver.Connection - Created new connection for ws://localhost:36173/gremlin 12:02:41.289 [Test worker] INFO o.a.t.gremlin.driver.Connection - Created new connection for ws://localhost:36173/gremlin 12:02:41.289 [Test worker] INFO o.a.t.gremlin.driver.ConnectionPool - Opening connection pool on Host{address=localhost/127.0.0.1:36173, hostUri=ws://localhost:36173/gremlin} with core size of 2
CREATE ({name: 'a'})
12:02:41.473 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Cypher: CREATE ({name: 'a'}) 12:02:43.011 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Gremlin: g.addV().property('name', 'a').barrier().limit(0)
MATCH (n) WHERE NOT(n.name = 'apa' AND false) RETURN n
12:02:43.549 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Cypher: MATCH (n) WHERE NOT(n.name = 'apa' AND false) RETURN n 12:02:43.593 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Gremlin: g.V().as('n').where(__.not(__.constant(false).is(eq(true)))).select('n').project('n').by(__.choose(neq(' cypher.null'), __.valueMap(true), __.constant(' cypher.null')))
| n |
| ({name: 'a'}) |
12:02:43.611 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Cypher: MATCH (n) RETURN id(n) 12:02:43.622 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Gremlin: g.V().project('id(n)').by(__.choose(neq(' cypher.null'), __.id(), __.constant(' cypher.null'))) 12:02:43.634 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Cypher: MATCH ()-[r]->() RETURN id(r) 12:02:43.651 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Gremlin: g.V().as(' cypher.path.start.GENERATED1').outE().as('r').inV().select('r').project('id(r)').by(__.choose(neq(' cypher.null'), __.id(), __.constant(' cypher.null'))) 12:02:43.669 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Cypher: MATCH (n) UNWIND labels(n) AS label RETURN DISTINCT label 12:02:43.684 [gremlin-server-worker-1] INFO o.o.g.s.op.cypher.CypherOpProcessor - Gremlin: g.V().label().is(neq('vertex')).project('label').by(__.identity()).dedup() -labels: 0 +labels: 0 +nodes: 0 -nodes: 0 -properties: 0 +properties: 0 -relationships: 0 +relationships: 0