summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/sanitizers/exif_spec.rb
blob: 623fa4bc48a77061e911c673dbbf0caec8f31b25 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Sanitizers::Exif do
  let(:sanitizer) { described_class.new }
  let(:mime_type) { 'image/jpeg' }

  before do
    allow(Gitlab::Utils::MimeType).to receive(:from_string).and_return(mime_type)
  end

  describe '#batch_clean' do
    context 'with image uploads' do
      let_it_be(:upload1) { create(:upload, :with_file, :issuable_upload) }
      let_it_be(:upload2) { create(:upload, :with_file, :personal_snippet_upload) }
      let_it_be(:upload3) { create(:upload, :with_file, created_at: 3.days.ago) }

      it 'processes all uploads if range ID is not set' do
        expect(sanitizer).to receive(:clean).exactly(3).times

        sanitizer.batch_clean
      end

      it 'processes only uploads in the selected range' do
        expect(sanitizer).to receive(:clean).once

        sanitizer.batch_clean(start_id: upload1.id, stop_id: upload1.id)
      end

      it 'processes only uploads for the selected uploader' do
        expect(sanitizer).to receive(:clean).once

        sanitizer.batch_clean(uploader: 'PersonalFileUploader')
      end

      it 'processes only uploads created since specified date' do
        expect(sanitizer).to receive(:clean).twice

        sanitizer.batch_clean(since: 2.days.ago)
      end

      it 'pauses if sleep_time is set' do
        expect(sanitizer).to receive(:sleep).exactly(3).times.with(1.second)
        expect(sanitizer).to receive(:clean).exactly(3).times

        sanitizer.batch_clean(sleep_time: 1)
      end
    end

    it 'filters only jpg/tiff images by filename' do
      create(:upload, path: 'filename.jpg')
      create(:upload, path: 'filename.jpeg')
      create(:upload, path: 'filename.JPG')
      create(:upload, path: 'filename.tiff')
      create(:upload, path: 'filename.TIFF')
      create(:upload, path: 'filename.png')
      create(:upload, path: 'filename.txt')

      expect(sanitizer).to receive(:clean).exactly(5).times

      sanitizer.batch_clean
    end
  end

  describe '#clean' do
    let(:uploader) { create(:upload, :with_file, :issuable_upload).retrieve_uploader }
    let(:dry_run) { false }

    subject { sanitizer.clean(uploader, dry_run: dry_run) }

    context "no dry run" do
      it "removes exif from the image" do
        uploader.store!(fixture_file_upload('spec/fixtures/rails_sample.jpg'))

        original_upload = uploader.upload
        expected_args = ["exiftool", "-all=", "-tagsFromFile", "@", *Gitlab::Sanitizers::Exif::EXCLUDE_PARAMS, "--IPTC:all", "--XMP-iptcExt:all", kind_of(String)]

        expect(sanitizer).to receive(:extra_tags).and_return(["", 0])
        expect(sanitizer).to receive(:exec_remove_exif!).once.and_call_original
        expect(uploader).to receive(:store!).and_call_original
        expect(Gitlab::Popen).to receive(:popen).with(expected_args) do |args|
          File.write("#{args.last}_original", "foo") if args.last.start_with?(Dir.tmpdir)

          [expected_args, 0]
        end

        subject

        expect(uploader.upload.id).not_to eq(original_upload.id)
        expect(uploader.upload.path).to eq(original_upload.path)
      end

      it "ignores image without exif" do
        expected_args = ["exiftool", "-all", "-j", "-sort", "--IPTC:all", "--XMP-iptcExt:all", kind_of(String)]

        expect(Gitlab::Popen).to receive(:popen).with(expected_args).and_return(["[{}]", 0])
        expect(sanitizer).not_to receive(:exec_remove_exif!)
        expect(uploader).not_to receive(:store!)

        subject
      end

      it "raises an error if the exiftool fails with an error" do
        expect(Gitlab::Popen).to receive(:popen).and_return(["error", 1])

        expect { subject }.to raise_exception(RuntimeError, "failed to get exif tags: error")
      end

      context 'for files that do not have the correct MIME type' do
        let(:mime_type) { 'text/plain' }

        it 'cleans only jpg/tiff images with the correct mime types' do
          expect(sanitizer).not_to receive(:extra_tags)

          expect { subject }.to raise_error(RuntimeError, %r{File type text/plain not supported})
        end
      end
    end

    context "dry run" do
      let(:dry_run) { true }

      it "doesn't change the image" do
        expect(sanitizer).to receive(:extra_tags).and_return({ 'foo' => 'bar' })
        expect(sanitizer).not_to receive(:exec_remove_exif!)
        expect(uploader).not_to receive(:store!)

        subject
      end
    end
  end

  describe '#clean_existing_path' do
    let(:dry_run) { false }

    let(:tmp_file) { Tempfile.new("rails_sample.jpg") }

    subject { sanitizer.clean_existing_path(tmp_file.path, dry_run: dry_run) }

    context "no dry run" do
      let(:file_content) { fixture_file_upload('spec/fixtures/rails_sample.jpg') }

      before do
        File.open(tmp_file.path, "w+b") { |f| f.write file_content }
      end

      it "removes exif from the image" do
        expected_args = ["exiftool", "-all=", "-tagsFromFile", "@", *Gitlab::Sanitizers::Exif::EXCLUDE_PARAMS, "--IPTC:all", "--XMP-iptcExt:all", kind_of(String)]

        expect(sanitizer).to receive(:extra_tags).and_return(["", 0])
        expect(sanitizer).to receive(:exec_remove_exif!).once.and_call_original
        expect(Gitlab::Popen).to receive(:popen).with(expected_args) do |args|
          File.write("#{args.last}_original", "foo") if args.last.start_with?(Dir.tmpdir)

          [expected_args, 0]
        end

        subject
      end

      it "ignores image without exif" do
        expected_args = ["exiftool", "-all", "-j", "-sort", "--IPTC:all", "--XMP-iptcExt:all", kind_of(String)]

        expect(Gitlab::Popen).to receive(:popen).with(expected_args).and_return(["[{}]", 0])
        expect(sanitizer).not_to receive(:exec_remove_exif!)

        subject
      end

      it "raises an error if the exiftool fails with an error" do
        expect(Gitlab::Popen).to receive(:popen).and_return(["error", 1])

        expect { subject }.to raise_exception(RuntimeError, "failed to get exif tags: error")
      end

      context 'for files that do not have the correct MIME type from file' do
        let(:mime_type) { 'text/plain' }

        it 'cleans only jpg/tiff images with the correct mime types' do
          expect(sanitizer).not_to receive(:extra_tags)

          expect { subject }.to raise_error(RuntimeError, %r{File type text/plain not supported})
        end
      end

      context 'skip_unallowed_types is false' do
        context 'for files that do not have the correct MIME type from input content' do
          let(:mime_type) { 'text/plain' }

          it 'raises an error if not jpg/tiff images with the correct mime types' do
            expect(sanitizer).not_to receive(:extra_tags)

            expect do
              sanitizer.clean_existing_path(tmp_file.path, content: file_content)
            end.to raise_error(RuntimeError, %r{File type text/plain not supported})
          end
        end

        context 'for files that do not have the correct MIME type from input content' do
          let(:mime_type) { 'text/plain' }

          it 'raises an error if not jpg/tiff images with the correct mime types' do
            expect(sanitizer).not_to receive(:extra_tags)

            expect do
              sanitizer.clean_existing_path(tmp_file.path, content: file_content)
            end.to raise_error(RuntimeError, %r{File type text/plain not supported})
          end
        end
      end

      context 'skip_unallowed_types is true' do
        context 'for files that do not have the correct MIME type from input content' do
          let(:mime_type) { 'text/plain' }

          it 'cleans only jpg/tiff images with the correct mime types' do
            expect(sanitizer).not_to receive(:extra_tags)

            expect do
              sanitizer.clean_existing_path(tmp_file.path, content: file_content, skip_unallowed_types: true)
            end.not_to raise_error
          end
        end

        context 'for files that do not have the correct MIME type from input content' do
          let(:mime_type) { 'text/plain' }

          it 'cleans only jpg/tiff images with the correct mime types' do
            expect(sanitizer).not_to receive(:extra_tags)

            expect do
              sanitizer.clean_existing_path(tmp_file.path, content: file_content, skip_unallowed_types: true)
            end.not_to raise_error
          end
        end
      end
    end

    context "dry run" do
      let(:dry_run) { true }

      it "doesn't change the image" do
        expect(sanitizer).to receive(:extra_tags).and_return({ 'foo' => 'bar' })
        expect(sanitizer).not_to receive(:exec_remove_exif!)

        subject
      end
    end
  end

  describe "#extra_tags" do
    it "returns a list of keys for exif file" do
      tags = '[{
                "DigitalSourceType": "some source",
                "ImageHeight": 654
              }]'

      expect(Gitlab::Popen).to receive(:popen).and_return([tags, 0])

      expect(sanitizer.send(:extra_tags, 'filename')).not_to be_empty
    end

    it "returns an empty list for file with only whitelisted and ignored tags" do
      tags = '[{
                "ImageHeight": 654,
                "Megapixels": 0.641
              }]'

      expect(Gitlab::Popen).to receive(:popen).and_return([tags, 0])

      expect(sanitizer.send(:extra_tags, 'some file')).to be_empty
    end
  end
end