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
|
# -*- perl -*-
# history.t --- Term::ReadLine:GNU History Library Test Script
#
# $Id: history.t 454 2014-03-02 14:28:30Z hayashi $
#
# Copyright (c) 2014 Hiroo Hayashi. All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl t/history.t'
BEGIN {
print "1..84\n"; $n = 1;
$ENV{PERL_RL} = 'Gnu'; # force to use Term::ReadLine::Gnu
$ENV{LANG} = 'C';
}
END {print "not ok $n\n" unless $loaded;}
use strict;
use warnings;
use vars qw($loaded $n);
eval "use ExtUtils::testlib;" or eval "use lib './blib';";
use Term::ReadLine;
sub show_indices;
$loaded = 1;
print "ok $n\n"; $n++;
# Perl-5.005 and later has Test.pm, but I define this here to support
# older version.
my $res;
my $ok = 1;
sub ok {
my $what = shift || '';
if ($res) {
print "ok $n\t$what\n";
} else {
print "not ok $n\t$what";
print @_ ? "\t@_\n" : "\n";
$ok = 0;
}
$n++;
}
########################################################################
# test new method
my $t = new Term::ReadLine 'ReadLineTest';
print defined $t ? "ok $n\n" : "not ok $n\n"; $n++;
my $OUT = $t->OUT || \*STDOUT;
########################################################################
# test ReadLine method
if ($t->ReadLine eq 'Term::ReadLine::Gnu') {
print "ok $n\n";
} else {
print "not ok $n\n";
print $OUT ("Package name should be \`Term::ReadLine::Gnu\', but it is \`",
$t->ReadLine, "\'\n");
}
$n++;
########################################################################
# test Attribs method
use vars qw($attribs);
$attribs = $t->Attribs;
print defined $attribs ? "ok $n\n" : "not ok $n\n"; $n++;
my ($version) = $attribs->{library_version} =~ /(\d+\.\d+)/;
########################################################################
# 2.3.1 Initializing History and State Management
# test using_history
# This is verbose since 'new' has already initialized the GNU history library.
$t->using_history;
# history_get_history_state!!!, history_set_history_state!!!
# check the values of initialized variables
print $attribs->{history_base} == 1
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_length} == 0
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{max_input_history} == 0
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_max_entries} == 0
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_write_timestamps} == 0
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_expansion_char} eq '!'
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_subst_char} eq '^'
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_comment_char} eq "\0"
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_word_delimiters} eq " \t\n;&()|<>"
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_no_expand_chars} eq " \t\n\r="
? "ok $n\n" : "not ok $n\n"; $n++;
print ! defined $attribs->{history_search_delimiter_chars}
? "ok $n\n" : "not ok $n\n"; $n++;
print $attribs->{history_quotes_inhibit_expansion} == 0
? "ok $n\n" : "not ok $n\n"; $n++;
print ! defined $attribs->{history_inhibit_expansion_function}
? "ok $n\n" : "not ok $n\n"; $n++;
########################################################################
# 2.3.2 History List Management
my @list_set;
# default value of `history_base' is 1
@list_set = qw(one two two three);
show_indices;
# test SetHistory(), GetHistory()
$t->SetHistory(@list_set);
print cmp_list(\@list_set, [$t->GetHistory]) ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
# test add_history(), add_history_time!!!
$t->add_history('four');
push(@list_set, 'four');
print cmp_list(\@list_set, [$t->GetHistory]) ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
# test remove_history()
$t->remove_history(2);
splice(@list_set, 2, 1);
print cmp_list(\@list_set, [$t->GetHistory]) ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
# test replace_history_entry()
$t->replace_history_entry(3, 'daarn');
splice(@list_set, 3, 1, 'daarn');
print cmp_list(\@list_set, [$t->GetHistory]) ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
# clear_history() is tested below.
# stifle_history
print $t->history_is_stifled == 0 ? "ok $n\n" : "not ok $n\n"; $n++;
$t->stifle_history(3);
print($t->history_is_stifled == 1
&& $attribs->{history_length} == 3 && $attribs->{max_input_history} == 3
? "ok $n\n" : "not ok $n\n"); $n++;
#print "@{[$t->GetHistory]}\n";
show_indices;
# history_is_stifled()
$t->add_history('five');
print($t->history_is_stifled == 1 && $attribs->{history_length} == 3
? "ok $n\n" : "not ok $n\n"); $n++;
show_indices;
# unstifle_history()
$t->unstifle_history;
print($t->history_is_stifled == 0 && $attribs->{history_length} == 3
? "ok $n\n" : "not ok $n\n"); $n++;
#print "@{[$t->GetHistory]}\n";
show_indices;
# history_is_stifled()
$t->add_history('six');
print($t->history_is_stifled == 0 && $attribs->{history_length} == 4
? "ok $n\n" : "not ok $n\n"); $n++;
show_indices;
# clear_history()
$t->clear_history;
print ($attribs->{history_length} == 0 ? "ok $n\n" : "not ok $n\n"); $n++;
show_indices;
########################################################################
# 2.3.3 Information About the History List
$attribs->{history_base} = 0;
show_indices;
@list_set = qw(zero one two three four);
$t->stifle_history(4);
show_indices;
$t->SetHistory(@list_set);
show_indices;
# history_list()
# history_list() routine emulates history_list() function in
# GNU Readline Library.
splice(@list_set, 0, 1);
print cmp_list(\@list_set, [$t->history_list])
? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
# at first where_history() returns 0
print $t->where_history == 0 ? "ok $n\n" : "not ok $n\n"; $n++;
# current_history()
# history_base + 0 = 1
print $t->current_history eq 'one' ? "ok $n\n" : "not ok $n\n"; $n++;
# history_get()!!!, history_get_time()!!!
# history_total_bytes()
print $t->history_total_bytes == 15 ? "ok $n\n" : "not ok $n\n"; $n++;
########################################################################
# 2.3.4 Moving Around the History List
# history_set_pos()
$t->history_set_pos(2);
print $t->where_history == 2 ? "ok $n\n" : "not ok $n\n"; $n++;
# history_base + 2 = 3
print $t->current_history eq 'three' ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
$t->history_set_pos(10000); # should be ingored
print $t->where_history == 2 ? "ok $n\n" : "not ok $n\n"; $n++;
# previous_history()
print $t->previous_history eq 'two' ? "ok $n\n" : "not ok $n\n"; $n++;
print $t->where_history == 1 ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
print $t->previous_history eq 'one' ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
print ! defined $t->previous_history ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
# next_history()
print $t->next_history eq 'two' ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
print $t->next_history eq 'three' ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
print $t->next_history eq 'four' ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
print ! defined $t->next_history ? "ok $n\n" : "not ok $n\n"; $n++;
print $t->where_history == 4 ? "ok $n\n" : "not ok $n\n"; $n++;
show_indices;
########################################################################
# 2.3.5 Searching the History List
@list_set = ('red yellow', 'green red', 'yellow blue', 'green blue');
$t->SetHistory(@list_set);
$t->history_set_pos(1);
#show_indices;
# history_search()
print($t->history_search('red', -1) == 6 && $t->where_history == 1
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search('blue', -1) == -1 && $t->where_history == 1
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search('yellow', -1) == 4 && $t->where_history == 0
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search('red', 1) == 0 && $t->where_history == 0
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search('blue', 1) == 7 && $t->where_history == 2
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search('red', 1) == -1 && $t->where_history == 2
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search('red') == 6 && $t->where_history == 1
? "ok $n\n" : "not ok $n\n"); $n++;
# history_search_prefix()
print($t->history_search_prefix('red', -1) == 0
&& $t->where_history == 0 ? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_prefix('green', 1) == 0
&& $t->where_history == 1 ? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_prefix('red', 1) == -1
&& $t->where_history == 1 ? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_prefix('red') == 0
&& $t->where_history == 0 ? "ok $n\n" : "not ok $n\n"); $n++;
# history_search_pos()
$t->history_set_pos(3);
print($t->history_search_pos('red', -1, 1) == 1
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_pos('red', -1, 3) == 1
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_pos('black', -1, 3) == -1
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_pos('yellow', -1) == 2
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_pos('green') == 3
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_pos('yellow', 1, 1) == 2
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_pos('yellow', 1) == -1
? "ok $n\n" : "not ok $n\n"); $n++;
print($t->history_search_pos('red', 1, 2) == -1
? "ok $n\n" : "not ok $n\n"); $n++;
########################################################################
# 2.3.6 Managing the History File
$t->stifle_history(undef);
my $hfile = '.history_test';
my @list_write = $t->GetHistory();
$t->WriteHistory($hfile) || warn "error at write_history: $!\n";
$t->SetHistory(); # clear history list
print ! $t->GetHistory ? "ok $n\n" : "not ok $n\n"; $n++;
$t->ReadHistory($hfile) || warn "error at read_history: $!\n";
print cmp_list(\@list_write, [$t->GetHistory]) ? "ok $n\n" : "not ok $n\n";
$n++;
@list_write = qw(0 1 2 3 4);
$t->SetHistory(@list_write);
# write_history()
! $t->write_history($hfile) || warn "error at write_history: $!\n";
$t->SetHistory(); # clear history list
# read_history()
! $t->read_history($hfile) || warn "error at read_history: $!\n";
print cmp_list(\@list_write, [$t->GetHistory]) ? "ok $n\n" : "not ok $n\n";
$n++;
# read_history() with range
! $t->read_history($hfile, 1, 3) || warn "error at read_history: $!\n";
print cmp_list([0,1,2,3,4,1,2], [$t->GetHistory])
? "ok $n\n" : "not ok $n\n"; $n++;
#print "@{[$t->GetHistory]}\n";
! $t->read_history($hfile, 2, -1) || warn "error at read_history: $!\n";
print cmp_list([0,1,2,3,4,1,2,2,3,4], [$t->GetHistory])
? "ok $n\n" : "not ok $n\n"; $n++;
#print "@{[$t->GetHistory]}\n";
# append_history()
! $t->append_history(5, $hfile) || warn "error at append_history: $!\n";
$t->SetHistory(); # clear history list
! $t->read_history($hfile) || warn "error at read_history: $!\n";
print cmp_list([0,1,2,3,4,1,2,2,3,4], [$t->GetHistory])
? "ok $n\n" : "not ok $n\n"; $n++;
#print "@{[$t->GetHistory]}\n";
# history_truncate_file()
$t->history_truncate_file($hfile, 6); # always returns 0
$t->SetHistory(); # clear history list
! $t->read_history($hfile) || warn "error at read_history: $!\n";
print cmp_list([4,1,2,2,3,4], [$t->GetHistory])
? "ok $n\n" : "not ok $n\n"; $n++;
#print "@{[$t->GetHistory]}\n";
########################################################################
# 2.3.7 History Expansion
my ($string, $ret, @ret, $exp, @exp);
@list_set = ('red yellow', 'blue red', 'yellow blue', 'green blue');
$t->SetHistory(@list_set);
$t->history_set_pos(2);
# history_expand()
#print "${\($t->history_expand('!!'))}";
# !! : last entry of the history list
print $t->history_expand('!!') eq 'green blue'
? "ok $n\n" : "not ok $n\n"; $n++;
print $t->history_expand('!yel') eq 'yellow blue'
? "ok $n\n" : "not ok $n\n"; $n++;
($ret, $string) = $t->history_expand('!red');
print $ret == 1 && $string eq 'red yellow' ? "ok $n\n" : "not ok $n\n"; $n++;
# get_history_event()
my ($text, $cindex);
# 1 2
# 012345678901234567890123
$string = '!-2 !?red? "!blu" white';
# !-2: 2 line before
($text, $cindex) = $t->get_history_event($string, 0);
$res = $cindex == 3 && $text eq 'yellow blue'; ok('get_history_event');
#print "$cindex,$text\n";
# non-event designator
($text, $cindex) = $t->get_history_event($string, 3);
$res = $cindex == 3 && ! defined $text; ok;
#print "$cindex,$text\n";
# The following 2 test may fail with readline-4.3 with some locale
# setting. It comes from bug of the Readline Library. I sent a patch
# to the maintainer. `LANG=C make test' should work.
# !?red?: line including `red'
($text, $cindex) = $t->get_history_event($string, 4);
$res = $cindex == 10 && $text eq 'blue red'; ok;
#print "$cindex,$text\n";
# "!?blu": line including `blu'
($text, $cindex) = $t->get_history_event($string, 12, '"');
$res = $cindex == 16 && $text eq 'blue red'; ok;
#print "$cindex,$text\n";
# history_tokenize(), history_arg_extract()
$string = ' foo "double quoted"& \'single quoted\' (paren)';
# for history_tokenize()
@exp = ('foo', '"double quoted"', '&', '\'single quoted\'', '(', 'paren', ')');
# for history_arg_extract()
$exp = "@exp";
@ret = $t->history_tokenize($string);
print cmp_list(\@ret, \@exp) ? "ok $n\n" : "not ok $n\n"; $n++;
$ret = $t->history_arg_extract($string, 0, '$'); #') comments for font-lock;
print $ret eq $exp ? "ok $n\n" : "not ok $n\n"; $n++;
$ret = $t->history_arg_extract($string, 0);
print $ret eq $exp ? "ok $n\n" : "not ok $n\n"; $n++;
$ret = $t->history_arg_extract($string);
print $ret eq $exp ? "ok $n\n" : "not ok $n\n"; $n++;
$_ = $string;
$ret = $t->history_arg_extract;
print $ret eq $exp ? "ok $n\n" : "not ok $n\n"; $n++;
########################################################################
# 2.4 History Variables
# history_base, history_length, max_input_history are tested above
# history_expansion_char!!!, history_subst_char!!!, history_comment_char!!!,
# history_word_delimiters!!!, history_no_expand_chars!!!
# history_inhibit_expansion_function
@list_set = ('red yellow', 'blue red', 'yellow blue', 'green blue');
$t->SetHistory(@list_set);
$t->history_set_pos(2);
# equivalent with 'history_no_expand_chars = "...!..."'
$attribs->{history_inhibit_expansion_function} = sub {
my ($string, $index) = @_;
substr($string, $index + 1, 1) eq '!'; # inhibit expanding '!!'
};
print $t->history_expand('!!') eq '!!'
? "ok $n\n" : "not ok $n\n"; $n++;
print $t->history_expand(' !r') eq ' red yellow'
? "ok $n\n" : "not ok $n\n"; $n++;
# strange behavior was fixed on version 6.0
if ($version < 6.0) {
print $t->history_expand('!! !y') eq 'green blue yellow blue'
? "ok $n\n" : "not ok $n\n"; $n++;
} else {
print $t->history_expand('!! !y') eq '!! yellow blue'
? "ok $n\n" : "not ok $n\n"; $n++;
}
end_of_test:
exit 0;
########################################################################
# subroutines
# compare lists
sub cmp_list {
($a, $b) = @_;
my @a = @$a;
my @b = @$b;
return undef if $#a ne $#b;
for (0..$#a) {
return undef if $a[$_] ne $b[$_];
}
return 1;
}
# debugging support
sub show_indices {
return;
printf("where_history: %d ", $t->where_history);
# printf("current_history(): %s ", $t->current_history);
printf("history_base: %d, ", $attribs->{history_base});
printf("history_length: %d, ", $attribs->{history_length});
# printf("max_input_history: %d ", $attribs->{max_input_history});
# printf("history_total_bytes: %d ", $t->history_total_bytes);
print "\n";
}
|