File: format-python-brace-1

package info (click to toggle)
gettext 0.23.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168,104 kB
  • sloc: ansic: 532,579; sh: 68,252; perl: 28,011; makefile: 9,066; lisp: 3,184; yacc: 1,055; java: 615; cs: 589; cpp: 397; objc: 343; sed: 79; tcl: 63; xml: 40; pascal: 11; php: 7; awk: 7
file content (91 lines) | stat: -rwxr-xr-x 2,216 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
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
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test recognition of Python brace format strings.

cat <<\EOF > f-pyb-1.data
# Invalid: no argument
"abc"
# Invalid: escaped braces
"abc{{}}"
# Valid: a numeric argument
"abc{0}"
# Valid: a named argument
"abc{value}"
# Invalid: an empty name
"abc{}"
# Invalid: unterminated name
"abc{value"
# Valid: three arguments, two with equal names
"abc{addr},{char},{addr}"
# Valid: getattr operator
"abc{value.name}"
# Invalid: getattr operator with numeric field name
"abc{value.0}"
# Valid: getitem operator
"abc{value[name]}"
# Invalid: unterminated getitem operator
"abc{value[name}"
# Invalid: unterminated getitem operator
"abc{value[0}"
# Invalid: unknown character in getitem operator
"abc{value[!]}"
# Valid: use of both getattr and getitem operators
"abc{value.v[name]}"
# Valid: use of both getitem and getattr operators
"abc{value[name].v}"
# Valid: format specifier
"abc{value:0}"
# Valid: format specifier after getattr operator
"abc{value.name:0}"
# Valid: format specifier after getitem operator
"abc{value[name]:0}"
# Valid: standard format specifier
"abc{value:<<-#012.34e}"
# Invalid: empty precision
"abc{value:8.}"
# Invalid: non-standard format specifier
"abc{value:<c>}"
# Valid: nested format specifier
"abc{value:{foo}}"
# Invalid: too many nesting of format specifier
"abc{value:{foo:0}}"
# Invalid: nested format specifier, in the middle of other format specifiers
"abc{value:0{foo}0}"
EOF

: ${XGETTEXT=xgettext}
n=0
while read comment; do
  read string
  n=`expr $n + 1`
  cat <<EOF > f-pyb-1-$n.in
gettext(${string});
EOF
  ${XGETTEXT} -L Python -o f-pyb-1-$n.po f-pyb-1-$n.in || Exit 1
  test -f f-pyb-1-$n.po || Exit 1
  fail=
  if echo "$comment" | grep 'Valid:' > /dev/null; then
    if grep python-brace-format f-pyb-1-$n.po > /dev/null; then
      :
    else
      fail=yes
    fi
  else
    if grep python-brace-format f-pyb-1-$n.po > /dev/null; then
      fail=yes
    else
      :
    fi
  fi
  if test -n "$fail"; then
    echo "Format string recognition error:" 1>&2
    cat f-pyb-1-$n.in 1>&2
    echo "Got:" 1>&2
    cat f-pyb-1-$n.po 1>&2
    Exit 1
  fi
  rm -f f-pyb-1-$n.in f-pyb-1-$n.po
done < f-pyb-1.data

Exit 0