File: seek.t

package info (click to toggle)
libfilehandle-unget-perl 0.1634-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: perl: 2,160; makefile: 2
file content (43 lines) | stat: -rwxr-xr-x 693 bytes parent folder | download | duplicates (5)
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
use strict;
use FileHandle::Unget;
use File::Spec::Functions qw(:ALL);
use Test::More tests => 3;
use File::Temp;

my $tmp = File::Temp->new();

{
  binmode $tmp;
  print $tmp "this is the first line\n";
  print $tmp "second line\n";
  close $tmp;
}

# Test seek($fh,###,0) and ungets
{
  my $fh = new FileHandle::Unget($tmp->filename);

  seek($fh,23,0);
  my $line = <$fh>;

  # 1
  is($line,"second line\n",'Seek absolute');

  $fh->ungets('1234567890');

  seek($fh,0,0);
  $line = <$fh>;

  # 2
  is($line,"this is the first line\n",'Seek to front');

  $fh->ungets("1234567890\n");

  seek($fh,-11,1);
  $line = <$fh>;

  # 3
  is($line,"first line\n",'Seek backward');

  $fh->close;
}