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

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

require 'spec_helper'

RSpec.describe BuildArtifactEntity do
  let_it_be(:job) { create(:ci_build) }
  let_it_be(:artifact) { create(:ci_job_artifact, :codequality, expire_at: 1.hour.from_now, job: job) }

  let(:options) { { request: double } }

  let(:entity) do
    described_class.represent(artifact, options)
  end

  describe '#as_json' do
    subject { entity.as_json }

    it 'contains job name' do
      expect(subject[:name]).to eq "test:codequality"
    end

    it 'exposes information about expiration of artifacts' do
      expect(subject).to include(:expired, :expire_at)
    end

    it 'exposes the artifact download path' do
      expect(subject[:path]).to include "jobs/#{job.id}/artifacts/download?file_type=codequality"
    end

    context 'when project is specified in options' do
      let(:options) { super().merge(project: job.project) }

      it 'doesnt get a project from the artifact' do
        expect(artifact).not_to receive(:project)

        subject
      end
    end
  end
end