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

note_text_spec.rb « representation « github_import « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b57c9a0373ef5d68622b5d29828ff4dddaa8fa1 (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
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Representation::NoteText do
  shared_examples 'a Note text data' do |match_record_type|
    it 'returns an instance of NoteText' do
      expect(representation).to be_an_instance_of(described_class)
    end

    it 'includes record DB id' do
      expect(representation.record_db_id).to eq 42
    end

    it 'includes record type' do
      expect(representation.record_type).to eq match_record_type
    end

    it 'includes note text' do
      expect(representation.text).to eq 'Some text here..'
    end
  end

  describe '.from_db_record' do
    context 'with Release' do
      let(:record) { build_stubbed(:release, id: 42, description: 'Some text here..') }

      it_behaves_like 'a Note text data', 'Release' do
        let(:representation) { described_class.from_db_record(record) }
      end
    end

    context 'with Issue' do
      let(:record) { build_stubbed(:issue, id: 42, description: 'Some text here..') }

      it_behaves_like 'a Note text data', 'Issue' do
        let(:representation) { described_class.from_db_record(record) }
      end
    end

    context 'with MergeRequest' do
      let(:record) { build_stubbed(:merge_request, id: 42, description: 'Some text here..') }

      it_behaves_like 'a Note text data', 'MergeRequest' do
        let(:representation) { described_class.from_db_record(record) }
      end
    end

    context 'with Note' do
      let(:record) { build_stubbed(:note, id: 42, note: 'Some text here..') }

      it_behaves_like 'a Note text data', 'Note' do
        let(:representation) { described_class.from_db_record(record) }
      end
    end
  end

  describe '.from_json_hash' do
    it_behaves_like 'a Note text data', 'Release' do
      let(:hash) do
        {
          'record_db_id' => 42,
          'record_type' => 'Release',
          'text' => 'Some text here..'
        }
      end

      let(:representation) { described_class.from_json_hash(hash) }
    end
  end

  describe '#github_identifiers' do
    it 'returns a hash with needed identifiers' do
      record_id = rand(100)
      representation = described_class.new(record_db_id: record_id, text: 'text')

      expect(representation.github_identifiers).to eq({ db_id: record_id })
    end
  end
end