blob: bfa01dcf093a442eaccce5ba7e1765b3d77b5f0c (
plain)
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
|
#-*- perl -*-
#
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: append.pl,v 1.5 2001/08/19 16:12:25 fukachan Exp $
#
use strict;
use Carp;
my $org_file = "/etc/passwd";
my $file = "/tmp/passwd";
my $map = "file:". $file;
my $buffer = time . $$ . "aho ";
### MAIN ###
print "${map}->add() ";
# prepare
system "cp $org_file /tmp/";
# append
use IO::Adapter;
my $obj = new IO::Adapter $map;
$obj->add( $buffer ) || croak("cannot add to $map");
if ($obj->error) { croak( $obj->error );}
# verify the result
my $orgbuf = GetContent($org_file);
my $buf = GetContent($file);
$orgbuf .= $buffer ."\n";
if ($buf eq $orgbuf) {
print " ... ok\n";
}
else {
print " ... fail\n";
system "diff -ub $org_file $file";
}
$map = 'unix.group:fml';
print "${map}->add() ... ";
$obj = new IO::Adapter $map;
eval q{ $obj->add( $buffer ); };
if ($@) {
print "ok\n"; # XXX fail (non null $@) is ok here.
}
else {
print "fail" unless $@;
print "<", $obj->error, ">" if $obj->error;
print "\n";
}
exit 0;
sub GetContent
{
my ($file) = @_;
my $buf;
use FileHandle;
my $fh = new FileHandle $file;
while (<$fh>) { $buf .= $_;}
close($fh);
$buf;
}
|