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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
|
#!perl
## Spellcheck as much as we can
use 5.008;
use strict;
use warnings;
use Test::More;
use utf8;
my (@testfiles, $fh);
if (!$ENV{RELEASE_TESTING}) {
plan (skip_all => 'Test skipped unless environment variable RELEASE_TESTING is set');
}
elsif (!eval { require Text::SpellChecker; 1 }) {
plan skip_all => 'Could not find Text::SpellChecker';
}
else {
opendir my $dir, 't' or die qq{Could not open directory 't': $!\n};
@testfiles = map { "t/$_" } grep { /^\d.+\.(t|pl|pm)$/ } readdir $dir;
closedir $dir or die qq{Could not closedir "$dir": $!\n};
plan tests => 3+@testfiles;
}
my %okword;
my $filename = 'Common';
while (<DATA>) {
if (/^## (.+):/) {
$filename = $1;
next;
}
next if /^#/ or ! /\w/;
for (split) {
$okword{$filename}{$_}++;
}
}
sub spellcheck {
my ($desc, $text, $file) = @_;
my $check = Text::SpellChecker->new(text => $text);
my %badword;
while (my $word = $check->next_word) {
next if $okword{Common}{$word} or $okword{$file}{$word};
$badword{$word}++;
}
my $count = keys %badword;
if (! $count) {
pass("Spell check passed for $desc");
return;
}
fail ("Spell check failed for $desc. Bad words: $count");
for (sort keys %badword) {
diag "$_\n";
}
return;
}
## The embedded POD
SKIP: {
if (!eval { require Pod::Spell; 1 }) {
skip 'Need Pod::Spell to test the spelling of embedded POD', 1;
}
for my $file (qw{check_postgres.pl}) {
if (! -e $file) {
fail(qq{Could not find the file "$file"!});
}
my $string = qx{podspell $file};
spellcheck("POD from $file" => $string, $file);
}
}
## The embedded POD, round two, because the above does not catch everything
SKIP: {
if (!eval { require Pod::Text; 1 }) {
skip 'Need Pod::Text to re-test the spelling of embedded POD', 1;
}
my $parser = Pod::Text->new (quotes => 'none', width => 400, utf8 => 1);
for my $file (qw{check_postgres.pl}) {
if (! -e $file) {
fail(qq{Could not find the file "$file"!});
}
my $string;
my $tmpfile = "$file.spellcheck.tmp";
$parser->parse_from_file($file, $tmpfile);
next if ! open my $fh, '<:encoding(UTF-8)', $tmpfile;
{ local $/; $string = <$fh>; }
close $fh or warn "Could not close $tmpfile\n";
unlink $tmpfile;
spellcheck("POD inside $file" => $string, $file);
}
}
## Now the comments
SKIP: {
if (!eval { require File::Comments; 1 }) {
skip 'Need File::Comments to test the spelling inside comments', 1+@testfiles;
}
my $fc = File::Comments->new();
my @files;
for (sort @testfiles) {
push @files, "$_";
}
for my $file (@testfiles, qw{check_postgres.pl}) {
if (! -e $file) {
fail(qq{Could not find the file "$file"!});
}
my $string = $fc->comments($file);
if (! $string) {
fail(qq{Could not get comments inside file $file});
next;
}
$string = join "\n" => @$string;
$string =~ s/=head1.+//sm;
spellcheck("comments from $file" => $string, $file);
}
}
__DATA__
## These words are okay
## Common:
arrayref
async
autovac
Backends
backends
bc
bucardo
checksum
chroot
commitratio
consrc
cp
dbh
dbstats
df
DBI
DSN
ENV
filesystem
fsm
goto
hitratio
lsfunc
Mullane
Nagios
ok
PGP
Postgres
Sabino
SQL
http
logfile
login
perl
pgagent
pgbouncer
pgBouncer
pgservice
plpgsql
postgres
Pre
runtime
Schemas
selectall
skipcycled
skipobject
Slony
slony
stderr
syslog
tcl
timestamp
tnm
txn
txns
turnstep
tuples
wal
www
zettabytes
##99_spellcheck.t:
Spellcheck
textfiles
## index.html:
DOCTYPE
DTD
PGP
XHTML
asc
css
dtd
endcrypt
href
html
https
lang
li
listinfo
moz
pre
px
ul
xhtml
xml
xmlns
## check_postgres.pl:
Abrigo
Adrien
Ahlgren
Ahlgren
Albe
alice
Andras
Andreas
ARG
args
artemus
Astill
autoanalyze
AUTOanalyze
autovac
autovacuum
AUTOvacuum
backends
Basename
battlestar
baz
bigint
Blasco
Blasco
Brüssel
blks
Boes
boxinfo
Boxinfo
Bracht
Bracht
Bucardo
burrick
cd
checkpostgresrc
checksum
checksums
checktype
Cédric
Christoph
commitratio
commitratio
conf
conn
conn
contrib
controldata
cperl
criticals
cronjob
ctl
CUUM
Cwd
cylon
datadir
datallowconn
Davide
dbhost
dbname
dbpass
dbport
dbservice
dbstats
dbuser
de
debugoutput
Deckelmann
del
DESC
dev
df
dir
dric
dylan
EB
Eisentraut
Eloranta
Eloranta
Elsasser
emma
endcrypt
EnterpriseDB
env
eval
exabyte
exabytes
excludeuser
excludeusers
ExclusiveLock
executables
faceoff
filename
filenames
filenames
finishup
flagg
fooey
franklin
FreeBSD
freespacemap
fsm
garrett
Geert
Geert
Getopt
GetOptions
github
github
Glaesemann
Glyn
greg
grimm
GSM
gtld
Guettler
Guillaume
Gurjeet
Hagander
Hansper
hardcode
Henrik
Henrik
HiRes
hitratio
hitratio
hitratio
Holger
hong
HOSTADDRESS
html
https
Hywel
idx
idxblkshit
idxblkshit
idxblksread
idxblksread
idxscan
idxscan
idxtupfetch
idxtupfetch
idxtupread
idxtupread
includeuser
Ioannis
ioguix
Jacobo
Jacobo
Janes
Jehan
Jens
Jürgen
Kabalin
Kirkwood
klatch
kong
Koops
Krishnamurthy
lancre
Laurenz
Lelarge
Lesouef
libpq
listinfo
localhost
localtime
Logfile
logtime
Mager
Magnus
maindatabase
Makefile
Mallett
mallory
Marti
maxalign
maxwait
mcp
MERCHANTABILITY
Mika
Mika
MINIPAGES
MINPAGES
minvalue
Moench
morpork
mrtg
MRTG
msg
multi
nagios
NAGIOS
Nayrat
Nenciarini
nextval
nnx
nofuncbody
nofunctions
noidle
noindexes
nols
noname
noname
noobjectname
noobjectnames
noowner
noperm
noperms
noposition
noschema
noschema
notrigger
ok
Oliveira
oper
Optimizations
oskar
pageslots
Pante
Pante
param
parens
Patric
Patric
perf
perfdata
perflimit
perfname
perfs
petabytes
pgAgent
pgb
PGBINDIR
pgbouncer's
PGCONTROLDATA
PGDATA
PGDATABASE
PGHOST
pgpass
PGPORT
PGSERVICE
pgsql
PGUSER
pid
Pirogov
plasmid
plugin
pluto
POSTGRES
postgresql
PostgreSQL
postgresrc
prepend
prereqs
psql
PSQL
queryname
quirm
Raudsepp
rc
Redistributions
refactor
refactoring
regex
regexes
relallvisible
relallvisible
relminmxid
relminmxid
relname
relpages
Renner
Renner
repinfo
RequireInterpolationOfMetachars
ret
ritical
rgen
robert
Rorthais
runtime
Ruslan
salesrep
sami
sb
schemas
scott
sda
Seklecki
seqscan
seqscan
seqtupread
seqtupread
SETOF
showperf
Sijmons
Singh
Sivakumar
sl
slon
slony
Slony
Slony's
snazzo
speedtest
Sprickman
Sprickman
sql
SQL
ssel
sslmode
Stas
stderr
STDOUT
sv
symlink
symlinked
symlinks
tablespace
tablespaces
Tambouras
tardis
Taveira
Tegeder
tempdir
tgisconstraint
Thauvin
timesync
tmp
tnm
Tolley
totalwastedbytes
totalwastedbytes
tup
undef
unlinked
upd
uptime
USERNAME
usernames
USERWHERECLAUSE
usr
utf
valtype
Villemain
Vitkovsky
Vondendriesch
Waisbrot
Waisbrot
wal
WAL
watson
Webber
Westwood
wget
wiki
Wilke
wilkins
xact
xlog
Yamada
Yochum
Zwerschke
|