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
|
#! /bin/sh
# Test checking of Java format strings.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles f-j-2.data"
cat <<\EOF > f-j-2.data
# Invalid: invalid msgstr
msgid "abc{0}def"
msgstr "abc{"
# Valid: same arguments
msgid "abc{1}def"
msgstr "xyz{1}"
# Valid: same arguments, differently written
msgid "abc{1}def"
msgstr "xyz{01}"
# Valid: permutation
msgid "abc{2}{0}{1}def"
msgstr "xyz{1}{0}{2}"
# Invalid: too few arguments
msgid "abc{1}def{0}"
msgstr "xyz{0}"
# Invalid: too many arguments
msgid "abc{0}def"
msgstr "xyz{0}uvw{1}"
# Invalid: missing non-final argument
msgid "abc{1}def{0}"
msgstr "xyz{1}"
# Invalid: added non-final argument
msgid "abc{1}def"
msgstr "xyz{0}{1}"
# Invalid: different number of arguments
msgid "abc{500000000}def"
msgstr "xyz{500000001}"
# Valid: type compatibility
msgid "abc{1,number}"
msgstr "xyz{1,choice,0#zero|1#{1,number}}"
# Valid: type compatibility
msgid "abc{1,number}"
msgstr "xyz{1,number,currency}"
# Valid: type compatibility
msgid "abc{1,number}"
msgstr "xyz{1,number,percent}"
# Valid: type compatibility
msgid "abc{1,number}"
msgstr "xyz{1,number,integer}"
# Valid: type compatibility
msgid "abc{1,number}"
msgstr "xyz{1,number,###,##0}"
# Valid: type compatibility
msgid "abc{1,date}"
msgstr "xyz{1,time}"
# Valid: type compatibility
msgid "abc{1,date}"
msgstr "xyz{1,date,short}"
# Valid: type compatibility
msgid "abc{1,date}"
msgstr "xyz{1,date,medium}"
# Valid: type compatibility
msgid "abc{1,date}"
msgstr "xyz{1,date,long}"
# Valid: type compatibility
msgid "abc{1,date}"
msgstr "xyz{1,date,full}"
# Valid: type compatibility
msgid "abc{1,date}"
msgstr "xyz{1,date,yyyy-MM-dd}"
# Valid: type compatibility
msgid "abc{1,time}"
msgstr "xyz{1,time,short}"
# Valid: type compatibility
msgid "abc{1,time}"
msgstr "xyz{1,time,medium}"
# Valid: type compatibility
msgid "abc{1,time}"
msgstr "xyz{1,time,long}"
# Valid: type compatibility
msgid "abc{1,time}"
msgstr "xyz{1,time,full}"
# Valid: type compatibility
msgid "abc{1,time}"
msgstr "xyz{1,time,}"
# Valid: type compatibility
msgid "abc{1,time}"
msgstr "xyz{1,time,hh:mm:ss}"
# Invalid: type incompatibility
msgid "abc{1}"
msgstr "xyz{1,number}"
# Invalid: type incompatibility
msgid "abc{1}"
msgstr "xyz{1,date}"
# Invalid: type incompatibility
msgid "abc{1,time}"
msgstr "xyz{1,number}"
# Invalid: type incompatibility
msgid "abc{1,number}"
msgstr "xyz{1,date}"
# Invalid: type incompatibility
msgid "abc{1}"
msgstr "xyz{1,choice,0#zero|1#{1,number}}"
# Invalid: type incompatibility
msgid "abc{1}"
msgstr "xyz{1,choice,0#zero|1#{0,number}}"
# Invalid: type incompatibility
msgid "abc{0,number}{1}"
msgstr "xyz{0,choice,0#zero|1#{1,number}}"
EOF
: ${MSGFMT=msgfmt}
n=0
while read comment; do
read msgid_line
read msgstr_line
n=`expr $n + 1`
tmpfiles="$tmpfiles f-j-2-$n.po f-j-2-$n.mo"
cat <<EOF > f-j-2-$n.po
#, java-format
${msgid_line}
${msgstr_line}
EOF
fail=
if echo "$comment" | grep 'Valid:' > /dev/null; then
if ${MSGFMT} --check-format -o f-j-2-$n.mo f-j-2-$n.po; then
:
else
fail=yes
fi
else
${MSGFMT} --check-format -o f-j-2-$n.mo f-j-2-$n.po 2> /dev/null
if test $? = 1; then
:
else
fail=yes
fi
fi
if test -n "$fail"; then
echo "Format string checking error:" 1>&2
cat f-j-2-$n.po 1>&2
exit 1
fi
rm -f f-j-2-$n.po f-j-2-$n.mo
done < f-j-2.data
rm -fr $tmpfiles
exit 0
|