vaadin-framework/uitest/tb3test.xml
Sauli Tähkäpää 3775a7ff90 Added categories inclusion and exclusion feature to TB3TestSuite.
Added test category annotation.
Added default values for properties.
Added categories to tests.

Change-Id: I04259f1e56a75eb8c9834c125f44cb375196ddf8
2014-03-28 08:55:13 +00:00

46 lines
2.1 KiB
XML

<?xml version="1.0"?>
<project name="tb3test" xmlns:antcontrib="antlib:net.sf.antcontrib" xmlns:ivy="antlib:org.apache.ivy.ant" basedir=".">
<dirname property="tb3test.dir" file="${ant.file.tb3test}" />
<property name="report.dir" location="${tb3test.dir}/result/reports-tb3" />
<property name="browsers.include" value="" />
<property name="browsers.exclude" value="" />
<property name="categories.include" value="" />
<property name="categories.exclude" value="" />
<ivy:resolve file="${tb3test.dir}/ivy.xml" conf="build, build-provided" />
<ivy:cachepath pathid="classpath.tb3.lib" conf="build, build-provided" />
<path id="classpath.tb3">
<path refid="classpath.tb3.lib" />
<path location="${tb3test.dir}/result/classes" />
</path>
<target name="run-all-tb3-tests" unless="tests.tb3.skip" description="Run all the TB3 tests (except server tests) in the project">
<antcall target="run-tb3-suite">
<param name="junit.test.suite" value="com.vaadin.tests.tb3.AllTB3Tests" />
</antcall>
</target>
<target name="run-tb3-suite">
<fail unless="junit.test.suite" message="Define suite to run using junit.test.suite" />
<fail unless="com.vaadin.testbench.screenshot.directory" message="Define screenshot directory using -Dcom.vaadin.testbench.screenshot.directory" />
<delete dir="${report.dir}" />
<mkdir dir="${report.dir}" />
<junit showoutput="no" printsummary="no" fork="yes">
<formatter type="xml" />
<classpath refid="classpath.tb3" />
<jvmarg value="-Dcom.vaadin.testbench.screenshot.directory=${com.vaadin.testbench.screenshot.directory}" />
<jvmarg value="-Djava.awt.headless=true" />
<jvmarg value="-Dbrowsers.include=${browsers.include}" />
<jvmarg value="-Dbrowsers.exclude=${browsers.exclude}" />
<jvmarg value="-Dcategories.include=${categories.include}" />
<jvmarg value="-Dcategories.exclude=${categories.exclude}" />
<test name="${junit.test.suite}" todir="${report.dir}" />
</junit>
</target>
</project>