Patch-ID: bash32-029
[bash.git] / tests / cond.tests
blob3abfa9d75d4be18b2de810b29c6a263031dc747f
2 # the test/[ code is tested elsewhere, and the [[...]] just uses the same
3 # code.  this tests the special features of [[...]]
5 TDIR=/usr/homes/chet
7 # this one is straight out of the ksh88 book
8 [[ foo > bar && $PWD -ef . ]]
9 echo returns: $?
11 # [[ x ]] is equivalent to [[ -n x ]]
12 [[ x ]]
13 echo returns: $?
15 # [[ ! x ]] is equivalent to [[ ! -n x ]]
16 [[ ! x ]]
17 echo returns: $?
19 # ! binds tighter than test/[ -- it binds to a term, not an expression
20 [[ ! x || x ]]
21 echo returns: $?
23 # parenthesized terms didn't work right until post-2.04
24 [[ a ]]
25 echo returns: $?
27 [[ (a) ]]
28 echo returns: $?
30 [[ -n a ]]
31 echo returns: $?
33 [[ (-n a) ]]
34 echo returns: $?
36 # unset variables don't need to be quoted
37 [[ -n $UNSET ]]
38 echo returns: $?
40 [[ -z $UNSET ]]
41 echo returns: $?
43 # the ==/= and != operators do pattern matching
44 [[ $TDIR == /usr/homes/* ]]
45 echo returns: $?
47 # ...but you can quote any part of the pattern to have it matched as a string
48 [[ $TDIR == /usr/homes/\* ]]
49 echo returns: $?
51 [[ $TDIR == '/usr/homes/*' ]]
52 echo returns: $?
54 # if the first part of && fails, the second is not executed
55 [[ -n $UNSET && $UNSET == foo ]]
56 echo returns: $?
58 [[ -z $UNSET && $UNSET == foo ]]
59 echo returns: $?
61 # if the first part of || succeeds, the second is not executed
62 [[ -z $UNSET || -d $PWD ]]
63 echo returns: $?
65 # if the rhs were executed, it would be an error
66 [[ -n $TDIR || $HOME -ef ${H*} ]]
67 echo returns: $?
69 [[ -n $TDIR && -z $UNSET || $HOME -ef ${H*} ]]
70 echo returns: $?
72 # && has a higher parsing precedence than ||
73 [[ -n $TDIR && -n $UNSET || $TDIR -ef . ]]
74 echo returns: $?
76 # ...but expressions in parentheses may be used to override precedence rules
77 [[ -n $TDIR || -n $UNSET && $PWD -ef xyz ]]
78 echo returns: $?
80 [[ ( -n $TDIR || -n $UNSET ) && $PWD -ef xyz ]]
81 echo returns: $?
83 # some arithmetic tests for completeness -- see what happens with missing
84 # operands, bad expressions, makes sure arguments are evaluated as
85 # arithmetic expressions, etc.
87 unset IVAR A
88 [[ 7 -gt $IVAR ]]
89 echo returns: $?
91 [[ $IVAR -gt 7 ]]
92 echo returns: $?
94 IVAR=4
95 [[ $IVAR -gt 7 ]]
96 echo returns: $?
98 [[ 7 -eq 4+3 ]]
99 echo returns: $?
101 [[ 7 -eq 4+ ]] 
102 echo returns: $? 
104 IVAR=4+3
105 [[ $IVAR -eq 7 ]]
106 echo returns: $?
109 [[ $IVAR -eq A ]]
110 echo returns: $?
112 unset IVAR A
114 # more pattern matching tests
116 [[ $filename == *.c ]]
117 echo returns: $?
119 filename=patmatch.c
121 [[ $filename == *.c ]]
122 echo returns: $?
124 # the extended globbing features may be used when matching patterns
125 shopt -s extglob
127 arg=-7
129 [[ $arg == -+([0-9]) ]]
130 echo returns: $?
132 arg=-H
134 [[ $arg == -+([0-9]) ]]
135 echo returns: $?
137 arg=+4
138 [[ $arg == ++([0-9]) ]]
139 echo returns: $?
141 # make sure the null string is never matched if the string is not null
142 STR=file.c
143 PAT=
145 if [[ $STR = $PAT ]]; then
146         echo oops
149 # but that if the string is null, a null pattern is matched correctly
150 STR=
151 PAT=
153 if [[ $STR = $PAT ]]; then
154         echo ok
157 # bug in all versions up to and including bash-2.05b
158 if [[ "123abc" == *?(a)bc ]]; then echo ok 42; else echo bad 42; fi
159 if [[ "123abc" == *?(a)bc ]]; then echo ok 43; else echo bad 43; fi