| Project | Number | Date |
|---|---|---|
| cypher-for-gremlin | 0.9.12 | 13 Sep 2018, 16:07 |
| 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.003 | Passed |
16:06:37.691 [Test worker] INFO o.o.g.r.GremlinServerExternalResource - Running tests using embeded TinkerGraph 16:06:37.961 [Test worker] INFO o.a.t.g.s.GremlinServer - Graph [graph] was successfully configured via [../testware-common/src/main/resources/tinkergraph-empty.properties]. 16:06:37.963 [Test worker] INFO o.a.t.g.s.u.ServerGremlinExecutor - Initialized Gremlin thread pool. Threads in pool named with pattern gremlin-* 16:06:38.041 [Test worker] INFO o.a.t.g.s.u.ServerGremlinExecutor - Initialized GremlinExecutor and preparing GremlinScriptEngines instances. 16:06:39.395 [Test worker] INFO o.a.t.g.s.u.ServerGremlinExecutor - Initialized gremlin-groovy GremlinScriptEngine and registered metrics 16:06:39.396 [Test worker] INFO o.a.t.g.s.u.ServerGremlinExecutor - A GraphTraversalSource is now bound to [g] with graphtraversalsource[tinkergraph[vertices:0 edges:0], standard] 16:06:39.414 [Test worker] INFO o.a.t.g.s.op.OpLoader - Adding the cypher OpProcessor. 16:06:39.417 [Test worker] INFO o.a.t.g.s.op.OpLoader - Adding the standard OpProcessor. 16:06:39.419 [Test worker] INFO o.a.t.g.s.op.OpLoader - Adding the session OpProcessor. 16:06:39.644 [Test worker] INFO o.a.t.g.s.op.OpLoader - Adding the traversal OpProcessor. 16:06:39.650 [Test worker] INFO o.a.t.g.s.o.t.TraversalOpProcessor - Initialized cache for TraversalOpProcessor with size 1000 and expiration time of 600000 ms 16:06:39.676 [Test worker] INFO o.a.t.g.s.GremlinServer - Executing start up LifeCycleHook 16:06:39.686 [Test worker] INFO o.a.t.g.s.GremlinServer - Loading 'modern' graph data. 16:06:39.696 [Test worker] INFO o.a.t.g.s.GremlinServer - idleConnectionTimeout was set to 0 which resolves to 0 seconds when configuring this value - this feature will be disabled 16:06:39.697 [Test worker] INFO o.a.t.g.s.GremlinServer - keepAliveInterval was set to 0 which resolves to 0 seconds when configuring this value - this feature will be disabled 16:06:39.745 [Test worker] INFO o.a.t.g.s.AbstractChannelizer - Configured application/vnd.gremlin-v3.0+gryo with org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV3d0 16:06:39.795 [gremlin-server-boss-1] INFO o.a.t.g.s.GremlinServer - Gremlin Server configured with worker thread pool of 1, gremlin pool of 4 and boss thread pool of 1. 16:06:39.795 [gremlin-server-boss-1] INFO o.a.t.g.s.GremlinServer - Channel started at port 36913. 16:06:39.795 [Test worker] INFO o.o.g.s.EmbeddedGremlinServer - EmbeddedGremlinServer started (port 36913) 16:06:39.822 [Test worker] DEBUG o.a.t.g.driver.Client - Initializing client on cluster [localhost/127.0.0.1:36913] 16:06:39.932 [Test worker] INFO o.a.t.g.d.Connection - Created new connection for ws://localhost:36913/gremlin 16:06:39.937 [Test worker] INFO o.a.t.g.d.Connection - Created new connection for ws://localhost:36913/gremlin 16:06:39.937 [Test worker] INFO o.a.t.g.d.ConnectionPool - Opening connection pool on Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin} with core size of 2 16:06:39.940 [Test worker] DEBUG o.a.t.g.driver.Client - g.V().drop()}} to - Connection{host=Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin}}
CREATE ({name: 'a'})
16:06:40.095 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Cypher: CREATE ({name: 'a'}) 16:06:40.098 [Test worker] DEBUG o.a.t.g.driver.Client - CREATE ({name: 'a'})}} to - Connection{host=Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin}} 16:06:40.853 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Gremlin: g.addV().property(single, 'name', 'a').barrier().limit(0)
MATCH (n) WHERE NOT(n.name = 'apa' AND false) RETURN n
16:06:41.188 [Test worker] DEBUG o.a.t.g.driver.Client - MATCH (n) WHERE NOT(n.name = 'apa' AND false) RETURN n}} to - Connection{host=Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin}} 16:06:41.188 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Cypher: MATCH (n) WHERE NOT(n.name = 'apa' AND false) RETURN n 16:06:41.241 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Gremlin: g.V().as('n').where(__.not(__.constant(false).is(eq(true)))).select('n').project('n').by(__.valueMap(true))
| n |
| ({name: 'a'}) |
16:06:41.259 [Test worker] DEBUG o.a.t.g.driver.Client - MATCH (n) RETURN id(n)}} to - Connection{host=Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin}} 16:06:41.264 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Cypher: MATCH (n) RETURN id(n) 16:06:41.275 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Gremlin: g.V().project('id(n)').by(__.id()) 16:06:41.277 [Test worker] DEBUG o.a.t.g.driver.Client - MATCH ()-[r]->() RETURN id(r)}} to - Connection{host=Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin}} 16:06:41.278 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Cypher: MATCH ()-[r]->() RETURN id(r) 16:06:41.292 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Gremlin: g.E().project('id(r)').by(__.id()) 16:06:41.307 [Test worker] DEBUG o.a.t.g.driver.Client - MATCH (n) UNWIND labels(n) AS label RETURN DISTINCT label}} to - Connection{host=Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin}} 16:06:41.307 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Cypher: MATCH (n) UNWIND labels(n) AS label RETURN DISTINCT label 16:06:41.319 [gremlin-server-worker-1] INFO o.o.g.s.o.c.CypherOpProcessor - Gremlin: g.V().label().is(neq('vertex')).project('label').by(__.identity()).dedup() 16:06:41.357 [Test worker] DEBUG o.a.t.g.driver.Client - g.V().as('V').properties().project('nodeId', 'key', 'value').by(__.select('V').id()).by(__.key()).by(__.value())}} to - Connection{host=Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin}} 16:06:41.370 [Test worker] DEBUG o.a.t.g.driver.Client - g.V().outE().as('E').properties().project('relId', 'key', 'value').by(__.select('E').id()).by(__.key()).by(__.value())}} to - Connection{host=Host{address=localhost/127.0.0.1:36913, hostUri=ws://localhost:36913/gremlin}} -labels: 0 +labels: 0 +nodes: 0 -nodes: 0 -properties: 0 +properties: 0 -relationships: 0 +relationships: 0