blob: 45fc8a27e9fc0b11c67f1f629a21d725c390b31c (
plain)
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
|
#!/usr/bin/perl -w
use strict;
use warnings;
use Test::Deep;
use File::Spec;
use Test::More tests => 9;
use RT::Test ();
BEGIN {
my $shredder_utils = RT::Test::get_relocatable_file('utils.pl',
File::Spec->curdir());
require $shredder_utils;
}
my @ARGS = sort qw(limit status name member_of email replace_relations no_tickets);
use_ok('RT::Shredder::Plugin::Users');
{
my $plugin = new RT::Shredder::Plugin::Users;
isa_ok($plugin, 'RT::Shredder::Plugin::Users');
is(lc $plugin->Type, 'search', 'correct type');
my @args = sort $plugin->SupportArgs;
cmp_deeply(\@args, \@ARGS, "support all args");
my ($status, $msg) = $plugin->TestArgs( name => 'r??t*' );
ok($status, "arg name = 'r??t*'") or diag("error: $msg");
for (qw(any disabled enabled)) {
my ($status, $msg) = $plugin->TestArgs( status => $_ );
ok($status, "arg status = '$_'") or diag("error: $msg");
}
($status, $msg) = $plugin->TestArgs( status => '!@#' );
ok(!$status, "bad 'status' arg value");
}
|