[Rt-commit] rt branch, 4.0/flesh-out-jumbo-tests, created. rt-4.0.4-149-gdb28796

Jason May jasonmay at bestpractical.com
Tue Dec 27 10:27:56 EST 2011


The branch, 4.0/flesh-out-jumbo-tests has been created
        at  db287969cdc6105495f6390ff2857e8af83cb962 (commit)

- Log -----------------------------------------------------------------
commit d839ae3111cab0a8d8e9a4fd926783f674449548
Author: Jason May <jasonmay at bestpractical.com>
Date:   Wed Dec 21 17:26:08 2011 -0500

    Test ticket date submissions in Jumbo

diff --git a/t/web/ticket_modify_all.t b/t/web/ticket_modify_all.t
index c9dd7e7..9e077c2 100644
--- a/t/web/ticket_modify_all.t
+++ b/t/web/ticket_modify_all.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use RT::Test tests => 15;
+use RT::Test tests => 20;
 
 my $ticket = RT::Test->create_ticket(
     Subject => 'test bulk update',
@@ -40,5 +40,26 @@ $m->click('SubmitTicket');
 $m->form_name('TicketModifyAll');
 is($m->value('Owner'), 'root', 'owner was successfully changed to root');
 
-# XXX TODO test other parts, i.e. basic, dates, people and links
+$m->get_ok($url . "/Ticket/ModifyAll.html?id=" . $ticket->id);
 
+$m->form_name('TicketModifyAll');
+$m->field('Starts_Date' => "2013-01-01 00:00:00");
+$m->click('SubmitTicket');
+$m->text_contains("Starts: (Tue Jan 01 00:00:00 2013)", 'start date successfully updated');
+
+$m->form_name('TicketModifyAll');
+$m->field('Started_Date' => "2014-01-01 00:00:00");
+$m->click('SubmitTicket');
+$m->text_contains("Started: (Wed Jan 01 00:00:00 2014)", 'started date successfully updated');
+
+$m->form_name('TicketModifyAll');
+$m->field('Told_Date' => "2015-01-01 00:00:00");
+$m->click('SubmitTicket');
+$m->text_contains("Last Contact:  (Thu Jan 01 00:00:00 2015)", 'told date successfully updated');
+
+$m->form_name('TicketModifyAll');
+$m->field('Due_Date' => "2016-01-01 00:00:00");
+$m->click('SubmitTicket');
+$m->text_contains("Due: (Fri Jan 01 00:00:00 2016)", 'due date successfully updated');
+
+# XXX TODO test other parts, i.e. people and links

commit db287969cdc6105495f6390ff2857e8af83cb962
Author: Jason May <jasonmay at bestpractical.com>
Date:   Thu Dec 22 18:26:41 2011 -0500

    Test adding watchers in Jumbo

diff --git a/t/web/ticket_modify_all.t b/t/web/ticket_modify_all.t
index 9e077c2..2f0c4d1 100644
--- a/t/web/ticket_modify_all.t
+++ b/t/web/ticket_modify_all.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use RT::Test tests => 20;
+use RT::Test tests => 22;
 
 my $ticket = RT::Test->create_ticket(
     Subject => 'test bulk update',
@@ -62,4 +62,22 @@ $m->field('Due_Date' => "2016-01-01 00:00:00");
 $m->click('SubmitTicket');
 $m->text_contains("Due: (Fri Jan 01 00:00:00 2016)", 'due date successfully updated');
 
-# XXX TODO test other parts, i.e. people and links
+$m->get( $url . '/Ticket/ModifyAll.html?id=' . $ticket->id );
+$m->form_name('TicketModifyAll');
+$m->field(WatcherTypeEmail => 'Requestor');
+$m->field(WatcherAddressEmail => 'root at localhost');
+$m->click('SubmitTicket');
+$m->text_contains(
+    "Added principal as a Requestor for this ticket",
+    'watcher is added',
+);
+$m->form_name('TicketModifyAll');
+$m->field(WatcherTypeEmail => 'Requestor');
+$m->field(WatcherAddressEmail => 'root at localhost');
+$m->click('SubmitTicket');
+$m->text_contains(
+    "That principal is already a Requestor for this ticket",
+    'no duplicate watchers',
+);
+
+# XXX TODO test other parts, i.e. links

-----------------------------------------------------------------------


More information about the Rt-commit mailing list