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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
use strict;
use warnings;
use RT::Test tests => 20, config => 'Set( %FullTextSearch, Enable => 1 );';
use Test::Warn;
my $tix = RT::Tickets->new(RT->SystemUser);
{
my $query = "Status = 'open'";
my ($status, $msg) = $tix->FromSQL($query);
ok ($status, "correct query") or diag("error: $msg");
}
my (@created,%created);
my $string = 'subject/content SQL test';
{
my $t = RT::Ticket->new(RT->SystemUser);
ok( $t->Create(Queue => 'General', Subject => $string), "Ticket Created");
$created{ $t->Id }++; push @created, $t->Id;
}
{
my $Message = MIME::Entity->build(
Subject => 'this is my subject',
From => 'jesse@example.com',
Data => [ $string ],
);
my $t = RT::Ticket->new(RT->SystemUser);
ok( $t->Create( Queue => 'General',
Requestor => 'jesse@example.com',
Subject => 'another ticket',
MIMEObj => $Message,
MemberOf => $created[0]
),
"Ticket Created"
);
$created{ $t->Id }++; push @created, $t->Id;
}
{
my $query = ("Subject LIKE '$string' OR Content LIKE '$string'");
my ($status, $msg) = $tix->FromSQL($query);
ok ($status, "correct query") or diag("error: $msg");
my $count = 0;
while (my $tick = $tix->Next) {
$count++ if $created{ $tick->id };
}
is ($count, scalar @created, "number of returned tickets same as entered");
}
{
my $query = "id = $created[0] OR MemberOf = $created[0]";
my ($status, $msg) = $tix->FromSQL($query);
ok ($status, "correct query") or diag("error: $msg");
my $count = 0;
while (my $tick = $tix->Next) {
$count++ if $created{ $tick->id };
}
is ($count, scalar @created, "number of returned tickets same as entered");
}
diag "Make sure we don't barf on invalid input for IS / IS NOT";
{
my ($status, $msg) = $tix->FromSQL("Subject IS 'foobar'");
ok ($status, "valid query") or diag("error: $msg");
is $tix->Count, 0, "found no tickets";
unlike $tix->BuildSelectQuery, qr/foobar/, "didn't find foobar in the select";
like $tix->BuildSelectQuery, qr/Subject IS NULL/, "found right clause";
($status, $msg) = $tix->FromSQL("Subject IS NOT 'foobar'");
ok ($status, "valid query") or diag("error: $msg");
is $tix->Count, 2, "found two tickets";
unlike $tix->BuildSelectQuery, qr/foobar/, "didn't find foobar in the select";
like $tix->BuildSelectQuery, qr/Subject IS NOT NULL/, "found right clause";
}
{
my ($status, $msg);
warning_like {
($status, $msg) = $tix->FromSQL("Requestor.Signature LIKE 'foo'");
} qr/Invalid watcher subfield: 'Signature'/;
ok(!$status, "invalid query - Signature not valid") or diag("error: $msg");
($status, $msg) = $tix->FromSQL("Requestor.EmailAddress LIKE 'jesse'");
ok ($status, "valid query") or diag("error: $msg");
is $tix->Count, 1, "found one ticket";
like $tix->First->Subject, qr/another ticket/, "found the right ticket";
}
|