-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path96_toolbox.pl
48 lines (35 loc) · 1.2 KB
/
96_toolbox.pl
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
#!/usr/bin/perl
use Test::More tests => 9;
use strict;
use warnings;
BEGIN { use_ok( "EPrints" ); }
BEGIN { use_ok( "EPrints::Test" ); }
BEGIN { use_ok( "EPrints::Toolbox" ); }
my $repoid = EPrints::Test::get_test_id();
my $ep = EPrints->new();
isa_ok( $ep, "EPrints", "EPrints->new()" );
if( !defined $ep ) { BAIL_OUT( "Could not obtain the EPrints System object" ); }
my $repo = $ep->repository( $repoid );
isa_ok( $repo, "EPrints::Repository", "Get a repository object ($repoid)" );
if( !defined $repo ) { BAIL_OUT( "Could not obtain the Repository object" ); }
my $document = EPrints::Test::get_test_dataobj( $repo->dataset( "document" ) );
my $filename = "test_$$.txt";
my $data = "Hello, World!\n";
my @results;
@results = EPrints::Toolbox::tool_addFile(
session => $repo,
document => $document,
filename => $filename,
data_fn => sub { $data }, );
ok( $results[0] eq "0", "tool_addFile" );
@results = EPrints::Toolbox::tool_getFile(
session => $repo,
document => $document,
filename => $filename, );
is( $results[1], $data, "tool_getFile" );
@results = EPrints::Toolbox::tool_removeFile(
session => $repo,
document => $document,
filename => $filename, );
ok( $results[0] eq "0", "tool_delFile" );
ok(1);