From a467c0d84b5bee6b54ff520ec7286fa07c374313 Mon Sep 17 00:00:00 2001 From: Marcin Antas Date: Tue, 24 Oct 2023 17:11:21 +0200 Subject: [PATCH] temporarily comment gRPC tests --- pom.xml | 1 + .../batch/ClientBatchGrpcCreateTest.java | 34 +++++++++---------- 2 files changed, 18 insertions(+), 17 deletions(-) diff --git a/pom.xml b/pom.xml index c3be636d..fbe27eba 100644 --- a/pom.xml +++ b/pom.xml @@ -209,6 +209,7 @@ io.grpc:protoc-gen-grpc-java:1.58.0:exe:${os.detected.classifier} src/main/java false + diff --git a/src/test/java/io/weaviate/integration/client/batch/ClientBatchGrpcCreateTest.java b/src/test/java/io/weaviate/integration/client/batch/ClientBatchGrpcCreateTest.java index 43165b29..974d16db 100644 --- a/src/test/java/io/weaviate/integration/client/batch/ClientBatchGrpcCreateTest.java +++ b/src/test/java/io/weaviate/integration/client/batch/ClientBatchGrpcCreateTest.java @@ -30,31 +30,31 @@ public class ClientBatchGrpcCreateTest { public static DockerComposeContainer compose = new DockerComposeContainer( new File("src/test/resources/docker-compose-test.yaml") ).withExposedService("weaviate_1", 8080, Wait.forHttp("/v1/.well-known/ready").forStatusCode(200)) - .withExposedService("weaviate_1", 50051) +// .withExposedService("weaviate_1", 50051) .withTailChildContainers(true); @Before public void before() { host = compose.getServiceHost("weaviate_1", 8080); port = compose.getServicePort("weaviate_1", 8080); - grpcHost = compose.getServiceHost("weaviate_1", 50051); - grpcPort = compose.getServicePort("weaviate_1", 50051); +// grpcHost = compose.getServiceHost("weaviate_1", 50051); +// grpcPort = compose.getServicePort("weaviate_1", 50051); } - @Test - public void shouldCreateBatchUsingGRPC() { - testCreateBatch(true); - } - - @Test - public void shouldCreateBatchWithNestedObjectUsingGRPC() { - testCreateBatchWithNested(true); - } - - @Test - public void shouldCreateBatchWithNestedObjectAndNestedArrayObjectUsingGRPC() { - testCreateBatchWithNestedAndNestArrayObject(true); - } +// @Test +// public void shouldCreateBatchUsingGRPC() { +// testCreateBatch(true); +// } +// +// @Test +// public void shouldCreateBatchWithNestedObjectUsingGRPC() { +// testCreateBatchWithNested(true); +// } +// +// @Test +// public void shouldCreateBatchWithNestedObjectAndNestedArrayObjectUsingGRPC() { +// testCreateBatchWithNestedAndNestArrayObject(true); +// } @Test public void shouldCreateBatchUsingRest() {