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
|
<?xml version="1.0" encoding="UTF-8"?>
<project name="AppendTaskTest" default="test1">
<property name="tmp.file" value="concat.tmp" />
<property name="tmp.file.2" value="concat.tmp.2" />
<property name="world" value="World" />
<target name="cleanup">
<delete file="TESTDEST"/>
<delete file="${tmp.file}"/>
<delete file="${tmp.file.2}"/>
<delete file="concat.line4"/>
<delete file="concat.noeol"/>
<delete file="concat.linecr"/>
<delete file="concat.utf8"/>
<delete file="concat.urls"/>
</target>
<target name="test1">
<concat>
</concat>
</target>
<target name="test2">
<concat destfile="">Hello, ${world}!</concat>
</target>
<target name="test3">
<concat destfile="${tmp.file}">Hello, ${world}!</concat>
</target>
<target name="test4">
<concat>Hello, ${world}!</concat>
</target>
<target name="testConcatNoNewline">
<concat>
<fileset dir="concat-input"/>
</concat>
</target>
<target name="testPath">
<concat destfile="${tmp.file.2}">
<path path="${tmp.file}"/>
</concat>
</target>
<target name="testAppend">
<concat destfile="${tmp.file.2}">
<path path="${tmp.file}"/>
</concat>
<concat destfile="${tmp.file.2}" append="true">
<path path="${tmp.file}"/>
</concat>
</target>
<target name="testfilter">
<concat destfile="${tmp.file}">@REPLACEME@</concat>
<concat>
<path path="${tmp.file}"/>
<filterchain>
<replacetokens>
<token key="REPLACEME" value="REPLACED"/>
</replacetokens>
</filterchain>
</concat>
</target>
<target name="testnooverwrite">
<touch file="${tmp.file.2}"/>
<concat destfile="${tmp.file.2}" overwrite="false">
<path path="concat.xml"/>
</concat>
</target>
<target name="testheaderfooter">
<concat>
<header filtering="false" trim="yes">
header
</header>
<path path="${tmp.file}"/>
<footer filtering="no">footer</footer>
</concat>
</target>
<target name="testfileheader">
<concat>
<header file="${tmp.file}"/>
<path path="${tmp.file}"/>
</concat>
</target>
<target name="samefile">
<touch file="${tmp.file}"/>
<concat destfile="${tmp.file}">
<path path="${tmp.file}"/>
</concat>
</target>
<target name="testfilterinline">
<concat>
@REPLACEME@
<filterchain>
<replacetokens>
<token key="REPLACEME" value="REPLACED"/>
</replacetokens>
</filterchain>
</concat>
</target>
<target name="create-noel">
<concat destfile="concat.noeol">This has no end of line</concat>
</target>
<target name="testfixlastline" depends="create-noel">
<concat destfile="concat.line4" fixlastline="yes">
<path path="concat.noeol"/>
<path path="concat.noeol"/>
<path path="concat.noeol"/>
<path path="concat.noeol"/>
</concat>
</target>
<target name="testfixlastlineeol" depends="create-noel">
<concat destfile="concat.linecr" fixlastline="yes" eol="mac">
<path path="concat.noeol"/>
<path path="concat.noeol"/>
</concat>
</target>
<target name="testskipsanitize">
<concat destFile="${tmp.file}" text="${line.separator}" skipsanitize="true"/>
<concat destFile="${tmp.file}" text=" " skipsanitize="true"/>
<concat destFile="${tmp.file}" text="foo"/>
</target>
</project>
|