This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Duh.
[perl5.git] / lib / Term / Cap.t
CommitLineData
1285de5c 1#!./perl
2
6eca1408 3my $file;
a7e06307 4
1285de5c 5BEGIN {
a7e06307
JS
6 $file = $0;
7 chdir 't' if -d 't';
8
9 if ( $ENV{PERL_CORE} ) {
10 @INC = '../lib';
11 }
1285de5c 12}
13
14END {
15 # let VMS whack all versions
16 1 while unlink('tcout');
17}
18
6222ea98 19use Test::More;
1285de5c 20
cdfc6b8a 21# these names are hardcoded in Term::Cap
6222ea98
MS
22my $files = join '',
23 grep { -f $_ }
24 ( $ENV{HOME} . '/.termcap', # we assume pretty UNIXy system anyway
25 '/etc/termcap',
26 '/usr/share/misc/termcap' );
d2492938 27unless( $files || $^O eq 'VMS') {
6222ea98
MS
28 plan skip_all => 'no termcap available to test';
29}
30else {
d2492938 31 plan tests => 44;
cdfc6b8a 32}
33
1285de5c 34use_ok( 'Term::Cap' );
35
36local (*TCOUT, *OUT);
37my $out = tie *OUT, 'TieOut';
38my $writable = 1;
39
40if (open(TCOUT, ">tcout")) {
41 print TCOUT <DATA>;
42 close TCOUT;
43} else {
44 $writable = 0;
45}
46
a7e06307 47# termcap_path -- the names are hardcoded in Term::Cap
1285de5c 48$ENV{TERMCAP} = '';
49my $path = join '', Term::Cap::termcap_path();
c6d685f7 50is( $path, $files, 'termcap_path() should find default files' );
1285de5c 51
52SKIP: {
53 # this is ugly, but -f $0 really *ought* to work
6eca1408 54 skip("-f $file fails, some tests difficult now", 2) unless -f $file;
1285de5c 55
6eca1408 56 $ENV{TERMCAP} = $ENV{TERMPATH} = $file;
57 ok( grep($file, Term::Cap::termcap_path()),
c6d685f7 58 'termcap_path() should find file from $ENV{TERMCAP}' );
1285de5c 59
26ca33de 60 $ENV{TERMCAP} = '/';
6eca1408 61 ok( grep($file, Term::Cap::termcap_path()),
c6d685f7 62 'termcap_path() should find file from $ENV{TERMPATH}' );
1285de5c 63}
64
1285de5c 65# make a Term::Cap "object"
66my $t = {
67 PADDING => 1,
68 _pc => 'pc',
69};
70bless($t, 'Term::Cap' );
71
72# see if Tpad() works
c6d685f7 73is( $t->Tpad(), undef, 'Tpad() should return undef with no arguments' );
74is( $t->Tpad('x'), 'x', 'Tpad() should return strings verbatim with no match' );
75is( $t->Tpad( '1*a', 2 ), 'apcpc', 'Tpad() should pad paddable strings' );
1285de5c 76
77$t->{PADDING} = 2;
c6d685f7 78is( $t->Tpad( '1*a', 3, *OUT ), 'apcpc', 'Tpad() should perform pad math' );
79is( $out->read(), 'apcpc', 'Tpad() should write to filehandle when passed' );
1285de5c 80
c6d685f7 81is( $t->Tputs('PADDING'), 2, 'Tputs() should return existing value' );
82is( $t->Tputs('pc', 2), 'pc', 'Tputs() should delegate to Tpad()' );
1285de5c 83$t->Tputs('pc', 1, *OUT);
c6d685f7 84is( $t->{pc}, 'pc', 'Tputs() should cache pc value when asked' );
85is( $out->read(), 'pc', 'Tputs() should write to filehandle when passed' );
1285de5c 86
87eval { $t->Trequire( 'pc' ) };
c6d685f7 88is( $@, '', 'Trequire() should finds existing cap' );
1285de5c 89eval { $t->Trequire( 'nonsense' ) };
c6d685f7 90like( $@, qr/support: \(nonsense\)/,
91 'Trequire() should croak with unsupported cap' );
1285de5c 92
93my $warn;
94local $SIG{__WARN__} = sub {
95 $warn = $_[0];
96};
97
98# test the first few features by forcing Tgetent() to croak (line 156)
99undef $ENV{TERM};
100my $vals = {};
d2492938 101eval { local $^W = 1; $t = Term::Cap->Tgetent($vals) };
c6d685f7 102like( $@, qr/TERM not set/, 'Tgetent() should croaks without TERM' );
103like( $warn, qr/OSPEED was not set/, 'Tgetent() should set default OSPEED' );
d2492938 104
1285de5c 105is( $vals->{PADDING}, 10000/9600, 'Default OSPEED implies default PADDING' );
106
d2492938
JS
107$warn = 'xxxx';
108eval { local $^W = 0; $t = Term::Cap->Tgetent($vals) };
109is($warn,'xxxx',"Tgetent() doesn't carp() without warnings on");
110
1285de5c 111# check values for very slow speeds
112$vals->{OSPEED} = 1;
113$warn = '';
114eval { $t = Term::Cap->Tgetent($vals) };
c6d685f7 115is( $warn, '', 'Tgetent() should not work if OSPEED is provided' );
116is( $vals->{PADDING}, 200, 'Tgetent() should set slow PADDING when needed' );
1285de5c 117
d2492938
JS
118
119SKIP: {
120 skip('Tgetent() bad termcap test, since using a fixed termcap',1)
121 if $^O eq 'VMS';
122 # now see if lines 177 or 180 will fail
123 $ENV{TERM} = 'foo';
124 $ENV{TERMPATH} = '!';
125 $ENV{TERMCAP} = '';
126 eval { $t = Term::Cap->Tgetent($vals) };
127 isn't( $@, '', 'Tgetent() should catch bad termcap file' );
128}
1285de5c 129
1285de5c 130SKIP: {
6eca1408 131 skip( "Can't write 'tcout' file for tests", 9 ) unless $writable;
132
133 # it won't find the termtype in this fake file, so it should croak
134 $vals->{TERM} = 'quux';
135 $ENV{TERMPATH} = 'tcout';
136 eval { $t = Term::Cap->Tgetent($vals) };
137 like( $@, qr/failed termcap/, 'Tgetent() should die with bad termcap' );
1285de5c 138
139 # it shouldn't try to read one file more than 32(!) times
140 # see __END__ for a really awful termcap example
1285de5c 141 $ENV{TERMPATH} = join(' ', ('tcout') x 33);
142 $vals->{TERM} = 'bar';
143 eval { $t = Term::Cap->Tgetent($vals) };
c6d685f7 144 like( $@, qr/failed termcap loop/, 'Tgetent() should catch deep recursion');
1285de5c 145
146 # now let it read a fake termcap file, and see if it sets properties
147 $ENV{TERMPATH} = 'tcout';
148 $vals->{TERM} = 'baz';
149 $t = Term::Cap->Tgetent($vals);
c6d685f7 150 is( $t->{_f1}, 1, 'Tgetent() should set a single field correctly' );
151 is( $t->{_f2}, 1, 'Tgetent() should set another field on the same line' );
152 is( $t->{_no}, '', 'Tgetent() should set a blank field correctly' );
153 is( $t->{_k1}, 'v1', 'Tgetent() should set a key value pair correctly' );
154 like( $t->{_k2}, qr/v2\\\n2/, 'Tgetent() should set and translate pairs' );
1285de5c 155
156 # and it should have set these two fields
c6d685f7 157 is( $t->{_pc}, "\0", 'should set _pc field correctly' );
158 is( $t->{_bc}, "\b", 'should set _bc field correctly' );
1285de5c 159}
160
161# Tgoto has comments on the expected formats
162$t->{_test} = "a%d";
c6d685f7 163is( $t->Tgoto('test', '', 1, *OUT), 'a1', 'Tgoto() should handle %d code' );
164is( $out->read(), 'a1', 'Tgoto() should print to filehandle if passed' );
1285de5c 165
166$t->{_test} = "a%.";
c6d685f7 167like( $t->Tgoto('test', '', 1), qr/^a\x01/, 'Tgoto() should handle %.' );
168like( $t->Tgoto('test', '', 0), qr/\x61\x01\x08/,
169 'Tgoto() should handle %. and magic' );
1285de5c 170
171$t->{_test} = 'a%+';
d2492938 172like( $t->Tgoto('test', '', 1), qr/a\x01/, 'Tgoto() should handle %+' );
1285de5c 173$t->{_test} = 'a%+a';
c6d685f7 174is( $t->Tgoto('test', '', 1), 'ab', 'Tgoto() should handle %+char' );
1285de5c 175$t->{_test} .= 'a' x 99;
c6d685f7 176like( $t->Tgoto('test', '', 1), qr/ba{98}/,
177 'Tgoto() should substr()s %+ if needed' );
1285de5c 178
179$t->{_test} = '%ra%d';
c6d685f7 180is( $t->Tgoto('test', 1, ''), 'a1', 'Tgoto() should swaps params with %r' );
1285de5c 181
182$t->{_test} = 'a%>11bc';
c6d685f7 183is( $t->Tgoto('test', '', 1), 'abc', 'Tgoto() should unpack args with %>' );
1285de5c 184
185$t->{_test} = 'a%21';
c6d685f7 186is( $t->Tgoto('test'), 'a001', 'Tgoto() should format with %2' );
1285de5c 187
188$t->{_test} = 'a%31';
c6d685f7 189is( $t->Tgoto('test'), 'a0001', 'Tgoto() should also formats with %3' );
1285de5c 190
191$t->{_test} = '%ia%21';
c6d685f7 192is( $t->Tgoto('test', '', 1), 'a021', 'Tgoto() should increment args with %i' );
1285de5c 193
194$t->{_test} = '%z';
c6d685f7 195is( $t->Tgoto('test'), 'OOPS', 'Tgoto() should catch invalid args' );
1285de5c 196
197# and this is pretty standard
198package TieOut;
199
200sub TIEHANDLE {
201 bless( \(my $self), $_[0] );
202}
203
204sub PRINT {
205 my $self = shift;
206 $$self .= join('', @_);
207}
208
209sub read {
210 my $self = shift;
211 substr( $$self, 0, length($$self), '' );
212}
213
214__END__
215bar: :tc=bar: \
216baz: \
217:f1: :f2: \
218:no@ \
219:k1#v1\
220:k2=v2\\n2