summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/middleware/rack_multipart_tempfile_factory_spec.rb
blob: b9d00b556c5c3cfd77a609ed5cd7902a1f2b7d2a (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# frozen_string_literal: true

require 'fast_spec_helper'
require 'rack'

RSpec.describe Gitlab::Middleware::RackMultipartTempfileFactory do
  let(:app) do
    lambda do |env|
      params = Rack::Request.new(env).params

      if params['file']
        [200, { 'Content-Type' => params['file'][:type] }, [params['file'][:tempfile].read]]
      else
        [204, {}, []]
      end
    end
  end

  let(:file_contents) { '/9j/4AAQSkZJRgABAQAAAQABAAD//gA+Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcg' }

  let(:multipart_fixture) do
    boundary = 'AaB03x'
    data = <<~DATA
      --#{boundary}\r
      Content-Disposition: form-data; name="file"; filename="dj.jpg"\r
      Content-Type: image/jpeg\r
      Content-Transfer-Encoding: base64\r
      \r
      #{file_contents}\r
      --#{boundary}--\r
    DATA

    {
      'CONTENT_TYPE' => "multipart/form-data; boundary=#{boundary}",
      'CONTENT_LENGTH' => data.bytesize.to_s,
      input: StringIO.new(data)
    }
  end

  subject { described_class.new(app) }

  context 'for a multipart request' do
    let(:env) { Rack::MockRequest.env_for('/', multipart_fixture) }

    context 'when the environment variable is enabled' do
      before do
        stub_env('GITLAB_TEMPFILE_IMMEDIATE_UNLINK', '1')
      end

      it 'immediately unlinks the temporary file' do
        tempfile = Tempfile.new('foo')

        expect(tempfile.path).not_to be(nil)
        expect(Rack::Multipart::Parser::TEMPFILE_FACTORY).to receive(:call).and_return(tempfile)
        expect(tempfile).to receive(:unlink).and_call_original

        subject.call(env)

        expect(tempfile.path).to be(nil)
      end

      it 'processes the request as normal' do
        expect(subject.call(env)).to eq([200, { 'Content-Type' => 'image/jpeg' }, [file_contents]])
      end
    end

    context 'when the environment variable is disabled' do
      it 'does not immediately unlink the temporary file' do
        tempfile = Tempfile.new('foo')

        expect(tempfile.path).not_to be(nil)
        expect(Rack::Multipart::Parser::TEMPFILE_FACTORY).to receive(:call).and_return(tempfile)
        expect(tempfile).not_to receive(:unlink).and_call_original

        subject.call(env)

        expect(tempfile.path).not_to be(nil)
      end

      it 'processes the request as normal' do
        expect(subject.call(env)).to eq([200, { 'Content-Type' => 'image/jpeg' }, [file_contents]])
      end
    end
  end

  context 'for a regular request' do
    let(:env) { Rack::MockRequest.env_for('/', params: { 'foo' => 'bar' }) }

    it 'does nothing' do
      expect(Rack::Multipart::Parser::TEMPFILE_FACTORY).not_to receive(:call)
      expect(subject.call(env)).to eq([204, {}, []])
    end
  end
end