Welcome to mirror list, hosted at ThFree Co, Russian Federation.

renameable_upload.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08e8d07ed4d715e90908d5ff1178fbda1eebd317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class RenameableUpload < SimpleDelegator
  attr_accessor :original_filename

  # Get a fixture file with a new unique name, and the same extension
  def self.unique_file(name)
    upload = new(Rack::Test::UploadedFile.new("spec/fixtures/#{name}"))
    ext = File.extname(name)
    new_name = File.basename(FactoryBot.generate(:filename), '.*')
    upload.original_filename = new_name + ext

    upload
  end
end