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

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

require 'spec_helper'

RSpec.describe Projects::TopicsFinder do
  let_it_be(:user) { create(:user) }

  let!(:topic1) { create(:topic, name: 'topicB') }
  let!(:topic2) { create(:topic, name: 'topicC') }
  let!(:topic3) { create(:topic, name: 'topicA') }

  let!(:project1) { create(:project, :public, namespace: user.namespace, topic_list: 'topicC, topicA, topicB') }
  let!(:project2) { create(:project, :public, namespace: user.namespace, topic_list: 'topicC, topicA') }
  let!(:project3) { create(:project, :public, namespace: user.namespace, topic_list: 'topicC') }

  describe '#execute' do
    it 'returns topics' do
      topics = described_class.new.execute

      expect(topics).to eq([topic2, topic3, topic1])
    end

    context 'filter by name' do
      using RSpec::Parameterized::TableSyntax

      where(:search, :result) do
        'topic'  | %w[topicC topicA topicB]
        'pic'    | %w[topicC topicA topicB]
        'B'      | %w[]
        'cB'     | %w[]
        'icB'    | %w[topicB]
        'topicA' | %w[topicA]
        'topica' | %w[topicA]
      end

      with_them do
        it 'returns filtered topics' do
          topics = described_class.new(params: { search: search }).execute

          expect(topics.map(&:name)).to eq(result)
        end
      end
    end
  end
end