This is an automated email from the ASF dual-hosted git repository.
valentyn pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
from 3d027c01d2 Merge branch '3.6-dev'
new a8ad859663 Adds gremlin socket server tests in GLVs
new 0f578cf090 improve js code style
new 713c5726fa Merge pull request #1915 from
Bit-Quill/cole/socket-server-refactor-glv-tests
The 19234 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
gremlin-dotnet/docker-compose.yml | 10 ++
.../Gremlin.Net.IntegrationTest/ConfigProvider.cs | 2 +
.../GremlinClientBehaviorIntegrationTests.cs | 88 ++++++++++++++++
.../Gremlin.Net.IntegrationTest.csproj | 1 +
.../Util/SocketServerSettings.cs | 86 ++++++++++++++++
.../Gremlin.Net.IntegrationTest/appsettings.json | 6 +-
.../WebSocketClientBehaviorIntegrateTest.java | 1 +
gremlin-go/docker-compose.yml | 11 ++
gremlin-go/driver/client_test.go | 112 +++++++++++++++++++++
gremlin-go/go.sum | 2 +
.../gremlin-javascript/docker-compose.yml | 6 ++
.../javascript/gremlin-javascript/test/helper.js | 33 ++++++
.../test/integration/client-behavior-tests.js | 53 ++++++++++
gremlin-python/docker-compose.yml | 12 +++
gremlin-python/src/main/python/setup.py | 3 +-
gremlin-python/src/main/python/tests/conftest.py | 37 +++++++
.../driver/test_web_socket_client_behavior.py | 42 ++++++++
.../conf/test-ws-gremlin.yaml | 5 +-
.../socket/server/SocketServerSettings.java | 4 +
.../socket/server/TestWSGremlinInitializer.java | 48 ++++++---
20 files changed, 545 insertions(+), 17 deletions(-)
create mode 100644
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Driver/GremlinClientBehaviorIntegrationTests.cs
create mode 100644
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Util/SocketServerSettings.cs
create mode 100644
gremlin-javascript/src/main/javascript/gremlin-javascript/test/integration/client-behavior-tests.js
create mode 100644
gremlin-python/src/main/python/tests/driver/test_web_socket_client_behavior.py