File: test

package info (click to toggle)
calendarserver 9.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 25,688 kB
  • sloc: python: 195,037; sql: 78,794; xml: 16,936; sh: 2,502; ansic: 66; makefile: 26
file content (230 lines) | stat: -rwxr-xr-x 5,547 bytes parent folder | download
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
218
219
220
221
222
223
224
225
226
227
228
229
230
#!/bin/sh
# -*- sh-basic-offset: 2 -*-

##
# Copyright (c) 2005-2017 Apple Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##

set -e;
set -u;

#
# Initialize build support
#

wd="$(cd "$(dirname "$0")/.." && pwd -L)";

. "${wd}/bin/_build.sh";

init_build > /dev/null;



#
# Options
#

do_setup="false";
  do_get="false";
 viewlog="false";

    random="--random=$(date "+%s")";
  no_color="";
until_fail="";
  coverage="";
   numjobs="";
   reactor="";

if [ "$(uname -s)" = "Darwin" ]; then
  reactor="--reactor=kqueue";
fi;

usage ()
{
  program="$(basename "$0")";

  if [ "${1--}" != "-" ]; then echo "$@"; echo; fi;

  echo "Usage: ${program} [options]";
  echo "Options:";
  echo "        -h         Print this help and exit";
  echo "        -n         Do not use color";
  echo "        -o         Do not run tests in random order.";
  echo "        -r <seed>  Use specified seed to determine order.";
  echo "        -u         Run until the tests fail.";
  echo "        -c         Generate coverage reports.";
  echo "        -L         Show logging output in a separate view.";

  if [ "${1-}" = "-" ]; then return 0; fi;
  exit 64;
}

while getopts "hor:nucj:L" option; do
  case "${option}" in
    '?') usage; ;;
    'h') usage -; exit 0; ;;
    'o')     random=""; ;;
    'r')     random="--random=$OPTARG"; ;;
    'n')  no_color="--reporter=bwverbose"; ;;
    'u') until_fail="--until-failure"; ;;
    'c')   coverage="--coverage"; ;;
    'j')    numjobs="-j $OPTARG"; ;;
    'L')    viewlog="true";
  esac;
done;
shift $((${OPTIND} - 1));


#
# Dependencies
#

develop > /dev/null "${dev_home}/setup.log";

echo "Using ${python} as Python:";
"${python}" -V;
echo "";



#
# Clean up
#

find "${wd}" -name \*.pyc -print0 | xargs -0 rm;


#
# Do keychain unlock on OS X
#
if [ -z "${USE_OPENSSL-}" ]; then
  case "$(uname -s)" in
    Darwin)
      bin/python bin/keychain_unlock.py
      ;;
  esac;
fi;  

#
# Unit tests
#

trial_temp="${dev_home}/trial";

if "${viewlog}"; then
  if [ "${TERM_PROGRAM}" = "Apple_Terminal" ]; then
    if [ ! -d "${trial_temp}" ]; then
      mkdir "${trial_temp}";
    fi;

    touch "${trial_temp}/_trial_marker";
    cp /dev/null "${trial_temp}/test.log";

    open -a Console "${trial_temp}/test.log";
  else
    echo "Unable to view log.";
  fi;
fi;

error=0;

if [ $# -eq 0 ]; then
  lint="true";
  # Test these modules with a single invocation of trial
  set - calendarserver twistedcaldav txdav txweb2 contrib
  cd "${wd}" &&                                       \
    "${wd}/bin/trial"                                 \
    --temp-directory="${dev_home}/trial"              \
    --rterrors                                        \
    ${reactor}                                        \
    ${random}                                         \
    ${until_fail}                                     \
    ${no_color}                                       \
    ${coverage}                                       \
    ${numjobs}                                        \
    "$@"                                              \
    || error=$?;
else
  lint="false";
  # Loop over the passed-in modules
  for module in "$@"; do
    if [ -f "${module}" ]; then
      module="--testmodule=${module}";
    fi;
    cd "${wd}" &&                                       \
      "${wd}/bin/trial"                                 \
      --temp-directory="${dev_home}/trial"              \
      --rterrors                                        \
      ${reactor}                                        \
      ${random}                                         \
      ${until_fail}                                     \
      ${no_color}                                       \
      ${coverage}                                       \
      ${numjobs}                                        \
      "${module}"                                       \
      || error=$? ;
  done;
fi;

if [ ${error} -ne 0 ]; then
  exit ${error};
fi;


#
# Linting
#

if ! "${lint}"; then
  exit 0;
fi;

echo "";
echo "Running pyflakes...";

"${python}" -m pip install pyflakes --upgrade >> "${dev_home}/setup.log";
tmp="$(mktemp -t "twext_flakes.XXXXX")";
cd "${wd}" && "${python}" -m pyflakes "$@" | tee "${tmp}" 2>&1;
if [ -s "${tmp}" ]; then
  echo "**** Pyflakes says you have some code to clean up. ****";
  exit 1;
fi;
rm -f "${tmp}";



#
# Empty files
#

echo "";
echo "Checking for empty files...";
tmp="$(mktemp -t "twext_test_empty.XXXXX")";

find "${wd}"                                             \
  '!' '('                                                \
    -type d                                              \
    '(' -path '*/.*' -or -name data -or -name build ')'  \
    -prune                                               \
  ')'                                                    \
  -type f -size 0                                        \
  > "${tmp}";

if [ -s "${tmp}" ]; then
    echo "**** Empty files: ****";
    cat "${tmp}";
    exit 1;
fi;
rm -f "${tmp}";