summaryrefslogtreecommitdiff
path: root/spec/uploaders/content_type_whitelist_spec.rb
blob: 0cafc7a3ae29df1251a5ab9e055b7de5192853dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ContentTypeWhitelist do
  let_it_be(:model) { build_stubbed(:user) }

  let!(:uploader) do
    stub_const('DummyUploader', Class.new(CarrierWave::Uploader::Base))

    DummyUploader.class_eval do
      include ContentTypeWhitelist::Concern

      def content_type_whitelist
        %w[image/png image/jpeg]
      end
    end

    DummyUploader.new(model, :dummy)
  end

  context 'upload whitelisted file content type' do
    let(:path) { File.join('spec', 'fixtures', 'rails_sample.jpg') }

    it_behaves_like 'accepted carrierwave upload'
    it_behaves_like 'upload with content type', 'image/jpeg'
  end

  context 'upload non-whitelisted file content type' do
    let(:path) { File.join('spec', 'fixtures', 'sanitized.svg') }

    it_behaves_like 'denied carrierwave upload'
  end

  context 'upload misnamed non-whitelisted file content type' do
    let(:path) { File.join('spec', 'fixtures', 'not_a_png.png') }

    it_behaves_like 'denied carrierwave upload'
  end
end