-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path81_workflow.pl
43 lines (34 loc) · 989 Bytes
/
81_workflow.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
use strict;
use Test::More tests => 4;
# this is only really useful for profiling (we can't test the GUI output)
BEGIN { use_ok( "EPrints" ); }
BEGIN { use_ok( "EPrints::Test" ); }
BEGIN { use_ok( "EPrints::ScreenProcessor" ); }
my $session = EPrints::Test::get_test_session();
# find an example eprint
my $dataset = $session->dataset( "eprint" );
my $eprint = EPrints::Test::get_test_dataobj( $dataset );
my $workflow = EPrints::Workflow->new( $session, 'default',
item => $eprint,
);
my @stages = $workflow->get_stage_ids;
foreach my $stage (@stages)
{
$session = EPrints::Test::OnlineSession->new( $session, {
method => "GET",
path => "/cgi/users/home",
username => "admin",
query => {
screen => "EPrint::Edit",
eprintid => $eprint->id,
stage => $stage,
},
});
EPrints::ScreenProcessor->process(
session => $session,
url => $session->config( "base_url" ) . "/cgi/users/home"
);
my $content = $session->test_get_stdout();
}
#diag($content);
ok(1);