File: build.xml

package info (click to toggle)
axis 1.4-29
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 52,100 kB
  • sloc: java: 129,124; xml: 10,602; jsp: 983; sh: 84; cs: 36; makefile: 18
file content (164 lines) | stat: -rw-r--r-- 4,879 bytes parent folder | download | duplicates (10)
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE project [
        <!ENTITY properties SYSTEM "file:../../xmls/properties.xml">
        <!ENTITY paths  SYSTEM "file:../../xmls/path_refs.xml">
        <!ENTITY taskdefs SYSTEM "file:../../xmls/taskdefs.xml">
        <!ENTITY taskdefs_post_compile SYSTEM "file:../../xmls/taskdefs_post_compile.xml">
        <!ENTITY targets SYSTEM "file:../../xmls/targets.xml">
]>

<!-- ===================================================================
<description>
   Test/Sample Component file for Axis

Notes:
   This is a build file for use with the Jakarta Ant build tool.

Prerequisites:

   jakarta-ant from http://jakarta.apache.org

Build Instructions:
   To compile
        ant <target>
   To execute
        ant <target>

Author:

Copyright:
  Copyright (c) 2002-2003 Apache Software Foundation.
</description>
==================================================================== -->

<project name="httpunit" default="default" basedir=".">
  <description>
    Test a Web application with HttpUnit. Based on example code in 
    Java Development with Ant, Hatcher and Loughran, 2001.
    Customised for Axis by Steve Loughran.
    1. Needs XSLT support from Xalan to generate the reports.
    2. To run a single test, set testcase=the name of the test.
    3. default URL is http://localhost:8080/axis ; set the 
       axis.url property to target a different system or port.
  </description>
  
<!-- BEGIN TOPLEVEL DECLARATIONS -->

  <property name="axis.home" location="../.." />
  <property name="componentName" value="test/httpunit" />
  <property name="component.home" location="${axis.home}/${componentName}" />
 
  <!-- Load the application specific settings -->
  <!-- #Project specific props -->
  <property file="build.properties"/>
  
  
    &properties;
    &paths;
    &taskdefs;
    &taskdefs_post_compile;
    &targets;
  
      
  <!-- ========================================================== -->
  <!-- Test settings                                              -->
  <!-- ========================================================== -->


  <target name="copy"/>
  
  <target name="deploy"/>
  
  <target name="run" />
  
  <target name="undeploy"/>
  
  
  <path id="test.compile.classpath">
    <path refid="classpath"/>
  </path>
    
  <path id="test.classpath">
    <path refid="test.compile.classpath"/>
    <pathelement location="${test.classes.dir}"/>
  </path>    
  <!-- END TOPLEVEL DECLARATIONS -->
  
  <!-- Public Targets -->

  <target name="default" 
    depends="compile"
    description="compile the tests"
    />

  <!-- cleanup target -->
  <target name="clean" description="cleanup"/>

  <target name="all" depends="compile,test" 
    description="compile and run the tests"/>
  
  <!-- init configures things -->
  <target name="init" depends="setenv">
    <condition property="execute.httpunit">
      <and>
        <isset property="httpunit.present"/>
        <istrue value="${httpunit.enabled}"/>
      </and>
    </condition>
    <echo>
    httpunit.present=${httpunit.present}
    httpunit.enabled = ${httpunit.enabled}
    execute.httpunit=${execute.httpunit}
    </echo>
    <mkdir dir="${test.classes.dir}" />
    <mkdir dir="${test.data.dir}" />
  </target>
  
    <!-- compile the java sources using the compilation classpath -->
  <target name="compile" depends="init" if="execute.httpunit">
    <javac destdir="${test.classes.dir}"
           debug="${build.debug}"
           nowarn="${nowarn}" 
           debuglevel="${debuglevel}"
           includeAntRuntime="false"
           fork="${javac.fork}"
           srcdir="${axis.home}">
      <classpath refid="test.compile.classpath"/>
      <include name="${componentName}/*.java"/>
      <include name="test/AxisTestBase.java"/>
    </javac>
  </target>
  
   <!-- this is our test suite for httpunit -->

  <target name="run-test"
      depends="compile" 
      if="execute.httpunit"
      description="test axis on a server" >
    <junit printsummary="false"
           errorProperty="test.failed"
           failureProperty="test.failed"
           haltonfailure="false"
           fork="true">
      <classpath 
        refid="test.classpath"/>
      <sysproperty key="test.functional.webapp.url" 
        value="${test.functional.webapp.url}"/>
      <formatter type="xml"/>
      <formatter type="brief" usefile="false"/>
      <test name="${testcase}" if="testcase"/>
      <batchtest todir="${test.reports.dir}" unless="testcase">
        <fileset dir="${build.dir}/classes"
          includes="test/httpunit/*Tests.class"
          excludesfile="${axis.home}/junit-exclude-tests.txt"/>
      </batchtest>
    </junit>
  </target>
    
  <!-- generate any test reports and fail, if needed -->
  <target name="test" depends="run-test" >
    <fail if="test.failed">Tests Failed</fail>
  </target>    
    
</project>