Child: [720f11] (diff)

Download this file

casediac.sh    64 lines (48 with data), 1.4 kB

 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
#!/bin/sh
# Case and diacritics sensitivity testing
# We use a separate configuration for this.
# This file is encoded in UTF-8: accentué
LANG=en_US.UTF-8
export LANG
topdir=`dirname $0`/..
. $topdir/shared.sh
initvariables $0
RECOLL_CONFDIR=$topdir/casediac
export RECOLL_CONFDIR
cat > $RECOLL_CONFDIR/recoll.conf <<EOF
loglevel = 6
logfilename = /tmp/logrcltst
daemloglevel = 6
daemlogfilename = /tmp/rclmontrace
indexStripChars = 0
topdirs = $tstdata/casediac
indexstemminglanguages = french
EOF
recollindex -z
(
set -x
# Diac-sensitive search for existing term
recollq -s french éviter
# Diac-sensitive searches for non-existing terms
recollq -s french èviter
recollq -s french '"eviter"D'
# Diac-unsensitive search
recollq -s french eviter
# Search for stem-existing term (has to be unsensitive)
recollq -s french evite
# Search for stem-existing term with disabled stemming
recollq -s french Evite
# Case-sensitive, existing and non existing
recollq -s french MAJUSCULESXX
recollq -s french MAjUSCULESXX
# Case-unsensitive
recollq -s french majusculesxx
# Case-unsensitive
recollq -s french Majusculesxx
# Case sensitive, term does not exist
recollq -s french '"Majusculesxx"C'
) 2>&1 | egrep -v '^Recoll query: ' > $mystdout
cd $RECOLL_CONFDIR
rm -rf history idxstatus.txt index.pid missing recoll.conf xapiandb/
diff -w ${myname}.txt $mystdout > $mydiffs 2>&1
checkresult