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

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

require 'spec_helper'

RSpec.shared_examples 'Debian Distributions Finder' do |factory, can_freeze|
  let_it_be(:distribution_with_suite, freeze: can_freeze) { create(factory, suite: 'mysuite') }
  let_it_be(:container) { distribution_with_suite.container }
  let_it_be(:distribution_with_same_container, freeze: can_freeze) { create(factory, container: container ) }
  let_it_be(:distribution_with_same_codename, freeze: can_freeze) { create(factory, codename: distribution_with_suite.codename ) }
  let_it_be(:distribution_with_same_suite, freeze: can_freeze) { create(factory, suite: distribution_with_suite.suite ) }
  let_it_be(:distribution_with_codename_and_suite_flipped, freeze: can_freeze) { create(factory, codename: distribution_with_suite.suite, suite: distribution_with_suite.codename) }

  let(:params) { {} }
  let(:service) { described_class.new(container, params) }

  subject { service.execute.to_a }

  context 'by codename' do
    context 'with existing codename' do
      let(:params) { { codename: distribution_with_suite.codename } }

      it 'finds distributions by codename' do
        is_expected.to contain_exactly(distribution_with_suite)
      end
    end

    context 'with non-existing codename' do
      let(:params) { { codename: 'does_not_exists' } }

      it 'finds nothing' do
        is_expected.to be_empty
      end
    end
  end

  context 'by suite' do
    context 'with existing suite' do
      let(:params) { { suite: 'mysuite' } }

      it 'finds distribution by suite' do
        is_expected.to contain_exactly(distribution_with_suite)
      end
    end

    context 'with non-existing suite' do
      let(:params) { { suite: 'does_not_exists' } }

      it 'finds nothing' do
        is_expected.to be_empty
      end
    end
  end

  context 'by codename_or_suite' do
    context 'with existing codename' do
      let(:params) { { codename_or_suite: distribution_with_suite.codename } }

      it 'finds distribution by codename' do
        is_expected.to contain_exactly(distribution_with_suite)
      end
    end

    context 'with existing suite' do
      let(:params) { { codename_or_suite: 'mysuite' } }

      it 'finds distribution by suite' do
        is_expected.to contain_exactly(distribution_with_suite)
      end
    end

    context 'with non-existing suite' do
      let(:params) { { codename_or_suite: 'does_not_exists' } }

      it 'finds nothing' do
        is_expected.to be_empty
      end
    end
  end
end