mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-29 10:54:42 +00:00
* gettext-tools/src/format-python-brace.c (struct toplevel_counters): New type. (parse_directive): Take a 'struct toplevel_counters *' parameter. Allow empty argument names at the top-level. But reject format strings with both absolute argument numbers and unnamed arguments at the top-level. (parse_upto): Take a 'struct toplevel_counters *' parameter. (format_parse): Pass a 'struct toplevel_counters *' to parse_upto. * gettext-tools/tests/format-python-brace-1: Update. * gettext-tools/tests/format-python-brace-2: Add another test case. * gettext-tools/doc/lang-python.texi: Add more examples of formatting with positions.
104 lines
2.5 KiB
Bash
Executable File
104 lines
2.5 KiB
Bash
Executable File
#! /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}"
|
|
# Valid: an empty name
|
|
"abc{}"
|
|
# Invalid: unterminated name
|
|
"abc{value"
|
|
# Valid: three arguments, two with equal names
|
|
"abc{addr},{char},{addr}"
|
|
# Valid: empty name and non-numeric name
|
|
"abc{},{value}"
|
|
# Valid: empty name and non-numeric name
|
|
"abc{value},{}"
|
|
# Invalid: empty name and numeric name
|
|
"abc{},{1}"
|
|
# Invalid: empty name and numeric name
|
|
"abc{1},{}"
|
|
# Valid: multiple empty names
|
|
"abc{},{},{}"
|
|
# 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: null precision
|
|
"abc{value:.}"
|
|
# Invalid: null 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
|