Use Spring Test Data Geode instead of containerized geode server

Use spring test data geode in the geode integration tests
test to fork a separate geode process, instead of running
a geode server in a docker container.

STDG is faster than launching Geode through gfsh inside of a container.
- It doesn't run in docker
- It doesn't start management components necessary for gfsh
- It doesn't start extra gfsh shell processes

Removing the GeodeContainer test utility
This commit is contained in:
Dan Smith
2021-01-27 14:13:49 -08:00
committed by David Turanski
parent a08cc17642
commit 943a1c9faa
10 changed files with 127 additions and 373 deletions

View File

@@ -16,7 +16,6 @@
<properties>
<sshd-core.version>1.6.0</sshd-core.version>
<apache-ftpserver.version>1.1.1</apache-ftpserver.version>
<geode-starter.version>1.2.7.RELEASE</geode-starter.version>
<awaitility.version>4.0.3</awaitility.version>
</properties>
@@ -28,12 +27,6 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-geode</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-ftp</artifactId>