aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/runner/cleanup.test
blob: 61a66b4f925bb7430ddd303a7af60f19ebf623ce (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
# file      : tests/test/script/runner/cleanup.test
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

+mkdir build &build/ # @@ Should not be necessary once builtin.
+cat <<EOI >>>build/boostrap.build
project = test
amalgamation =

using test
EOI

b = $build.driver -q --no-column --buildfile - <"./: test{testscript}" \
  &test/*** test
c = cat >>>testscript

# Valid cleanups.
#
# @@ TODO: $c <"$* -f a &a" && $b
#
: files
:
$c <"$* -f a &a";
$b

: dir1
:
$c <"$* -d a &a/";
$b

: dir2
$c <"$* -d a/b &a/ &a/b/";
$b

: file-dir
$c <"$* -d a/b -f a/b/c &a/ &a/b/ &a/b/c";
$b

: wildcard1
$c <"$* -d a/b -f a/b/c &a/***";
$b

: wildcard2
:
$c <"$* &a/***";
$b

: file-dup
$c <"$* -f a &a &a";
$b

: dir-dup
$c <"$* -d a/b &a/ &a/b/ &a/b/../b/";
$b

# Invalid cleanups.
#
: file-not-exists
:
$c <"$* &a";
$b 2>>EOE != 0
testscript:1: error: registered for cleanup file test/1/a does not exist
EOE

: dir-not-exists
:
$c <"$* &a/";
$b 2>>EOE != 0
testscript:1: error: registered for cleanup directory test/1/a/ does not exist
EOE

: dir-not-empty1
:
$c <"$* -d a/b -f a/b/c";
$b 2>>EOE != 0
testscript:1: error: registered for cleanup directory test/1/ is not empty
EOE

: dir-not-empty2
:
$c <"$* -d a/b &a/b/";
$b 2>>EOE != 0
testscript:1: error: registered for cleanup directory test/1/ is not empty
EOE

: dir-not-empty3
:
$c <"$* -d a/b &a/b/ &a/";
$b 2>>EOE != 0
testscript:1: error: registered for cleanup directory test/1/a/ is not empty
EOE

: dir-not-empty4
:
$c <"$* -f a &a/***";
$b 2>>EOE != 0
testscript:1: error: registered for cleanup directory test/1/ is not empty
EOE

: not-file
:
$c <"$* -d a &a";
$b 2>>EOE != 0
error: unable to remove file test/1/a: Is a directory
EOE

: not-dir1
:
$c <"$* -f a &a/";
$b 2>>EOE != 0
error: unable to remove directory test/1/a/: Not a directory
EOE