blob: b20bc4f48b06c1f2211eda202580d4bad485b056 (
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
74
|
#-*- 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: delete.pl,v 1.5 2002/04/01 23:41:14 fukachan Exp $
#
use strict;
use Carp;
my $org_file = "/etc/passwd";
my $file = "/tmp/passwd";
my $tmpf = "/tmp/passwd.tmp";
my $map = "file:". $file;
my $buffer = 'root';
### MAIN ###
print "${map}->delete() ";
# prepare
system "head -1 $org_file | tr ':' ' ' > $tmpf";
system "cat $org_file | tr ':' ' ' > $file";
# orignal
my $orgbuf = GetContent($file);
# append
use IO::Adapter;
my $obj = new IO::Adapter $map;
$obj->delete( $buffer ) || croak("cannot add to $map");
if ($obj->error) { croak( $obj->error );}
# verify the result
# assemble the original from the deleted line and modified file itself.
my $buf = GetContent($tmpf) . GetContent($file);
if ($buf eq $orgbuf) {
print " ... ok\n";
}
else {
print " ... fail <$buf> ne <$orgbuf>\n";
}
$map = 'unix.group:fml';
print "${map}->delete() ... ";
$obj = new IO::Adapter $map;
eval q{ $obj->delete( $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;
}
|