File: HasFreeSpaceConditionTest.xml

package info (click to toggle)
phing 3.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,328 kB
  • sloc: php: 59,826; xml: 9,770; sql: 78; makefile: 39; sh: 14
file content (53 lines) | stat: -rw-r--r-- 1,310 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="UTF-8" ?>

<project name="HasFreeSpaceConditionTest" default="testPartitionNotSet">

    <if>
        <os family="windows"/>
        <then>
            <property name="my.partition" value="C:"/>
        </then>
        <else>
            <property name="my.partition" value="/"/>
        </else>
    </if>

    <target name="testPartitionNotSet">
        <if>
            <hasfreespace/>
        </if>
    </target>

    <target name="testNeededNotSet">
        <if>
            <hasfreespace partition="${my.partition}"/>
        </if>
    </target>

    <target name="testInvalidPartition">
        <if>
            <hasfreespace partition="foo" needed="1M"/>
        </if>
    </target>

    <target name="testEnoughSpace">
        <if>
            <hasfreespace partition="${my.partition}" needed="1M"/>
            <then>
                <echo>HasFreeSpaceConditionTest: Enough space in disk.</echo>
            </then>
        </if>
    </target>

    <target name="testNotEnoughSpace">
        <if>
            <not>
                <hasfreespace partition="${my.partition}" needed="900TiB"/>
            </not>
            <then>
                <echo>HasFreeSpaceConditionTest: Not enough space in disk.</echo>
            </then>
        </if>
    </target>

</project>