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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
use strict;
use warnings;
use Test::Deep;
use File::Spec;
use Test::More tests => 7 + 1; # plus one for warnings check
use RT::Test ();
BEGIN {
my $shredder_utils = RT::Test::get_relocatable_file('utils.pl',
File::Spec->curdir());
require $shredder_utils;
}
init_db();
diag 'global template' if $ENV{TEST_VERBOSE};
{
create_savepoint('clean');
my $template = RT::Template->new( RT->SystemUser );
my ($id, $msg) = $template->Create(
Name => 'my template',
Content => "\nsome content",
);
ok($id, 'created template') or diag "error: $msg";
my $shredder = shredder_new();
$shredder->PutObjects( Objects => $template );
$shredder->WipeoutAll;
cmp_deeply( dump_current_and_savepoint('clean'), "current DB equal to savepoint");
}
diag 'local template' if $ENV{TEST_VERBOSE};
{
create_savepoint('clean');
my $template = RT::Template->new( RT->SystemUser );
my ($id, $msg) = $template->Create(
Name => 'my template',
Queue => 'General',
Content => "\nsome content",
);
ok($id, 'created template') or diag "error: $msg";
my $shredder = shredder_new();
$shredder->PutObjects( Objects => $template );
$shredder->WipeoutAll;
cmp_deeply( dump_current_and_savepoint('clean'), "current DB equal to savepoint");
}
diag 'template used in scrip' if $ENV{TEST_VERBOSE};
{
create_savepoint('clean');
my $template = RT::Template->new( RT->SystemUser );
my ($id, $msg) = $template->Create(
Name => 'my template',
Queue => 'General',
Content => "\nsome content",
);
ok($id, 'created template') or diag "error: $msg";
my $scrip = RT::Scrip->new( RT->SystemUser );
($id, $msg) = $scrip->Create(
Description => 'my scrip',
Queue => 'General',
ScripCondition => 'On Create',
ScripAction => 'Open Tickets',
Template => $template->id,
);
ok($id, 'created scrip') or diag "error: $msg";
my $shredder = shredder_new();
$shredder->PutObjects( Objects => $template );
$shredder->WipeoutAll;
cmp_deeply( dump_current_and_savepoint('clean'), "current DB equal to savepoint");
}
|