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

pages_size_limit_shared_examples.rb « services « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9e906ebb75d8f31efc17cc43bd37315e7362113 (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
# frozen_string_literal: true

RSpec.shared_examples 'pages size limit is' do |size_limit|
  context "when size is below the limit" do
    before do
      allow(metadata).to receive(:total_size).and_return(size_limit - 1.megabyte)
      allow(metadata).to receive(:entries).and_return([])
    end

    it 'updates pages correctly' do
      subject.execute

      expect(deploy_status.description).not_to be_present
      expect(project.pages_metadatum).to be_deployed
    end
  end

  context "when size is above the limit" do
    before do
      allow(metadata).to receive(:total_size).and_return(size_limit + 1.megabyte)
      allow(metadata).to receive(:entries).and_return([])
    end

    it 'limits the maximum size of gitlab pages' do
      subject.execute

      expect(deploy_status.description)
        .to match(/artifacts for pages are too large/)
      expect(deploy_status).to be_script_failure
    end
  end
end