Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deployment_uploader_spec.rb « pages « uploaders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d9a0efe228f4f6e0df5240c0a55873bd3d5033a (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Pages::DeploymentUploader do
  let(:pages_deployment) { create(:pages_deployment) }
  let(:uploader) { described_class.new(pages_deployment, :file) }

  subject { uploader }

  it_behaves_like "builds correct paths",
                  store_dir: %r[/\h{2}/\h{2}/\h{64}/pages_deployments/\d+],
                  cache_dir: %r[pages/@hashed/tmp/cache],
                  work_dir: %r[pages/@hashed/tmp/work]

  context 'when object store is REMOTE' do
    before do
      stub_pages_object_storage
    end

    include_context 'with storage', described_class::Store::REMOTE

    it_behaves_like 'builds correct paths', store_dir: %r[\A\h{2}/\h{2}/\h{64}/pages_deployments/\d+\z]
  end

  context 'when file is stored in valid local_path' do
    let(:file) do
      fixture_file_upload("spec/fixtures/pages.zip")
    end

    before do
      uploader.store!(file)
    end

    subject { uploader.file.path }

    it { is_expected.to match(%r[#{uploader.root}/@hashed/\h{2}/\h{2}/\h{64}/pages_deployments/#{pages_deployment.id}/pages.zip]) }
  end
end