diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-09-04 11:32:57 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-09-04 11:32:57 +0100 |
commit | 43edd82fb495e1dda39bdfa0c76de29f6bbbc57a (patch) | |
tree | 4065de56b6def0b03a0d0c2bfdd121d8cb4ed9d2 /spec/integration/view_request_spec.rb | |
parent | 6d215fba5cc709c43f12f86da39a643e4be5922b (diff) |
Fix for purging of cached attachments for non-default locales.0.17.0.4hotfix/0.17.0.4
Diffstat (limited to 'spec/integration/view_request_spec.rb')
-rw-r--r-- | spec/integration/view_request_spec.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/spec/integration/view_request_spec.rb b/spec/integration/view_request_spec.rb index 814e20fb3..eecb984f5 100644 --- a/spec/integration/view_request_spec.rb +++ b/spec/integration/view_request_spec.rb @@ -19,6 +19,28 @@ describe "When viewing requests" do @unregistered.browses_request("#{@info_request.url_title}?action=add") end + context "when a request is hidden by an admin" do + + it 'should not retain any cached attachments to be served up by the webserver' do + admin = login(FactoryGirl.create(:admin_user)) + non_owner = login(FactoryGirl.create(:user)) + info_request = FactoryGirl.create(:info_request_with_incoming_attachments) + incoming_message = info_request.incoming_messages.first + attachment_url = "/es/request/#{info_request.id}/response/#{incoming_message.id}/attach/2/interesting.pdf" + non_owner.get(attachment_url) + cache_directories_exist?(info_request).should be_true + + # Admin makes the incoming message requester only + post_data = {:incoming_message => {:prominence => 'hidden', + :prominence_reason => 'boring'}} + admin.post_via_redirect "/admin/incoming/update/#{info_request.incoming_messages.first.id}", post_data + admin.response.should be_success + + cache_directories_exist?(info_request).should be_false + end + + end + context 'when a response has prominence "normal"' do before do |