better check of md5sum files
[cloudstore.git] / t / API.t
diff --git a/t/API.t b/t/API.t
index edbeac8..9fdaf1c 100755 (executable)
--- a/t/API.t
+++ b/t/API.t
@@ -2,19 +2,21 @@
 use strict;
 use warnings;
 
-use Test::More tests => 7;
+use Test::More tests => 29;
 use Data::Dump qw(dump);
+use File::Path;
 
 use lib 'lib';
 
 use_ok 'CloudStore::API';
 
-$ENV{PORT}=6500;
-$ENV{SLICE}='/tmp/';
+BEGIN { $ENV{SLICE} = '/rsync1/s1' }
 
-ok my $o = CloudStore::API->new, 'new';
+ok my $o = CloudStore::API->new('s1'), 'new';
 
-cmp_ok $o->create_user('md5@example.com','md5sum',0), '==', 2000, 'create_user md5';
+die 'You need to run this test as root' unless $> == 0;
+
+cmp_ok $o->create_user('md5@example.com','md5sum',0), 'eq', 'md5', 'create_user md5';
 
 ok my $info = $o->user_info( 'md5' ), 'user_info';
 diag dump $info;
@@ -29,7 +31,49 @@ diag dump($test);
 ok open(my $fh, ">", $test->{dir} . '/foo.txt'), 'open';
 ok print($fh "test pid: $$\n"), 'print';
 ok close($fh) , 'close';
+ok chown $test->{uid}, $test->{gid}, "$test->{dir}/foo.txt", 'chown';
 
 ok my $uid2 = $o->create_user('test2@example.com','password',100_000_000), 'create_user test2';
+ok my $test2 = $o->user_info( $uid2 ), "user_info $uid2";
+
+foreach ( $test->{dir}, $test2->{dir} ) {
+       $_ .= "/.log";
+       unlink $_ if -e $_;
+}
+
+sub usage {
+       ok my $u = $o->usage( $_[0] ), 'usage';
+#      diag dump $u;
+}
 
 ok $o->send_file( $uid => '/foo.txt', $uid2 => 'dir1/dir2/bar.txt' ), 'send_file';
+usage $uid;
+usage $uid2;
+
+ok $o->send_file( $uid2 => 'dir1/dir2/bar.txt', $uid => 'bar.txt' ), 'send_file back';
+usage $uid;
+usage $uid2;
+
+ok $o->send_file( $uid2 => 'dir1/dir2/bar.txt', 2004 => 'bar.txt' ), 'send_file cross-slice';
+
+ok $o->delete( $uid, 'foo.txt' );
+usage $uid;
+
+ok $o->delete( $uid2, 'dir1' );
+usage $uid2;
+
+ok $o->delete( $uid, 'bar.txt' );
+usage $uid;
+
+my $path = "/tmp/test.$$/base/dir/path";
+ok $o->mkbasepath( $path, { uid => $info->{uid} } ), "mkbasepath $path";
+
+ok ! $o->mkbasepath( $path, { uid => $info->{uid} } ), "exists $path";
+
+$path =~ s{/path}{}; # strip file
+my $uid = (stat($path))[4];
+diag "uid $path = $uid";
+cmp_ok $uid, '==', $info->{uid}, "owner $info->{uid}";
+
+File::Path::remove_tree("/tmp/test.$$"); # cleanup
+