Apache Sling Launchpad Integration Tests

Clone this repo:
  1. f4c1baf SLING-11836 - Add Jakarta JSON support to the Sling Starter (#17) by Robert Munteanu · 5 months ago master
  2. d96d96f chore: don't generate javadoc (#18) by Robert Munteanu · 5 months ago
  3. 26294ac SLING-12094 - Use GitHub for the Maven scm.url value by Robert Munteanu · 6 months ago
  4. a2f569a SLING-12088 - Update to Felix HTTP 5.x (#15) by Robert Munteanu · 6 months ago
  5. 036f332 Update to parent pom 48 (#16) by Robert Munteanu · 6 months ago

Apache Sling

Build Status Coverage Sonarcloud Status JavaDoc Maven Central launchpad License

Apache Sling Launchpad Integration Tests

This module is part of the Apache Sling project and contains test classes used by the launchpad/testing module.

To run a single test or a specific set of tests against a running Sling instance, use for example:

mvn test -Dtest=UploadFileTest -Dhttp.port=1234

Where UploadFileTest is the test to run. Wildcards are allowed, and test classes are found in the src/main folder (not a typo - that's not src/test as we want to pack the tests in the jar file that we build).

See the <properties> section in pom.xml for additional parameters that the tests use.

Here's another example, running the tests against a Sling instance running on host xyzzy, port 1234, with the Sling main servlet mounted under /foo:

mvn -o -s /dev/null test \
    -Dhttp.port=1234 \
    -Dtest.host=xyzzy \
    -Dhttp.base.path=foo \
    -Dwebdav.workspace.path=foo \
    -Dlaunchpad.readiness.mediatype=.json:application/json \ 
    -Dtest=**/integrationtest/**/*Test.java

To run or debug tests against the same instance that launchpad/testing module, see that module's README for how to start the test instance.

The standard -Dmaven.surefire.debug option can be used to debug the tests themselves.

Some tests might fail if not using a a Sling instance that's not setup by the launchpad/testing module, as that installs a few additional test bundles.