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
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe ObjectStorage::PendingDirectUpload, :direct_uploads, :clean_gitlab_redis_shared_state, feature_category: :shared do
let(:location_identifier) { :artifacts }
let(:path) { 'some/path/123' }
describe '.prepare' do
it 'creates a redis entry for the given location identifier and path' do
redis_key = described_class.redis_key(location_identifier, path)
expect_to_log(:prepared, redis_key)
freeze_time do
described_class.prepare(location_identifier, path)
::Gitlab::Redis::SharedState.with do |redis|
expect(redis.hget('pending_direct_uploads', redis_key)).to eq(Time.current.utc.to_i.to_s)
end
end
end
end
describe '.count' do
subject { described_class.count }
before do
described_class.prepare(:artifacts, 'some/path')
described_class.prepare(:uploads, 'some/other/path')
described_class.prepare(:artifacts, 'some/new/path')
end
it { is_expected.to eq(3) }
end
describe '.with_pending_only' do
let(:path_1) { 'some/path/123' }
let(:path_2) { 'some/path/456' }
let(:path_3) { 'some/path/789' }
let(:paths) { [path_1, path_2, path_3] }
subject(:result) { described_class.with_pending_only(location_identifier, paths) }
before do
described_class.prepare(location_identifier, path_1)
described_class.prepare(:uploads, path_2)
described_class.prepare(location_identifier, path_3)
end
it 'selects and returns the paths with a matching redis entry under the location identifier' do
expect(result).to eq([path_1, path_3])
end
end
describe '.exists?' do
let(:path) { 'some/path/123' }
subject { described_class.exists?(given_identifier, given_path) }
before do
described_class.prepare(location_identifier, path)
end
context 'when there is a matching redis entry for the given path under the location identifier' do
let(:given_identifier) { location_identifier }
let(:given_path) { path }
it { is_expected.to eq(true) }
end
context 'when there is a matching redis entry for the given path under a different location identifier' do
let(:given_identifier) { :uploads }
let(:given_path) { path }
it { is_expected.to eq(false) }
end
context 'when there is no matching redis entry for the given path under the location identifier' do
let(:given_identifier) { location_identifier }
let(:given_path) { 'wrong/path/123' }
it { is_expected.to eq(false) }
end
end
describe '.complete' do
it 'deletes the redis entry for the given path' do
described_class.prepare(location_identifier, path)
expect(described_class.exists?(location_identifier, path)).to eq(true)
redis_key = described_class.redis_key(location_identifier, path)
expect_to_log(:completed, redis_key)
described_class.complete(location_identifier, path)
expect(described_class.exists?(location_identifier, path)).to eq(false)
end
end
describe '.redis_key' do
subject { described_class.redis_key(location_identifier, path) }
it { is_expected.to eq("#{location_identifier}:#{path}") }
end
describe '.each' do
before do
described_class.prepare(:artifacts, 'some/path')
described_class.prepare(:uploads, 'some/other/path')
described_class.prepare(:artifacts, 'some/new/path')
end
it 'yields each pending direct upload object' do
expect { |b| described_class.each(&b) }.to yield_control.exactly(3).times
end
end
describe '#stale?' do
let(:pending_direct_upload) do
described_class.new(
redis_key: 'artifacts:some/path',
storage_location_identifier: 'artifacts',
object_storage_path: 'some/path',
timestamp: timestamp
)
end
subject { pending_direct_upload.stale? }
context 'when timestamp is older than 3 hours ago' do
let(:timestamp) { 4.hours.ago.utc.to_i }
it { is_expected.to eq(true) }
end
context 'when timestamp is not older than 3 hours ago' do
let(:timestamp) { 2.hours.ago.utc.to_i }
it { is_expected.to eq(false) }
end
end
describe '#delete' do
let(:object_storage_path) { 'some/path' }
let(:pending_direct_upload) do
described_class.new(
redis_key: 'artifacts:some/path',
storage_location_identifier: location_identifier,
object_storage_path: object_storage_path,
timestamp: 4.hours.ago
)
end
let(:location_identifier) { JobArtifactUploader.storage_location_identifier }
let(:fog_connection) { stub_artifacts_object_storage(JobArtifactUploader, direct_upload: true) }
before do
fog_connection.directories
.new(key: location_identifier.to_s)
.files
.create( # rubocop:disable Rails/SaveBang
key: object_storage_path,
body: 'something'
)
prepare_pending_direct_upload(object_storage_path, 4.hours.ago)
end
it 'deletes the object from storage and also the redis entry',
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/450627' do
redis_key = described_class.redis_key(location_identifier, object_storage_path)
expect_to_log(:deleted, redis_key)
expect { pending_direct_upload.delete }.to change { total_pending_direct_uploads }.by(-1)
expect_not_to_have_pending_direct_upload(object_storage_path)
expect_pending_uploaded_object_not_to_exist(object_storage_path)
end
end
def expect_to_log(event, redis_key)
expect(Gitlab::AppLogger).to receive(:info).with(
message: "Pending direct upload #{event}",
redis_key: redis_key
)
end
end
|