diff options
Diffstat (limited to 'rt/t/web/dashboard_with_deleted_saved_search.t')
-rw-r--r-- | rt/t/web/dashboard_with_deleted_saved_search.t | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/rt/t/web/dashboard_with_deleted_saved_search.t b/rt/t/web/dashboard_with_deleted_saved_search.t deleted file mode 100644 index 328095aaf..000000000 --- a/rt/t/web/dashboard_with_deleted_saved_search.t +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/env perl -use strict; -use warnings; - -use RT::Test tests => 18; -my ( $url, $m ) = RT::Test->started_ok; -ok( $m->login, 'logged in' ); - -# create a saved search -$m->get_ok( $url . "/Search/Build.html?Query=" . 'id=1' ); - -$m->submit_form( - form_name => 'BuildQuery', - fields => { SavedSearchDescription => 'foo', }, - button => 'SavedSearchSave', -); - -my ( $search_uri, $user_id, $search_id ) = - $m->content =~ /value="(RT::User-(\d+)-SavedSearch-(\d+))"/; -$m->submit_form( - form_name => 'BuildQuery', - fields => { SavedSearchLoad => $search_uri }, - button => 'SavedSearchSave', -); - -$m->content_like( qr/name="SavedSearchDelete"\s+value="Delete"/, - 'found Delete button' ); -$m->content_like( - qr/name="SavedSearchDescription"\s+value="foo"/, - 'found Description input with the value filled' -); - -# create a dashboard with the created search - -$m->get_ok( $url . "/Dashboards/Modify.html?Create=1" ); -$m->submit_form( - form_name => 'ModifyDashboard', - fields => { Name => 'bar' }, -); - -$m->content_like( qr/Saved dashboard bar/i, 'dashboard saved' ); -my $dashboard_queries_link = $m->find_link( text_regex => qr/Queries/ ); -my ( $dashboard_id ) = $dashboard_queries_link->url =~ /id=(\d+)/; - -$m->get_ok( $url . "/Dashboards/Queries.html?id=$dashboard_id" ); - -$m->content_lacks( 'value="Update"', 'no update button' ); - -$m->submit_form( - form_name => 'Dashboard-Searches-body', - fields => - { 'Searches-body-Available' => "search-$search_id-RT::User-$user_id" }, - button => 'add', -); - -$m->content_like( qr/Dashboard updated/i, 'added search foo to dashboard bar' ); - -# delete the created search - -$m->get_ok( $url . "/Search/Build.html?Query=" . 'id=1' ); -$m->submit_form( - form_name => 'BuildQuery', - fields => { SavedSearchLoad => $search_uri }, -); -$m->submit_form( - form_name => 'BuildQuery', - button => 'SavedSearchDelete', -); - -$m->content_lacks( $search_uri, 'deleted search foo' ); - -# here is what we really want to test - -$m->get_ok( $url . "/Dashboards/Queries.html?id=$dashboard_id" ); -$m->content_like( qr/Deleted queries/i, 'found deleted message' ); - -# Update button shows so we can update the deleted search easily -$m->content_contains( 'value="Update"', 'found update button' ); - -$m->submit_form( - form_name => 'Dashboard-Searches-body', - button => 'update', -); - -$m->content_unlike( qr/Deleted queries/i, 'deleted message is gone' ); -$m->content_lacks( 'value="Update"', 'update button is gone too' ); - -$m->get_warnings; # we'll get a lot of warnings because the deleted search - |