bugzilla-4intranet/qa/t/webservice_bug_update_see_a...

72 lines
2.3 KiB
Perl

#################################################
# Test for xmlrpc call to Bug.update_see_also() #
#################################################
use strict;
use warnings;
use lib qw(lib);
use QA::Util;
use QA::Tests qw(PRIVATE_BUG_USER STANDARD_BUG_TESTS);
use Test::More tests => 108;
my ($xmlrpc, $jsonrpc, $config) = get_rpc_clients();
my $bug_url = 'http://landfill.bugzilla.org/bugzilla-tip/show_bug.cgi?id=100';
# update_see_also doesn't support logged-out users.
my @tests = grep { $_->{user} } @{ STANDARD_BUG_TESTS() };
foreach my $t (@tests) {
$t->{args}->{add} = $t->{args}->{remove} = [];
}
push(@tests, (
{ user => 'unprivileged',
args => { ids => ['public_bug'], add => [$bug_url] },
error => 'only the assignee or reporter of the bug, or a user',
test => 'Unprivileged user cannot add a URL to a bug',
},
{ user => 'admin',
args => { ids => ['public_bug'], add => ['asdfasdfasdf'] },
error => 'asdf',
test => 'Admin cannot add an invalid URL',
},
{ user => 'admin',
args => { ids => ['public_bug'], remove => ['asdfasdfasdf'] },
test => 'Invalid URL silently ignored',
},
{ user => 'admin',
args => { ids => ['public_bug'], add => [$bug_url] },
test => 'Admin can add a URL to a public bug',
},
{ user => 'unprivileged',
args => { ids => ['public_bug'], remove => [$bug_url] },
error => 'only the assignee or reporter of the bug, or a user',
test => 'Unprivileged user cannot remove a URL from a bug',
},
{ user => 'admin',
args => { ids => ['public_bug'], remove => [$bug_url] },
test => 'Admin can remove a URL from a public bug',
},
{ user => PRIVATE_BUG_USER,
args => { ids => ['private_bug'], add => [$bug_url] },
test => PRIVATE_BUG_USER . ' can add a URL to a private bug',
},
{ user => PRIVATE_BUG_USER,
args => { ids => ['private_bug'], remove => [$bug_url] },
test => PRIVATE_BUG_USER . ' can remove a URL from a private bug',
},
));
sub post_success {
my ($call, $t) = @_;
isa_ok($call->result->{changes}, 'HASH', "Changes");
}
foreach my $rpc ($jsonrpc, $xmlrpc) {
$rpc->bz_run_tests(tests => \@tests, method => 'Bug.update_see_also',
post_success => \&post_success);
}