2003-03-01 06:55:17 +01:00
|
|
|
#!/bin/sh
|
2014-01-17 05:05:25 +01:00
|
|
|
# fontconfig/test/run-test.sh
|
|
|
|
#
|
|
|
|
# Copyright © 2000 Keith Packard
|
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
# documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
# the above copyright notice appear in all copies and that both that
|
|
|
|
# copyright notice and this permission notice appear in supporting
|
|
|
|
# documentation, and that the name of the author(s) not be used in
|
|
|
|
# advertising or publicity pertaining to distribution of the software without
|
|
|
|
# specific, written prior permission. The authors make no
|
|
|
|
# representations about the suitability of this software for any purpose. It
|
|
|
|
# is provided "as is" without express or implied warranty.
|
|
|
|
#
|
|
|
|
# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
# PERFORMANCE OF THIS SOFTWARE.
|
2015-11-24 02:46:34 +01:00
|
|
|
case "$OSTYPE" in
|
|
|
|
msys ) MyPWD=`pwd -W` ;; # On Msys/MinGW, returns a MS Windows style path.
|
|
|
|
* ) MyPWD=`pwd` ;; # On any other platforms, returns a Unix style path.
|
|
|
|
esac
|
2003-10-27 11:44:13 +01:00
|
|
|
|
2015-11-24 02:46:34 +01:00
|
|
|
TESTDIR=${srcdir-"$MyPWD"}
|
|
|
|
|
|
|
|
FONTDIR="$MyPWD"/fonts
|
|
|
|
CACHEDIR="$MyPWD"/cache.dir
|
2017-03-21 04:25:45 +01:00
|
|
|
EXPECTED=${EXPECTED-"out.expected"}
|
2003-03-01 06:55:17 +01:00
|
|
|
|
|
|
|
ECHO=true
|
|
|
|
|
2013-01-01 00:21:07 +01:00
|
|
|
FCLIST=../fc-list/fc-list$EXEEXT
|
|
|
|
FCCACHE=../fc-cache/fc-cache$EXEEXT
|
2003-03-01 06:55:17 +01:00
|
|
|
|
2017-11-15 15:30:26 +01:00
|
|
|
which bwrap > /dev/null 2>&1
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
BWRAP=`which bwrap`
|
|
|
|
fi
|
|
|
|
|
2003-10-27 11:44:13 +01:00
|
|
|
FONT1=$TESTDIR/4x6.pcf
|
|
|
|
FONT2=$TESTDIR/8x16.pcf
|
|
|
|
|
2003-03-01 06:55:17 +01:00
|
|
|
check () {
|
|
|
|
$FCLIST - family pixelsize | sort > out
|
|
|
|
echo "=" >> out
|
|
|
|
$FCLIST - family pixelsize | sort >> out
|
|
|
|
echo "=" >> out
|
|
|
|
$FCLIST - family pixelsize | sort >> out
|
2003-06-16 00:57:21 +02:00
|
|
|
tr -d '\015' <out >out.tmp; mv out.tmp out
|
2017-11-20 12:50:34 +01:00
|
|
|
if cmp out $EXPECTED > /dev/null ; then : ; else
|
2003-03-01 06:55:17 +01:00
|
|
|
echo "*** Test failed: $TEST"
|
2017-03-21 04:25:45 +01:00
|
|
|
echo "*** output is in 'out', expected output in '$EXPECTED'"
|
2003-10-27 11:44:13 +01:00
|
|
|
exit 1
|
2003-03-01 06:55:17 +01:00
|
|
|
fi
|
2003-10-27 11:44:13 +01:00
|
|
|
rm out
|
2003-03-01 06:55:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
prep() {
|
2006-08-28 19:30:22 +02:00
|
|
|
rm -rf $CACHEDIR
|
2003-03-01 06:55:17 +01:00
|
|
|
rm -rf $FONTDIR
|
|
|
|
mkdir $FONTDIR
|
|
|
|
}
|
|
|
|
|
|
|
|
dotest () {
|
|
|
|
TEST=$1
|
|
|
|
test x$VERBOSE = x || echo Running: $TEST
|
|
|
|
}
|
|
|
|
|
|
|
|
sed "s!@FONTDIR@!$FONTDIR!
|
2006-08-04 18:13:00 +02:00
|
|
|
s!@CACHEDIR@!$CACHEDIR!" < $TESTDIR/fonts.conf.in > fonts.conf
|
2003-03-01 06:55:17 +01:00
|
|
|
|
2015-11-24 02:46:34 +01:00
|
|
|
FONTCONFIG_FILE="$MyPWD"/fonts.conf
|
2003-03-01 06:55:17 +01:00
|
|
|
export FONTCONFIG_FILE
|
|
|
|
|
|
|
|
dotest "Basic check"
|
|
|
|
prep
|
2003-10-27 11:44:13 +01:00
|
|
|
cp $FONT1 $FONT2 $FONTDIR
|
2003-03-01 06:55:17 +01:00
|
|
|
check
|
|
|
|
|
|
|
|
dotest "With a subdir"
|
|
|
|
prep
|
2003-10-27 11:44:13 +01:00
|
|
|
cp $FONT1 $FONT2 $FONTDIR
|
2003-03-01 06:55:17 +01:00
|
|
|
$FCCACHE $FONTDIR
|
|
|
|
check
|
|
|
|
|
|
|
|
dotest "Subdir with a cache file"
|
|
|
|
prep
|
|
|
|
mkdir $FONTDIR/a
|
2003-10-27 11:44:13 +01:00
|
|
|
cp $FONT1 $FONT2 $FONTDIR/a
|
2003-03-01 06:55:17 +01:00
|
|
|
$FCCACHE $FONTDIR/a
|
|
|
|
check
|
|
|
|
|
|
|
|
dotest "Complicated directory structure"
|
|
|
|
prep
|
|
|
|
mkdir $FONTDIR/a
|
|
|
|
mkdir $FONTDIR/a/a
|
|
|
|
mkdir $FONTDIR/b
|
|
|
|
mkdir $FONTDIR/b/a
|
2003-10-27 11:44:13 +01:00
|
|
|
cp $FONT1 $FONTDIR/a
|
|
|
|
cp $FONT2 $FONTDIR/b/a
|
2003-03-01 06:55:17 +01:00
|
|
|
check
|
|
|
|
|
|
|
|
dotest "Subdir with an out-of-date cache file"
|
|
|
|
prep
|
|
|
|
mkdir $FONTDIR/a
|
|
|
|
$FCCACHE $FONTDIR/a
|
|
|
|
sleep 1
|
2003-10-27 11:44:13 +01:00
|
|
|
cp $FONT1 $FONT2 $FONTDIR/a
|
2003-03-01 06:55:17 +01:00
|
|
|
check
|
|
|
|
|
|
|
|
dotest "Dir with an out-of-date cache file"
|
|
|
|
prep
|
2003-10-27 11:44:13 +01:00
|
|
|
cp $FONT1 $FONTDIR
|
2003-03-01 06:55:17 +01:00
|
|
|
$FCCACHE $FONTDIR
|
|
|
|
sleep 1
|
|
|
|
mkdir $FONTDIR/a
|
2003-10-27 11:44:13 +01:00
|
|
|
cp $FONT2 $FONTDIR/a
|
2003-03-01 06:55:17 +01:00
|
|
|
check
|
|
|
|
|
2017-11-15 15:30:26 +01:00
|
|
|
if [ x"$BWRAP" != "x" ]; then
|
|
|
|
dotest "Basic functionality with the bind-mounted cache dir"
|
|
|
|
prep
|
|
|
|
cp $FONT1 $FONT2 $FONTDIR
|
|
|
|
$FCCACHE $FONTDIR
|
|
|
|
sleep 1
|
|
|
|
ls -l $CACHEDIR > out1
|
|
|
|
TESTTMPDIR=`mktemp -d /tmp/fontconfig.XXXXXXXX`
|
|
|
|
sed "s!@FONTDIR@!$TESTTMPDIR/fonts!
|
|
|
|
s!@CACHEDIR@!$TESTTMPDIR/cache.dir!" < $TESTDIR/fonts.conf.in > bind-fonts.conf
|
2017-11-20 13:16:47 +01:00
|
|
|
$BWRAP --bind / / --bind $CACHEDIR $TESTTMPDIR/cache.dir --bind $FONTDIR $TESTTMPDIR/fonts --bind .. $TESTTMPDIR/build --dev-bind /dev /dev --setenv FONTCONFIG_FILE $TESTTMPDIR/build/test/bind-fonts.conf $TESTTMPDIR/build/fc-match/fc-match$EXEEXT -f "%{file}\n" ":foundry=Misc" > xxx
|
2017-11-15 15:30:26 +01:00
|
|
|
ls -l $CACHEDIR > out2
|
|
|
|
if cmp out1 out2 > /dev/null ; then : ; else
|
|
|
|
echo "*** Test failed: $TEST"
|
|
|
|
echo "cache was updated."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ x`cat xxx` != "x$TESTTMPDIR/fonts/4x6.pcf" ]; then
|
|
|
|
echo "*** Test failed: $TEST"
|
2017-11-20 13:16:47 +01:00
|
|
|
echo "file property doesn't points to the new place: $TESTTMPDIR/fonts/4x6.pcf"
|
2017-11-15 15:30:26 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
rm -rf $TESTTMPDIR out1 out2 xxx bind-fonts.conf
|
|
|
|
fi
|
|
|
|
|
2006-08-04 18:13:00 +02:00
|
|
|
rm -rf $FONTDIR $CACHEFILE $CACHEDIR $FONTCONFIG_FILE out
|