summaryrefslogtreecommitdiff
path: root/spec/models/uploads/fog_spec.rb
blob: 1ffe7c6c43bf5eb839e33e959ec2aaa7311e6e3f (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Uploads::Fog do
  let(:data_store) { described_class.new }

  before do
    stub_uploads_object_storage(FileUploader)
  end

  describe '#available?' do
    subject { data_store.available? }

    context 'when object storage is enabled' do
      it { is_expected.to be_truthy }
    end

    context 'when object storage is disabled' do
      before do
        stub_uploads_object_storage(FileUploader, enabled: false)
      end

      it { is_expected.to be_falsy }
    end
  end

  context 'model with uploads' do
    let(:project) { create(:project) }
    let(:relation) { project.uploads }

    describe '#keys' do
      let!(:uploads) { create_list(:upload, 2, :object_storage, uploader: FileUploader, model: project) }

      subject { data_store.keys(relation) }

      it 'returns keys' do
        is_expected.to match_array(relation.pluck(:path))
      end
    end

    describe '#delete_keys' do
      let(:connection) { ::Fog::Storage.new(FileUploader.object_store_credentials) }
      let(:keys) { data_store.keys(relation) }
      let(:paths) { relation.pluck(:path) }
      let!(:uploads) { create_list(:upload, 2, :with_file, :issuable_upload, model: project) }

      subject { data_store.delete_keys(keys) }

      before do
        uploads.each { |upload| upload.retrieve_uploader.migrate!(2) }
      end

      it 'deletes multiple data' do
        paths.each do |path|
          expect(connection.get_object('uploads', path)[:body]).not_to be_nil
        end

        subject

        paths.each do |path|
          expect { connection.get_object('uploads', path)[:body] }.to raise_error(Excon::Error::NotFound)
        end
      end

      context 'when one of keys is missing' do
        let(:keys) { ['unknown'] + super() }

        it 'deletes only existing keys' do
          paths.each do |path|
            expect(connection.get_object('uploads', path)[:body]).not_to be_nil
          end

          expect_next_instance_of(::Fog::Storage) do |storage|
            allow(storage).to receive(:delete_object).and_call_original
            expect(storage).to receive(:delete_object).with('uploads', keys.first).and_raise(::Google::Apis::ClientError, 'NotFound')
          end

          subject

          paths.each do |path|
            expect { connection.get_object('uploads', path)[:body] }.to raise_error(Excon::Error::NotFound)
          end
        end
      end
    end
  end
end