diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-03-14 15:36:39 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-03-14 15:36:39 +0000 |
commit | c34c5eeaa7122ea2f2078f0051740a78ce821cb0 (patch) | |
tree | dd2c67b20f21e0c3a7a0b12caa963eeaede540e3 | |
parent | 8884d896d6be9826d412615d37a8a4926289ed6a (diff) | |
parent | 67944e4bf8a716a45b7986b7df8fb44014265007 (diff) |
Merge remote branch 'origin/hide-problem-test'
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Report.pm | 2 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FixMyBarangay.pm | 2 | ||||
-rw-r--r-- | t/cobrand/fixmybarangay.t | 28 | ||||
-rw-r--r-- | templates/web/fixmybarangay/report/_message_manager.html | 2 | ||||
-rw-r--r-- | templates/web/fixmystreet/report/display.html | 2 |
5 files changed, 32 insertions, 4 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report.pm b/perllib/FixMyStreet/App/Controller/Report.pm index 57b2d781e..24dececac 100644 --- a/perllib/FixMyStreet/App/Controller/Report.pm +++ b/perllib/FixMyStreet/App/Controller/Report.pm @@ -221,7 +221,7 @@ sub delete :Local :Args(1) { my $body = $c->user->obj->from_body; return $c->res->redirect($uri) unless $body; - return $c->res->redirect($uri) unless $p->bodies->{$body}; + return $c->res->redirect($uri) unless $p->bodies->{$body->id}; $p->state('hidden'); $p->lastupdate( \'ms_current_timestamp()' ); diff --git a/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm b/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm index 1eda6cf43..c7535f856 100644 --- a/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm +++ b/perllib/FixMyStreet/Cobrand/FixMyBarangay.pm @@ -34,7 +34,7 @@ sub only_authed_can_create { } # effectively allows barangay staff to hide reports -sub council_id { return [ 1, 2 ]; } +sub council_id { return '1,2' ; } sub areas_on_around { return [ 1, 2 ]; diff --git a/t/cobrand/fixmybarangay.t b/t/cobrand/fixmybarangay.t index bc099bb20..d02dbe2e3 100644 --- a/t/cobrand/fixmybarangay.t +++ b/t/cobrand/fixmybarangay.t @@ -90,6 +90,34 @@ ok $dps_report->whensent, 'DPS report marked as sent'; is $dps_report->send_method_used, 'Open311', 'DPS report sent via Open311'; is $dps_report->external_id, 248, 'DPS report has right external ID'; +my $fmb_test_email = 'luz_test_user@example.com'; +my $user = FixMyStreet::App->model('DB::User')->find_or_create( { email => $fmb_test_email, from_body => 1, password => 'fmbsecret' } ); +ok $user, "test user does exist"; + +$mech->log_out_ok; +$mech->get_ok( '/report/' . $luz_report->id ); +$mech->content_lacks( "Remove from site" ); +$mech->content_contains( "Report abuse" ); + +$mech->post_ok('/report/delete/' . $luz_report->id); +is $mech->uri->path, '/report/' . $luz_report->id, "should redirect to report page, deletion ignored"; +$luz_report->discard_changes; +is $luz_report->state, 'confirmed', 'should be confirmed'; + +$user = $mech->log_in_ok($fmb_test_email); + +$mech->get_ok( '/report/' . $luz_report->id ); +$mech->content_contains( "Remove from site" ); +$mech->content_lacks( "Report abuse" ); + +$mech->form_id('remove-from-site-form'); +$mech->submit_form(); +is $mech->uri->path, '/report/' . $luz_report->id, "should redirect to report page, deletion successful"; +$luz_report->discard_changes; +is $luz_report->state, 'hidden', 'should be hidden'; + +$mech->delete_user($fmb_test_email); + $mech->delete_problems_for_body( 1 ); $mech->delete_problems_for_body( 3 ); diff --git a/templates/web/fixmybarangay/report/_message_manager.html b/templates/web/fixmybarangay/report/_message_manager.html index b2537e907..3845feeef 100644 --- a/templates/web/fixmybarangay/report/_message_manager.html +++ b/templates/web/fixmybarangay/report/_message_manager.html @@ -73,7 +73,7 @@ $(document).ready(function() { // call this to push the auto-refresh timeout off so it's only triggered // if there's no activity for a while function reset_timeout() { - if (refresh_period && can_refresh) { + if (mm_url && refresh_period && can_refresh) { if (timeout_id) { clearTimeout(timeout_id); } diff --git a/templates/web/fixmystreet/report/display.html b/templates/web/fixmystreet/report/display.html index f832c0a4d..b75ef92bc 100644 --- a/templates/web/fixmystreet/report/display.html +++ b/templates/web/fixmystreet/report/display.html @@ -28,7 +28,7 @@ <div class="shadow-wrap"> <ul id="key-tools"> [% IF c.user_exists AND c.cobrand.users_can_hide AND c.user.belongs_to_body( c.cobrand.council_id ) %] - <li><form method="post" action="/report/delete/[% problem.id %]"> + <li><form method="post" action="/report/delete/[% problem.id %]" id="remove-from-site-form"> <input type="submit" id="key-tool-report-abuse" class="abuse" value="Remove from site"> </form></li> [% ELSIF c.cobrand.moniker != 'zurich' %] |