Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Zhe Sun 45e7afb51c
Small updates to servlet container test setup. (#12318)
před 3 roky
..
addon-using-init-param-widget-set Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
addon-using-no-defined-widget-set Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
addon-using-own-widget-set Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
bean-api-validation Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
bean-impl-validation Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
cdi Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
default-widget-set Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
dependency-rewrite Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
dependency-rewrite-addon Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
own-widget-set Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
servlet-containers Small updates to servlet container test setup. (#12318) před 3 roky
space in directory Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
spring-boot Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
spring-boot-subcontext Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
vaadin7-widget-set Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
vaadinservletconfiguration-widget-set Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
widget-set-testutil Update 8.14-SNAPSHOT and release note (#12261) před 3 roky
README.md Add maven based server tests for Wildfly and Jetty (#10116) před 6 roky
pom.xml Update 8.14-SNAPSHOT and release note (#12261) před 3 roky

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.