summaryrefslogtreecommitdiffstats
path: root/uitest/build.xml
blob: c0d6aff78405a0e06b31dd457c1c8fbdfd3f8492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?xml version="1.0"?>

<project name="vaadin-uitest" basedir="." default="compile"
    xmlns:ivy="antlib:org.apache.ivy.ant">
    <description>
        Provides a uitest WAR containing Vaadin UI tests
    </description>
    <include file="../common.xml" as="common" />

    <!-- global properties -->
    <property name="module.name" value="vaadin-uitest" />
    <property name="uitest.dir" location="${vaadin.basedir}/uitest" />
    <property name="result.dir" value="result" />
    <property name="theme.result.dir" value="${result.dir}/VAADIN/themes" />
    <property name="result.war"
        location="${result.dir}/lib/${module.name}-${vaadin.version}.war" />

    <!-- Need to give a default value to keep Ivy happy -->
    <property name="vaadin.build.repository" value="http://maven.vaadin.com/vaadin-prerelease"/>

    <path id="classpath.compile.custom">
    </path>

    <target name="dependencies">
        <!-- This is copied from common.xml to be able to add server.test.source 
            to the source path -->

        <ivy:resolve log="download-only" resolveid="common"
            conf="build, build-provided" />
        <ivy:cachepath pathid="classpath.compile.dependencies"
            conf="build, build-provided" />
    </target>

    <target name="compile" description="Compiles the module"
        depends="dependencies">

        <fail unless="module.name" message="No module name given" />
        <property name="result.dir" location="result" />
        <property name="src" location="${result.dir}/../src/main/java" />
        <property name="test.src" location="${result.dir}/../src/test/java" />
        <property name="classes" location="${result.dir}/classes" />
        <property name="server.test.sources" location="${result.dir}/../../server/src/test/java" />
        <mkdir dir="${classes}" />

        <javac destdir="${classes}" source="${vaadin.java.version}"
            target="${vaadin.java.version}" debug="true" encoding="UTF-8"
            includeantruntime="false">
            <src path="${src}" />
            <classpath location="${classes}" />
            <classpath refid="classpath.compile.dependencies" />
            <classpath refid="classpath.compile.custom" />
        </javac>
        
        <javac destdir="${classes}" source="${vaadin.java.version}"
            target="${vaadin.java.version}" debug="true" encoding="UTF-8"
            includeantruntime="false">
            <src path="${test.src}" />
            <classpath location="${classes}" />
            <classpath refid="classpath.compile.dependencies" />
            <classpath refid="classpath.compile.custom" />
        </javac>
    </target>

    <target name="clean">
        <fail unless="result.dir" message="No result.dir parameter given" />
        <delete dir="${result.dir}" />
    </target>
    <target name="test">
    </target>

    <target name="test-testbench" depends="clean-testbench-errors"
        description="Run all TestBench based tests, including server tests">
        <parallel>
            <daemons>
                <!-- Start server -->
                <ant antfile="${uitest.dir}/vaadin-server.xml"
                    inheritall="true" inheritrefs="true" target="deploy-and-start" />
            </daemons>
            <sequential>
                <!-- Server tests -->

                <!-- Sleep before running integration tests so testbench 
                    2 tests have time to compile and start -->
                <sleep minutes="4" />
                <ant antfile="${uitest.dir}/integration_tests.xml"
                    target="integration-test-all" inheritall="false"
                    inheritrefs="false">
                    <property name="demo.war" value="${war.file}" />
                </ant>
            </sequential>
            <sequential>
                <!-- Wait for server to start -->
                <ant antfile="${uitest.dir}/vaadin-server.xml"
                    target="wait-for-startup" />

                    <!-- TestBench 3 tests -->
                    <ant antfile="${uitest.dir}/tb3test.xml"
                        target="run-all-tb3-tests" inheritall="true" />
                    <echo message="TestBench 3 tests complete" />
            </sequential>
        </parallel>
    </target>

    <target name="fetch-war">
        <mkdir dir="${vaadin.basedir}/uitest/target"/>
        <get src="${vaadin.build.repository}/com/vaadin/vaadin-uitest/${vaadin.version}/vaadin-uitest-${vaadin.version}.war" dest="${vaadin.basedir}/uitest/target/vaadin-uitest-${vaadin.version}.war"/>
    </target>

    <target name="test-server" depends="clean-testbench-errors">
        <property name="war.file"
            location="${vaadin.basedir}/uitest/target/vaadin-uitest-${vaadin.version}.war" />
        <parallel>
            <daemons>
                <ant antfile="${uitest.dir}/vaadin-server.xml"
                    inheritall="true" inheritrefs="true" target="deploy-and-start" />
            </daemons>
            <sequential>
                <ant antfile="${uitest.dir}/integration_tests.xml"
                    target="integration-test-all" inheritall="false"
                    inheritrefs="false">
                    <property name="demo.war" value="${war.file}" />
                </ant>
            </sequential>
        </parallel>
    </target>

    <target name="test-tb3" depends="clean-testbench-errors,compile">
        <property name="war.file"
            location="${vaadin.basedir}/uitest/target/vaadin-uitest-${vaadin.version}.war" />
        <mkdir dir="${vaadin.basedir}/result" />
        <parallel>
            <daemons>
                <ant antfile="${uitest.dir}/vaadin-server.xml"
                    inheritall="true" inheritrefs="true" target="deploy-and-start" />
            </daemons>
            <sequential>
                <ant antfile="${uitest.dir}/vaadin-server.xml"
                    target="wait-for-startup" />
                <ant antfile="${uitest.dir}/tb3test.xml" target="run-all-tb3-tests"
                    inheritall="true" />
            </sequential>
        </parallel>
    </target>

    <target name="clean-testbench-errors">
        <fail unless="com.vaadin.testbench.screenshot.directory"
            message="Define screenshot directory using -Dcom.vaadin.testbench.screenshot.directory" />
        <mkdir dir="${com.vaadin.testbench.screenshot.directory}/errors" />
        <delete>
            <fileset
                dir="${com.vaadin.testbench.screenshot.directory}/errors">
                <include name="*" />
            </fileset>
        </delete>
    </target>


</project>