mirror of https://github.com/mastodon/mastodon
Remove methods from ObfuscateFilename and spec (#3347)
* Remove methods from ObfuscateFilename * Spec ObfuscateFilenamepull/3278/head^2
parent
7bf2d6cb06
commit
922fb74197
@ -0,0 +1,30 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
describe ApplicationController, type: :controller do
|
||||||
|
controller do
|
||||||
|
include ObfuscateFilename
|
||||||
|
|
||||||
|
obfuscate_filename :file
|
||||||
|
|
||||||
|
def file
|
||||||
|
render plain: params[:file]&.original_filename
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
before do
|
||||||
|
routes.draw { get 'file' => 'anonymous#file' }
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'obfusticates filename if the given parameter is specified' do
|
||||||
|
file = fixture_file_upload('files/imports.txt', 'text/plain')
|
||||||
|
post 'file', params: { file: file }
|
||||||
|
expect(response.body).to end_with '.txt'
|
||||||
|
expect(response.body).not_to include 'imports'
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'does nothing if the given parameter is not specified' do
|
||||||
|
post 'file'
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue