/[fuse-comp]/t/fs.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /t/fs.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 14 by dpavlin, Mon Jul 9 13:04:25 2007 UTC revision 39 by dpavlin, Sun Sep 2 12:03:52 2007 UTC
# Line 4  use warnings; Line 4  use warnings;
4    
5  my $debug = shift @ARGV;  my $debug = shift @ARGV;
6    
7  use Test::More tests => 254;  use Test::More tests => 770;
8  use File::Slurp;  use File::Slurp;
9  use IO::File;  use IO::File;
10    
# Line 30  sub file { Line 30  sub file {
30          my $orig_size = -s "$to/$path";          my $orig_size = -s "$to/$path";
31          ok( open( my $fh, $op, "$to/$path" ), "open( $op $path )");          ok( open( my $fh, $op, "$to/$path" ), "open( $op $path )");
32          if ( $op eq '>' ) {          if ( $op eq '>' ) {
33                  cmp_ok( -s "$to/$path", '==', 0, "truncate $to/$path" );                  cmp_ok( -s "$to/$path", '==', 0, "truncated $to/$path"  );
34                  print $fh $content;                  print $fh $content;
35          } elsif ( $op eq '>>' ) {          } elsif ( $op eq '>>' ) {
36                  cmp_ok( -s "$to/$path", '==', $orig_size, "no truncate $to/$path" );                  cmp_ok( -s "$to/$path", '==', $orig_size, "no truncate $to/$path" );
# Line 63  sub file { Line 63  sub file {
63                  ok( -e "$tmp/$path" , "in tmp $tmp/$path" ) if ( $op eq '<' );                  ok( -e "$tmp/$path" , "in tmp $tmp/$path" ) if ( $op eq '<' );
64                  # check total size if not append                  # check total size if not append
65                  if ( $op ne '>>' ) {                  if ( $op ne '>>' ) {
66                          cmp_ok( -s "$tmp/$path", '==', $size, "$tmp/$path = $size bytes" );                          cmp_ok( -s $pack, '<', $size, "$pack < $size bytes" );
67                  }                  }
68          } else {          } else {
69                  ok( -e "$from/$path", "on disk $from/$path" );                  ok( -e "$from/$path", "on disk $from/$path" );
70                    diag "$op curr_size: $orig_size size: $size";
71                    $size += $orig_size if ( $op eq '>>' );
72                  cmp_ok( -s "$from/$path", '==', $size, "$from/$path = $size bytes" );                  cmp_ok( -s "$from/$path", '==', $size, "$from/$path = $size bytes" );
73          }          }
74    
# Line 75  sub file { Line 77  sub file {
77          return $content;          return $content;
78  }  }
79    
80    sub md5sum {
81            my $path = shift;
82            my $md5sum = `md5sum $path`;
83            $md5sum =~ s/\s+.*$//s;
84            warn "## md5sum($path) = $md5sum\n" if $debug;
85            return $md5sum;
86    }
87    
88  my $buff = '<<--just a chunk of data-->>';  my $buff = '<<--just a chunk of data-->>';
89    
90  for my $i ( 1 .. 3 ) {  for my $i ( 1 .. 3 ) {
# Line 92  for my $i ( 1 .. 3 ) { Line 102  for my $i ( 1 .. 3 ) {
102          file( '>', $file, '' );          file( '>', $file, '' );
103          file( '<', $file, '' );          file( '<', $file, '' );
104    
105  #       file( '>', $file, $content );          file( '>', $file, $content );
106  #       file( '<', $file, $content );          file( '<', $file, $content );
107    
108  }  }
109    
# Line 117  sub multiple_rw { Line 127  sub multiple_rw {
127          ok( close($fh2), 'close 2' );          ok( close($fh2), 'close 2' );
128          dump_debug 'closed';          dump_debug 'closed';
129    
130            ok( symlink("$to/m", "$to/s"), 'symlink' );
131            ok( -l "$to/s", 'is symlink' );
132    
133            ok( !symlink("fake", "$to/s"), 'symlink' );
134            ok( !symlink("$to/m", "fake"), 'symlink' );
135    
136            ok( link("$to/m", "$to/l"), 'link' );
137            cmp_ok( (stat("$to/l"))[3], '==', 2, 'l has 2 links' );
138            cmp_ok( (stat("$to/m"))[3], '==', 2, 'm has 2 links' );
139    
140            my $size = -s "$to/m";
141            cmp_ok( length(read_file("$to/s")), '==', $size, "$to/s size $size" );
142            cmp_ok( length(read_file("$to/l")), '==', $size, "$to/l size $size" );
143    
144            ok( unlink("$to/s"), 'unlink s' );
145            ok( ! -e "$to/s", 'gone' );
146            ok( unlink("$to/l"), 'unlink l' );
147            cmp_ok( (stat("$to/m"))[3], '==', 1, 'no links' );
148    
149            my @sizes;
150            $size = 65536;
151            while ( $size > 1 ) {
152                    push @sizes, $size;
153                    $size /= 2;
154            }
155    
156            foreach my $size ( @sizes ) {
157                    ok( my $fh1 = IO::File->new("> $to/m"), 'open 1' );
158                    ok( truncate( $fh1, $size ), 'truncate' );
159                    dump_debug 'truncate';
160                    ok( close($fh1), 'close 1' );
161                    cmp_ok( -s "$to/m", '==', $size, "truncated to $size" );
162            }
163    
164    
165            foreach my $size ( sort @sizes ) {
166                    my $orig_size = -s "$to/m";
167                    ok( my $fh1 = IO::File->new(">> $to/m"), 'open 1' );
168                    ok( print($fh1 "x" x $size), "print $size bytes" );
169                    dump_debug 'append';
170                    ok( close($fh1), 'close 1' );
171                    my $expected_size = $size + $orig_size;
172                    cmp_ok( -s "$to/m", '==', $expected_size, "appended upto $expected_size" );
173            }
174    
175            ok( $size = -s "$to/m", 'size' );
176            ok( my $md5sum = md5sum("$to/m"), 'md5sum m' );
177            ok( rename("$to/m", "$to/n"), 'rename' );
178            ok( -e "$to/n", "$to/n exists" );
179            ok( ! -e "$to/m", "$to/m gone" );
180            cmp_ok( -s "$to/n", '==', $size, 'size' );
181            cmp_ok( $md5sum, 'eq', md5sum("$to/n"), 'md5sums same' );
182    
183            ok( unlink("$to/n"), "$to/n unlink" );
184            ok( ! -e "$to/n", "$to/n gone" );
185    
186            {
187                    ok( my $fh1 = IO::File->new(">> $to/h"), "open $to/h" );
188                    ok( print($fh1 "foobar"), "print" );
189                    ok( unlink("$to/h"), 'create .fuse_hidden' );
190                    ok( ! -e "$to/h", "$to/h gone" );
191                    dump_debug 'hidden';
192                    ok( print($fh1 "foobar"), "print to hidden" );
193                    ok( close($fh1), "close $to/h" );
194            }
195  }  }
196    
197  multiple_rw;  multiple_rw;
198  multiple_rw;  multiple_rw;
199    
   

Legend:
Removed from v.14  
changed lines
  Added in v.39

  ViewVC Help
Powered by ViewVC 1.1.26