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

project_import_entity_spec.rb « serializers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d292d18ae7247288cabafd411ecaac5eab2bfa8 (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 ProjectImportEntity, feature_category: :importers do
  include ImportHelper

  let_it_be(:project) { create(:project, import_status: :started, import_source: 'namespace/project') }

  let(:provider_url) { 'https://provider.com' }
  let(:entity) { described_class.represent(project, provider_url: provider_url) }

  before do
    create(:import_failure, project: project)
  end

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

    it 'includes required fields' do
      expect(subject[:import_source]).to eq(project.import_source)
      expect(subject[:import_status]).to eq(project.import_status)
      expect(subject[:human_import_status_name]).to eq(project.human_import_status_name)
      expect(subject[:provider_link]).to eq(provider_project_link_url(provider_url, project[:import_source]))
      expect(subject[:import_error]).to eq(nil)
    end

    context 'when import is failed' do
      let!(:last_import_failure) { create(:import_failure, project: project, exception_message: 'LAST ERROR') }

      before do
        project.import_state.fail_op!
      end

      it 'includes only the last import failure' do
        expect(subject[:import_error]).to eq(last_import_failure.exception_message)
      end
    end
  end
end