]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
tests: Add test for ITS search path
authorDaiki Ueno <ueno@gnu.org>
Fri, 20 May 2016 10:03:40 +0000 (19:03 +0900)
committerDaiki Ueno <ueno@gnu.org>
Fri, 20 May 2016 10:03:40 +0000 (19:03 +0900)
* gettext-tools/tests/Makefile.am (TESTS): Add new test.
* gettext-tools/tests/xgettext-its-2: New file.

gettext-tools/tests/Makefile.am
gettext-tools/tests/xgettext-its-2 [new file with mode: 0755]

index 20ad11cd0358745cde5097df0616effe7983e8c4..96aa354a238d3cd01f63b3e778c254f00a1cb775 100644 (file)
@@ -113,7 +113,7 @@ TESTS = gettext-1 gettext-2 gettext-3 gettext-4 gettext-5 gettext-6 gettext-7 \
        xgettext-vala-1 \
        xgettext-gsettings-1 \
        xgettext-desktop-1 \
-       xgettext-its-1 \
+       xgettext-its-1 xgettext-its-2 \
        format-awk-1 format-awk-2 \
        format-boost-1 format-boost-2 \
        format-c-1 format-c-2 format-c-3 format-c-4 format-c-5 \
diff --git a/gettext-tools/tests/xgettext-its-2 b/gettext-tools/tests/xgettext-its-2
new file mode 100755 (executable)
index 0000000..599d889
--- /dev/null
@@ -0,0 +1,62 @@
+#!/bin/sh
+. "${srcdir=.}/init.sh"; path_prepend_ . ../src
+
+# Test of ITS search path.
+
+for d in a b c xa xb xc; do
+  test -d "$d" || mkdir "$d"
+  base="$d"
+  if expr "$d" : x 2>&1 >/dev/null; then
+    test -d "$d/gettext" || mkdir "$d/gettext"
+    base="$d/gettext"
+  fi
+  test -d "$base/its" || mkdir "$base/its"
+  cat <<EOF > "$base/its/$d.loc"
+<?xml version='1.0'?>
+<locatingRules>
+  <locatingRule pattern='*.$d'>
+    <documentRule prefix='' localName='$d' target='empty.its'/>
+  </locatingRule>
+</locatingRules>
+EOF
+  cat <<EOF > "$base/its/empty.its"
+<?xml version='1.0'?>
+<its:rules xmlns:its='http://www.w3.org/2005/11/its' version='1.0'>
+</its:rules>
+EOF
+  cat <<EOF > "input.$d"
+<?xml version='1.0'?>
+<$d>
+</$d>
+EOF
+done
+
+: ${XGETTEXT=xgettext}
+
+unset GETTEXTDATADIR
+unset GETTEXTDATADIRS
+unset XDG_DATA_DIRS
+
+${XGETTEXT} -o /dev/null input.a 2>&1 | grep 'is unknown; will try C' 2>&1 >/dev/null
+result=$?
+test $result = 0 || exit 1
+
+GETTEXTDATADIR=a
+export GETTEXTDATADIR
+${XGETTEXT} -o /dev/null input.a 2>&1 | grep 'is unknown; will try C' 2>&1 >/dev/null
+result=$?
+test $result = 0 && exit 1
+
+GETTEXTDATADIRS=b:a
+export GETTEXTDATADIRS
+${XGETTEXT} -o /dev/null input.b 2>&1 | grep 'is unknown; will try C' 2>&1 >/dev/null
+result=$?
+test $result = 0 && exit 1
+
+XDG_DATA_DIRS=xa
+export XDG_DATA_DIRS
+${XGETTEXT} -o /dev/null input.xa 2>&1 | grep 'is unknown; will try C' 2>&1 >/dev/null
+result=$?
+test $result = 0 && exit 1
+
+exit 0