You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Anna Koskinen 2f9285ffa8
Update copyright year range. (#12215) (#12228)
3 years ago
..
addon-using-init-param-widget-set Update to 8.12-snapshot (#11995) 4 years ago
addon-using-no-defined-widget-set Update to 8.12-snapshot (#11995) 4 years ago
addon-using-own-widget-set Update to 8.12-snapshot (#11995) 4 years ago
bean-api-validation Update to 8.12-snapshot (#11995) 4 years ago
bean-impl-validation Update to 8.12-snapshot (#11995) 4 years ago
cdi Update to 8.12-snapshot (#11995) 4 years ago
default-widget-set Update to 8.12-snapshot (#11995) 4 years ago
dependency-rewrite Update to 8.12-snapshot (#11995) 4 years ago
dependency-rewrite-addon Update to 8.12-snapshot (#11995) 4 years ago
own-widget-set Update to 8.12-snapshot (#11995) 4 years ago
servlet-containers Update copyright year range. (#12215) (#12228) 3 years ago
space in directory Update to 8.12-snapshot (#11995) 4 years ago
spring-boot Update to 8.12-snapshot (#11995) 4 years ago
spring-boot-subcontext Update to 8.12-snapshot (#11995) 4 years ago
vaadin7-widget-set Update to 8.12-snapshot (#11995) 4 years ago
vaadinservletconfiguration-widget-set Update to 8.12-snapshot (#11995) 4 years ago
widget-set-testutil Bump JUnit from 4.12 to 4.13.1 (#12122) (#12130) 3 years ago
README.md Add maven based server tests for Wildfly and Jetty (#10116) 6 years ago
pom.xml Bump jetty.version from 9.4.34.v20201102 to 9.4.35.v20201120 (#12164) (#12167) 3 years ago

README.md

Vaadin Test

This is a test project to verify the basic functionality of various related plugins and addons.

General use

To validate a given Vaadin Version, run mvn clean verify -Dvaadin.version=VERSIONNUMBER.

Server testing

To validate only server compatibility, run mvn clean verify -Dvaadin.version=VERSIONNUMBER in the servlet-containers module.

To test only a subset of the servers, there are profiles with the server name. For example -P wildfly runs all Wildfly tests, -P glassfish,jetty runs all the Glassfish and Jetty tests.

Running an individual test locally

To install dependencies for testing an individual module locally, run mvn clean install -Dinstall.skip=false in the dependency module.

For example you can install all dependencies for running any individual server test module with the following command in the test root:

mvn clean install -Dinstall.skip=false -pl .,servlet-containers,servlet-containers/generic-ui,servlet-containers/generic-tests

This will install the parent POMs on both levels as well as the UI and server test dependencies.