The documents listed below stipulate requirements that the Executable Test Suite tests for compliance to. Only one of the standards listed below needs to be supported.
Visit the project documentation website for more information, including the API documentation.
The implementation status of each abstract test is shown here.
The test suite is built using Apache Maven v3.
Step 1. First clone the repo.
Step 2. Then navigate into the local repo.
cd ets-ogcapi-edr10
Step 3. Now clean the project.
mvn clean
Step 4. Now build the project.
mvn package
Note
|
On some operating systems, when building the ETS under Java 11+ for the first time, it may be necessary to run mvn package twice.
|
Note
|
Running mvn package will automatically update the jar file ets-ogcapi-edr10-x.x-SNAPSHOT.jar in the /ets-ogcapi-edr10/docker/teamengine/WEB-INF/lib . To disable this function, modify maven-antrun-plugin in the pom.xml file.
|
The options for running the suite are summarized in
After running mvn clean install site -Pintegration-tests,docker
:
Navigate to the docker folder.
cd ./target/docker/ogccite/ets-ogcapi-edr10/build
Build the docker image.
docker build -t ets-ogcapi-edr10:local .
Run the docker image.
docker run -p 8081:8080 ets-ogcapi-edr10:local
Now visit http://localhost:8081/teamengine
If you would like to get involved, you can:
-
Report an issue such as a defect or an enhancement request
-
Help to resolve an open issue
-
Fix a bug: Fork the repository, apply the fix, and create a pull request
-
Add new tests: Fork the repository, implement and verify the tests on a new topic branch, and create a pull request (don’t forget to periodically rebase long-lived branches so there are no extraneous conflicts)