aboutsummaryrefslogtreecommitdiff
path: root/testsuite/runtest.all/utils.test
blob: 2bf486963407e320e8cd725979c23815cd061bdc (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
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
# Test procedures in lib/utils.exp.				-*- Tcl -*-

set srcdir [lindex $argv 0]
set subdir [lindex $argv 1]
set objdir [lindex $argv 2]

if [ file exists $objdir/setval.tmp ] {
    source $objdir/setval.tmp
} else {
    puts "ERROR: $objdir/setval.tmp doesn't exist"
}
if [ file exists $srcdir/$subdir/default_procs.tcl ] {
    source $srcdir/$subdir/default_procs.tcl
} else {
    puts "ERROR: $srcdir$subdir/default_procs.tcl doesn't exist"
}

set file $srcdir/../lib/utils.exp
if [ file exists $file] {
    source $file
} else {
    puts "ERROR: $file doesn't exist"
}

# Test getdirs:
#
run_tests [subst {
    { lib_pat_test getdirs
	{[file join ${srcdir} runtest.all]}
	[file join ${srcdir} runtest.all topdir]
	"getdirs toplevel, no arguments" }
    { lib_pat_test getdirs
	{[file join ${srcdir} runtest.all] "top*"}
	[file join ${srcdir} runtest.all topdir]
	"getdirs toplevel, one subdir" }
    { lib_pat_test getdirs
	{[file join ${srcdir} runtest.all topdir]}
	"*topdir*subdir\[12\]*topdir*subdir\[12\]"
	"getdirs toplevel, two subdirs" }
    { lib_pat_test getdirs
	{[file join ${srcdir} runtest.all nothere]}
	""
	"getdirs toplevel, non-existent subdir"}
}]

# Test relative_filename:
#
run_tests {
    { lib_ret_test relative_filename {"/foo/test" "/foo/test/bar/baz"} "bar/baz"
	"relative_filename, simple prefix" }
    { lib_ret_test relative_filename {"/foo/test" "/bar/test"} "../../bar/test"
	"relative_filename, up to top" }
    { lib_ret_test relative_filename {"/tmp/foo-test" "/tmp/bar/test"} "../bar/test"
	"relative_filename, up one level" }
    { lib_ret_test relative_filename {"/tmp/foo-test" "/tmp/foo-test"} ""
	"relative_filename, same name" }
}

# Test find:
#
run_tests [subst {
    { lib_pat_test find
	{[file join ${srcdir} runtest.all topdir subdir2] "sub*"}
	"*/subdir2/subfile2"
	"find, only one level deep" }
    { lib_regexp_test find
	{[file join ${srcdir} runtest.all topdir subdir1] "sub*"}
	".*/subdir1/subsubdir1/subsubfile1( |$)"
	"find, two levels deep" }
}]

# Environment varible utility tests.
#

if [info exists env(TESTRUN)] {
    unset env(TESTRUN)
}

# Test setenv:
#
setenv TESTRUN FooBar
if [info exists env(TESTRUN)] {
    if { $env(TESTRUN) eq "FooBar" } {
	pass "setenv, set an environment variable"
    } else {
	fail "setenv, set an environment variable"
    }
} else {
    fail "setenv, set an environment variable"
}

# Test getenv:
#
if [info exists env(TESTRUN)] {
    if { [getenv TESTRUN] eq "FooBar" } {
	pass "getenv, get an environment variable"
    } else {
	fail "getenv, get an environment variable"
    }
} else {
    untested "getenv, get an environment variable"
}

# Test unsetenv:
#
if [info exists env(TESTRUN)] {
    unsetenv TESTRUN
    if [info exists env(TESTRUN)] {
	fail "unsetenv, unset an environment variable"
    } else {
	pass "unsetenv, unset an environment variable"
    }
} else {
    untested "unsetenv, unset an environment variable"
}

# Test 'which' using a relative path.
#
if {[which ./config.status] != 0} {
  pass "which, relative path to config.status"
} else {
  fail "which, relative path to config.status"
}

# Test 'which' using an absolute path.
#
if {[which [file join $objdir config.status]] != 0} {
  pass "which, absolute path to config.status"
} else {
  fail "which, absolute path to config.status"
}

# Test 'which make'.
#
if {[which make] != 0} {
  pass "which, make"
} else {
  fail "which, make"
}

### Do not adjust the comment on the next line. The grep test case
### depends on it.

# Test grep!
if {[llength [grep ${srcdir}/runtest.all/utils.test "^# Test grep!"]] == 1} {
  pass "grep, no options"
} else {
  fail "grep, no options"
}

# Test grep with line option.
set result [grep ${srcdir}/runtest.all/utils.test "^# Test grep!" line]
if {[llength $result] == 1 && [regexp {^\d+ # Test grep!} [lindex $result 0]]} {
  pass "grep, line option"
} else {
  fail "grep, line option"
}

# Test grep with -n option.
set result [grep -n ${srcdir}/runtest.all/utils.test "^# Test grep!"]
if {[llength $result] == 1 && [regexp {^\d+ # Test grep!} [lindex $result 0]]} {
  pass "grep, -n option"
} else {
  fail "grep, -n option"
}

# Test diff proc.

# Setup.
set f1 [open diff1.txt w]
set f2 [open diff2.txt w]
foreach f [list $f1 $f2] {
  puts $f "Hello world"
  close $f
}

# Two identical files; expect 1.
if {[diff diff1.txt diff2.txt] == 1} {
  pass "diff, identical files"
} else {
  fail "diff, identical files"
}

# Now remove one file; expect 0.
file delete diff1.txt
if {[diff diff1.txt diff2.txt] == 0} {
  pass "diff, one file missing"
} else {
  fail "diff, one file missing"
}

# diff1.txt differs from diff2.txt; expect -1.
set f [open diff1.txt w]
puts $f "Hello Cygnus"
close $f
if {[diff diff1.txt diff2.txt] == -1} {
  pass "diff, different files"
} else {
  fail "diff, different files"
}

# diff teardown.
file delete -force diff1.txt diff2.txt


# Test runtest_file_p.

run_tests {
    { lib_bool_test runtest_file_p {{foo.exp} foo.c} true
	"runtest_file_p, bare foo.exp matches foo.c" }
    { lib_bool_test runtest_file_p {{foo.exp foo.c} foo.c} true
	"runtest_file_p, foo.exp=foo.c matches foo.c" }
    { lib_bool_test runtest_file_p {{foo.exp foo.*} foo.c} true
	"runtest_file_p, foo.exp=foo.* matches foo.c" }
    { lib_bool_test runtest_file_p {{foo.exp bar.*} foo.c} false
	"runtest_file_p, foo.exp=bar.* excludes foo.c" }
}