Merge branch 'patch-5' of https://github.com/gjones2/Freeside (#13854 as this bug...
[freeside.git] / rt / t / api / tickets_overlay_sql.t
index 7980886..9f91111 100644 (file)
@@ -1,14 +1,9 @@
-
-use RT;
-use RT::Test tests => 7;
-
-
-{
-
-use RT::Tickets;
 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 $tix = RT::Tickets->new(RT->SystemUser);
 {
     my $query = "Status = 'open'";
     my ($status, $msg)  = $tix->FromSQL($query);
@@ -19,7 +14,7 @@ my $tix = RT::Tickets->new($RT::SystemUser);
 my (@created,%created);
 my $string = 'subject/content SQL test';
 {
-    my $t = RT::Ticket->new($RT::SystemUser);
+    my $t = RT::Ticket->new(RT->SystemUser);
     ok( $t->Create(Queue => 'General', Subject => $string), "Ticket Created");
     $created{ $t->Id }++; push @created, $t->Id;
 }
@@ -31,8 +26,9 @@ my $string = 'subject/content SQL test';
                      Data        => [ $string ],
             );
 
-    my $t = RT::Ticket->new($RT::SystemUser);
+    my $t = RT::Ticket->new(RT->SystemUser);
     ok( $t->Create( Queue => 'General',
+                    Requestor => 'jesse@example.com',
                     Subject => 'another ticket',
                     MIMEObj => $Message,
                     MemberOf => $created[0]
@@ -66,8 +62,32 @@ my $string = 'subject/content SQL test';
     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";
 }
 
-1;