File: kakasi-2.pl.in

package info (click to toggle)
namazu2 2.0.21-22
  • links: PTS
  • area: main
  • in suites: buster
  • size: 7,032 kB
  • sloc: ansic: 14,161; perl: 10,789; sh: 9,355; lisp: 1,147; makefile: 914
file content (144 lines) | stat: -rw-r--r-- 3,322 bytes parent folder | download | duplicates (6)
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
#!%PERL% -w
#
# $Id: kakasi-2.pl.in,v 1.1.2.7 2006-01-15 18:41:25 opengl2772 Exp $
# Copyright (C) 2005-2006 Tadamasa Teranishi
#               2005-2006 Namazu Project All rights reserved.
#     This is free software with ABSOLUTELY NO WARRANTY.
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either versions 2, or (at your option)
#  any later version.
#
#  This program is distributed in the hope that it will be useful
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
#  02111-1307, USA
#
#  This file must be encoded in EUC-JP encoding
#
#

#
# Test for kakasi.
#

use strict;
require Cwd;
require 'pltests.pl';

my $cwd = Cwd::cwd();
my $LOG = "$cwd/test-log";
my $TARGET = pltests::selectdata() . "/html.html";
my $INDEX = "$cwd/idx122";
my $MKNMZ = pltests::binpath('mknmz');

my @cmd;

if (-d "$INDEX") {
    unlink(<$INDEX/NMZ.*>);
} else {
    mkdir("$INDEX", 0755);
}

#
# kakasi Check
#

eval 'require Text::Kakasi;' || exit 77;
my $KAKASI = "module_kakasi";
exit 77 if (!defined $KAKASI);

pltests::putline($LOG, "  *** starting $0");

if (pltests::get_lang() !~ /^ja/) {
    pltests::putline($LOG, "Skipping because of LANG does not begin with ja: $0");
    exit 77;
}

pltests::putline($LOG, "Text::Kakasi : $Text::Kakasi::VERSION");

my $RC = "$cwd/tmp.mknmzrc-kakasi-2";
if (-f $RC) {
    unlink $RC;
}
pltests::putline($RC, 'package conf;');
pltests::putline($RC, "\$KAKASI = \"$KAKASI -ieuc -oeuc -w\";");
pltests::putline($RC, '$WAKATI = $KAKASI;');

# Simple indexing.
@cmd = ("$MKNMZ", "-k", "-f", "$RC", "-O", "$INDEX", "$TARGET");
pltests::putline($LOG, "  *** ", \@cmd);
my $status = pltests::logsyscmd($LOG, \@cmd);

if (-f $RC) {
    unlink $RC;
}

exit 101 if ($status != 0);

my $word = pltests::cat("$INDEX/NMZ.w");
pltests::codeconv_to_external(\$word);
pltests::putline($LOG, "  *** NMZ.w ***");
my @word = split(/\n/, $word);
my $w;
foreach $w (@word) {
    pltests::putline($LOG, $w);
}
pltests::putline($LOG, "  *** NMZ.w ***");

#
# Test for namazu.
#

my $NAMAZU = pltests::binpath('namazu');

my $docnum;
my $doc = pltests::cat("$INDEX/NMZ.status");
unless (defined $doc) {
    exit 1;
}
if ($doc =~ /^files (\d+)/m) {
    $docnum = $1;
} else {
    exit 1;
}

# Check simple searching.
my $query = "** *ΚΈ* ** **";
pltests::codeconv_to_external(\$query);
@cmd = ("$NAMAZU", "$query", "$INDEX");
pltests::putline($LOG, "  ", \@cmd);
$status = pltests::logsyscmd($LOG, \@cmd);
if ($status != 0) {
    exit 1;
}

@cmd = ("$NAMAZU", "-c", "$query", "$INDEX");
my $hitnum;
my $conts_err;
($status, $hitnum, $conts_err) = pltests::ezsyscmd(\@cmd);
unless (defined $hitnum) {
    exit 1;
}
chomp $hitnum;

pltests::putline($LOG, "docnum: $docnum hitnum: $hitnum");

if ($docnum != $hitnum) {
    exit 1;
}

exit 0;

#
# For avoiding "used only once: possible typo at ..." warnings.
#
my @muda = (
  $Text::Kakasi::VERSION,
);