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

release_attachments_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: 0ef9dad6a132644563557795ee86183636b65cb6 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Representation::ReleaseAttachments do
  shared_examples 'a Release attachments data' do
    it 'returns an instance of ReleaseAttachments' do
      expect(representation).to be_an_instance_of(described_class)
    end

    it 'includes release DB id' do
      expect(representation.release_db_id).to eq 42
    end

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

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

    it_behaves_like 'a Release attachments data' do
      let(:representation) { described_class.from_db_record(release) }
    end
  end

  describe '.from_json_hash' do
    it_behaves_like 'a Release attachments data' do
      let(:hash) do
        {
          'release_db_id' => 42,
          'description' => '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
      release_id = rand(100)
      representation = described_class.new(release_db_id: release_id, description: 'text')

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