~jstys-z/helioviewer.org/client5

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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<?xml version="1.0" encoding="utf-8"?>

<project name="JsUnit" default="create_distribution" basedir=".">

    <!--
     The following are the properties used to configure the JsUnit server.  You need to provide values for the mandatory properties.
     See the documentation at http://www.jsunit.net for more information.
     -->

    <property
            name="browserFileNames"
            value="firefox,opera"
            description="browserFileNames is the list of browsers in which to run tests when StandaloneTest is invoked on this machine. For a JsUnit Server, this is a mandatory property. For example: 'c:\program files\internet explorer\iexplore.exe,c:\program files\netscape\netscape7.1\netscp.exe'"
            />

    <property
            id="closeBrowsersAfterTestRuns"
            name="closeBrowsersAfterTestRuns"
            value=""
            description="closeBrowsersAfterTestRuns determines whether to attempt to close browsers after test runs. This is not a mandatory property. The default is true. For example: 'true'"
            />

    <property
            id="description"
            name="description"
            value=""
            description="description is a human-readable description of a standard or farm server. This is not a mandatory property. The default is blank. For example: 'This is our Mac - it's only running Safari right now'"
            />

    <property
            id="ignoreUnresponsiveRemoteMachines"
            name="ignoreUnresponsiveRemoteMachines"
            value=""
            description="ignoreUnresponsiveRemoteMachines is a property used only by the JsUnit Farm Server and the distributed_test target. Its value is whether to ignore a remove machine that does not respond.  If true, test runs will be green even if one or more remove machines fail to respond; if false, an unresponsive remove machine results in a failure.  This is not a mandatory property.  Its default is false. For example: 'true'"
            />

    <property
            id="logsDirectory"
            name="logsDirectory"
            value=""
            description="logsDirectory is the directory in which the JsUnitStandardServer stores the XML logs produced from tests run. It can be specified relative to the working directory. This is not a mandatory property. If not specified, the directory called 'logs' inside resourceBase is assumed. For example: 'c:\jsunit\java\logs'"
            />

    <property
            id="port"
            name="port"
            value="8081"
            description="port is the port on which the JsUnitStandardServer runs. This is not a mandatory property. If not specified, 8080 is assumed. For exapmle: '8080'"
            />

    <property
            id="remoteMachineURLs"
            name="remoteMachineURLs"
            value=""
            description="remoteMachineURLs is a property used only by the JsUnit Farm Server and the distributed_test target. Its value is the list of URLs of remove machines to which a request to run tests will be sent. For example: 'http://machine1.company.com:8080,http://localhost:8080,http://192.168.1.200:9090'"
            />

    <property
            id="resourceBase"
            name="resourceBase"
            value=""
            description="resourceBase is the directory that the JsUnitStandardServer considers to be its document root. It can be specified relative to the working directory. This is not a mandatory property. If not specified, the working directory is assumed. For example: 'c:\jsunit'"
            />

    <property
            id="timeoutSeconds"
            name="timeoutSeconds"
            value=""
            description="timeoutSeconds is the number of seconds to wait before timing out a browser during a test run. This is not a mandatory property. If not specified, 60 is assumed. For example: '60'"
            />

    <property
            id="url"
            name="url"
            value="http://localhost/hv/lib/jsunit-2.2/testRunner.html?testPage=http://localhost/hv/test/testUserSettings.html"
            description="url is the URL (HTTP or file protocol) to open in the browser. For a JsUnit Server, this is a mandatory property for a test run if the server is not passed the 'url' parameter. For example: 'file:///c:/jsunit/testRunner.html?testPage=c:/jsunit/tests/jsUnitTestSuite.html'"
            />

    <!--
     The remainder of this build file is not intended to be modified by the end user.
     Those targets whose name begins with an underscore are not intended to be run directly by the end user.
     -->

    <property name="source_core" location="java/source_core"/>
    <property name="source_server" location="java/source_server"/>
    <property name="tests_core" location="java/tests_core"/>
    <property name="tests_server" location="java/tests_server"/>
    <property name="bin" location="java/bin"/>
    <property name="lib" location="java/lib"/>
    <property name="testlib" location="java/testlib"/>
    <property name="config" location="java/config"/>
    <property name="loggingPropertiesFile" location="logging.properties"/>
    <property name="morelibs" location="/usr/share/java"/>
   
    <path id="classpath">
        <fileset dir="${lib}">
            <include name="*.jar"/>
            <include name="*/*.jar"/>
        </fileset>
        <fileset dir="${morelibs}">
            <include name="*.jar"/>
            <include name="*/*.jar"/>
        </fileset>
        <fileset dir="${bin}">
            <include name="jsunit.jar"/>
        </fileset>
    </path>

    <path id="self_tests_classpath">
        <fileset dir="${lib}">
            <include name="*.jar"/>
        </fileset>
        <fileset dir="${testlib}">
            <include name="*.jar"/>
        </fileset>
        <fileset dir="${bin}">
            <include name="jsunit.jar"/>
        </fileset>
        <dirset dir="${config}"/>
    </path>

    <target name="_compile_source" description="Compiles the source">
        <delete dir="${bin}/net"/>
        <javac srcdir="${source_core}" destdir="${bin}" debug="true">
            <classpath>
                <fileset dir="${lib}">
                    <include name="*.jar"/>
                </fileset>
            </classpath>
        </javac>
        <javac srcdir="${source_server}" destdir="${bin}" debug="true">
            <classpath>
                <fileset dir="${lib}">
                    <include name="*.jar"/>
                </fileset>
                <path location="${bin}"/>
            </classpath>
        </javac>
    </target>

    <target name="_compile_tests" description="Compiles the self-tests">
        <javac srcdir="${tests_core}" destdir="${bin}" debug="true">
            <classpath refid="self_tests_classpath"/>
        </javac>
        <javac srcdir="${tests_server}" destdir="${bin}" debug="true">
            <classpath refid="self_tests_classpath"/>
        </javac>
    </target>

    <target name="_create_jar" depends="_compile_source" description="Creates jsunit.jar">
        <delete file="${bin}/jsunit.jar"/>
        <jar jarfile="${bin}/jsunit.jar" basedir="${bin}"/>
        <delete dir="${bin}/net"/>
    </target>

    <target name="_generateJsUnitPropertiesSample" description="Generates the jsunit.properties.sample file">
        <xslt in="build.xml" out="jsunit.properties.sample" destdir="."
              style="xsl/buildDotXmlToJsUnitDotProperties.xsl"></xslt>
    </target>

    <target name="_run_unit_tests" depends="_compile_tests" description="Runs the JsUnit Java unit tests">
        <junit fork="yes" haltonfailure="false" forkmode="once" showoutput="yes" printsummary="withOutAndErr"
               failureproperty="junit_test_failed">
            <formatter type="plain" usefile="false"/>
            <classpath refid="self_tests_classpath"/>
            <classpath path="${bin}"/>
            <test name="net.jsunit.UnitTestSuite"/>
        </junit>
        <fail if="junit_test_failed"/>
    </target>

    <target name="_run_all_tests" depends="_create_jar,_compile_tests"
            description="Runs all the JsUnit Java tests.  Used in the continuous build">
        <junit fork="yes" haltonfailure="false" forkmode="once" showoutput="yes" printsummary="withOutAndErr"
               failureproperty="junit_test_failed">
            <formatter type="xml"/>
            <classpath refid="self_tests_classpath"/>
            <classpath path="${bin}"/>
            <sysproperty key="java.security.manager" value="com.thoughtworks.ashcroft.runtime.JohnAshcroft"/>
            <test name="net.jsunit.PureUnitTestSuite"/>
        </junit>
        <junit fork="yes" haltonfailure="false" forkmode="once" showoutput="yes" printsummary="withOutAndErr"
               failureproperty="junit_test_failed">
            <formatter type="xml"/>
            <classpath refid="self_tests_classpath"/>
            <classpath path="${bin}"/>
            <test name="net.jsunit.ImpureUnitTestSuite"/>
        </junit>
        <junit fork="yes" haltonfailure="false" forkmode="once" showoutput="yes" printsummary="withOutAndErr"
               failureproperty="junit_test_failed">
            <formatter type="xml"/>
            <classpath refid="self_tests_classpath"/>
            <classpath path="${bin}"/>
            <test name="net.jsunit.FunctionalTestSuite"/>
        </junit>
        <junit fork="yes" haltonfailure="false" forkmode="once" showoutput="yes" printsummary="withOutAndErr"
               failureproperty="junit_test_failed">
            <formatter type="xml"/>
            <classpath refid="self_tests_classpath"/>
            <classpath path="${bin}"/>
            <test name="net.jsunit.FarmServerFunctionalTestSuite"/>
        </junit>
        <fail if="junit_test_failed"/>
    </target>

    <target name="create_distribution" depends="_create_jar,_run_unit_tests"
            description="Creates and tests the JsUnit distribution"/>

    <target name="start_server" description="Starts a JsUnit Server">
        <java fork="true" classname="net.jsunit.JsUnitStandardServer">
            <classpath refid="classpath"/>
            <sysproperty key="java.util.logging.config.file" value="${loggingPropertiesFile}"/>
            <sysproperty key="description" value="${description}"/>
            <sysproperty key="browserFileNames" value="${browserFileNames}"/>
            <sysproperty key="url" value="${url}"/>
            <sysproperty key="port" value="${port}"/>
            <sysproperty key="resourceBase" value="${resourceBase}"/>
            <sysproperty key="logsDirectory" value="${logsDirectory}"/>
            <sysproperty key="timeoutSeconds" value="${timeoutSeconds}"/>
            <sysproperty key="closeBrowsersAfterTestRuns" value="${closeBrowsersAfterTestRuns}"/>
        </java>
    </target>

    <target name="start_farm_server" description="Starts a JsUnit Farm Server">
        <java fork="true" classname="net.jsunit.JsUnitFarmServer">
            <classpath refid="classpath"/>
            <sysproperty key="java.util.logging.config.file" value="${loggingPropertiesFile}"/>
            <sysproperty key="description" value="${description}"/>
            <sysproperty key="ignoreUnresponsiveRemoteMachines" value="${ignoreUnresponsiveRemoteMachines}"/>
            <sysproperty key="logsDirectory" value="${logsDirectory}"/>
            <sysproperty key="port" value="${port}"/>
            <sysproperty key="remoteMachineURLs" value="${remoteMachineURLs}"/>
            <sysproperty key="resourceBase" value="${resourceBase}"/>
            <sysproperty key="url" value="${url}"/>
        </java>
    </target>

    <target name="stop_server" description="Stops the JsUnit Server">
        <java fork="true" classname="org.mortbay.stop.Main" failonerror="true">
            <classpath refid="classpath"/>
        </java>
    </target>

    <target name="standalone_test" description="Runs tests on the local machine">
        <junit showoutput="true" haltonerror="true" haltonfailure="true">
            <formatter type="plain" usefile="false"/>
            <classpath refid="classpath"/>
            <sysproperty key="browserFileNames" value="${browserFileNames}"/>
            <sysproperty key="description" value="${description}"/>
            <sysproperty key="closeBrowsersAfterTestRuns" value="${closeBrowsersAfterTestRuns}"/>
            <sysproperty key="logsDirectory" value="${logsDirectory}"/>
            <sysproperty key="port" value="${port}"/>
            <sysproperty key="resourceBase" value="${resourceBase}"/>
            <sysproperty key="timeoutSeconds" value="${timeoutSeconds}"/>
            <sysproperty key="url" value="${url}"/>
            <test name="net.jsunit.StandaloneTest"/>
        </junit>
    </target>

    <target name="distributed_test" description="Runs tests the remote machines">
        <junit showoutput="true" haltonerror="true" haltonfailure="true">
            <formatter type="plain" usefile="false"/>
            <classpath refid="classpath"/>
            <sysproperty key="browserFileNames" value="${browserFileNames}"/>
            <sysproperty key="description" value="${description}"/>
            <sysproperty key="ignoreUnresponsiveRemoteMachines" value="${ignoreUnresponsiveRemoteMachines}"/>
            <sysproperty key="logsDirectory" value="${logsDirectory}"/>
            <sysproperty key="port" value="${port}"/>
            <sysproperty key="remoteMachineURLs" value="${remoteMachineURLs}"/>
            <sysproperty key="resourceBase" value="${resourceBase}"/>
            <sysproperty key="url" value="${url}"/>
            <test name="net.jsunit.DistributedTest"/>
        </junit>
    </target>

</project>