summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Test/Util.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Test/Util.pm')
-rw-r--r--Bugzilla/Test/Util.pm65
1 files changed, 33 insertions, 32 deletions
diff --git a/Bugzilla/Test/Util.pm b/Bugzilla/Test/Util.pm
index 9fbc151f7..995cff0be 100644
--- a/Bugzilla/Test/Util.pm
+++ b/Bugzilla/Test/Util.pm
@@ -20,50 +20,51 @@ use Mojo::Message::Response;
use Test2::Tools::Mock qw(mock);
sub create_user {
- my ($login, $password, %extra) = @_;
- require Bugzilla;
- return Bugzilla::User->create({
- login_name => $login,
- cryptpassword => $password,
- disabledtext => "",
- disable_mail => 0,
- extern_id => undef,
- %extra,
- });
+ my ($login, $password, %extra) = @_;
+ require Bugzilla;
+ return Bugzilla::User->create({
+ login_name => $login,
+ cryptpassword => $password,
+ disabledtext => "",
+ disable_mail => 0,
+ extern_id => undef,
+ %extra,
+ });
}
sub issue_api_key {
- my ($login, $given_api_key) = @_;
- my $user = Bugzilla::User->check({ name => $login });
+ my ($login, $given_api_key) = @_;
+ my $user = Bugzilla::User->check({name => $login});
- my $params = {
- user_id => $user->id,
- description => 'Bugzilla::Test::Util::issue_api_key',
- api_key => $given_api_key,
- };
+ my $params = {
+ user_id => $user->id,
+ description => 'Bugzilla::Test::Util::issue_api_key',
+ api_key => $given_api_key,
+ };
- if ($given_api_key) {
- return Bugzilla::User::APIKey->create_special($params);
- } else {
- return Bugzilla::User::APIKey->create($params);
- }
+ if ($given_api_key) {
+ return Bugzilla::User::APIKey->create_special($params);
+ }
+ else {
+ return Bugzilla::User::APIKey->create($params);
+ }
}
sub _json_content_type { $_->headers->content_type('application/json') }
sub mock_useragent_tx {
- my ($body, $modify) = @_;
- $modify //= \&_json_content_type;
+ my ($body, $modify) = @_;
+ $modify //= \&_json_content_type;
- my $res = Mojo::Message::Response->new;
- $res->code(200);
- $res->body($body);
- if ($modify) {
- local $_ = $res;
- $modify->($res);
- }
+ my $res = Mojo::Message::Response->new;
+ $res->code(200);
+ $res->body($body);
+ if ($modify) {
+ local $_ = $res;
+ $modify->($res);
+ }
- return mock({result => $res});
+ return mock({result => $res});
}
1;