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

sorting_helper_spec.rb « helpers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 93e7c2c5840f0b05da280548dcddd14b05866d14 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# frozen_string_literal: true
require 'spec_helper'

describe SortingHelper do
  include ApplicationHelper
  include IconsHelper
  include ExploreHelper

  describe '#issuable_sort_option_title' do
    it 'returns correct title for issuable_sort_option_overrides key' do
      expect(issuable_sort_option_title('created_asc')).to eq('Created date')
    end

    it 'returns correct title for a valid sort value' do
      expect(issuable_sort_option_title('priority')).to eq('Priority')
    end

    it 'returns nil for invalid sort value' do
      expect(issuable_sort_option_title('invalid_key')).to eq(nil)
    end
  end

  describe '#issuable_sort_direction_button' do
    before do
      allow(self).to receive(:request).and_return(double(path: 'http://test.com', query_parameters: { label_name: 'test_label' }))
    end

    it 'keeps label filter param' do
      expect(issuable_sort_direction_button('created_date')).to include('label_name=test_label')
    end

    it 'returns icon with sort-highest when sort is created_date' do
      expect(issuable_sort_direction_button('created_date')).to include('sort-highest')
    end

    it 'returns icon with sort-lowest when sort is asc' do
      expect(issuable_sort_direction_button('created_asc')).to include('sort-lowest')
    end

    it 'returns icon with sort-lowest when sorting by milestone' do
      expect(issuable_sort_direction_button('milestone')).to include('sort-lowest')
    end

    it 'returns icon with sort-lowest when sorting by due_date' do
      expect(issuable_sort_direction_button('due_date')).to include('sort-lowest')
    end
  end

  # TODO: need separate tests for /admin/projects and /projects
  # TODO: should this be renamed to `projects_sort_option_title??` ... maybe not
  def stub_controller_path(value)
    allow(helper.controller).to receive(:controller_path).and_return(value)
  end

  def project_common_options
    {
      sort_value_latest_activity  => sort_title_latest_activity,
      sort_value_recently_created => sort_title_created_date,
      sort_value_name             => sort_title_name,
      sort_value_stars_desc       => sort_title_stars
    }
  end

  describe 'with `admin/projects` controller' do
    before do
      stub_controller_path('admin/projects')
    end

    describe '#projects_sort_options_hash' do
      it 'returns a hash of available sorting options' do
        hash = projects_sort_options_hash

        admin_options = project_common_options.merge(    {
          sort_value_oldest_activity  => sort_title_oldest_activity,
          sort_value_oldest_created   => sort_title_oldest_created,
          sort_value_recently_created => sort_title_recently_created,
          sort_value_stars_desc       => sort_title_most_stars,
          sort_value_largest_repo     => sort_title_largest_repo
        })
        expect(hash).to eq(admin_options)
      end
    end
  end

  describe 'with `projects` controller' do
    before do
      stub_controller_path('projects')
    end

    describe '#projects_sort_options_hash' do
      it 'returns a hash of available sorting options' do
        hash = projects_sort_options_hash
        common_options = project_common_options

        common_options.each do |key, opt|
          expect(hash).to include(key)
          expect(hash[key]).to eq(opt)
        end
      end
    end

    describe '#projects_reverse_sort_options_hash' do 
      it 'returns a reversed hash of available sorting options' do
        reverse_hash = projects_reverse_sort_options_hash

        options = {
          sort_value_latest_activity  => sort_value_oldest_activity,
          sort_value_recently_created => sort_value_oldest_created,
          sort_value_name             => sort_value_name_desc,
          sort_value_stars_desc       => sort_value_stars_asc,
          sort_value_oldest_activity  => sort_value_latest_activity,
          sort_value_oldest_created   => sort_value_recently_created,
          sort_value_name_desc        => sort_value_name,
          sort_value_stars_asc        => sort_value_stars_desc
        }

        options.each do |key, opt|
          expect(reverse_hash).to include(key)
          expect(reverse_hash[key]).to eq(opt)
        end
      end
    end

    describe '#project_sort_direction_button' do
      # TODO: add more of these
      # TODO: Not too sure about these
      # Take a look at the ui and just go with that
      # it 'returns icon with sort-highest when sort is created_date' do
      #   expect(project_sort_direction_button('created_date')).to include('sort-highest')
      # end

      # it 'returns icon with sort-lowest when sort is asc' do
      #   expect(project_sort_direction_button('created_asc')).to include('sort-lowest')
      # end

      # it 'returns icon with sort-lowest when sorting by milestone' do
      #   expect(project_sort_direction_button('milestone')).to include('sort-lowest')
      # end

      # it 'returns icon with sort-lowest when sorting by due_date' do
      #   expect(project_sort_direction_button('due_date')).to include('sort-lowest')
      # end
    end

    describe '#projects_sort_option_titles' do
      it 'returns a hash of titles for the sorting options' do
        titles = projects_sort_option_titles

        options = {
          sort_value_latest_activity  => sort_title_latest_activity,
          sort_value_recently_created => sort_title_created_date,
          sort_value_name             => sort_title_name,
          sort_value_stars_desc       => sort_title_stars,
          sort_value_oldest_activity  => sort_title_latest_activity,
          sort_value_oldest_created   => sort_title_created_date,
          sort_value_name_desc        => sort_title_name,
          sort_value_stars_asc        => sort_title_stars
        }

        expect(titles.length).to eq(options.length)

        titles.each do |key, opt|
          expect(options).to include(key)
          expect(options[key]).to eq(opt)
        end
      end
    end

    describe 'with project_list_filter_bar off' do
      before do
        stub_feature_flags(project_list_filter_bar: false)
      end

      describe '#projects_sort_options_hash' do
        it 'returns a hash of available sorting options' do
          hash = projects_sort_options_hash
          options = project_common_options.merge({
            sort_value_oldest_activity  => sort_title_oldest_activity,
            sort_value_oldest_created   => sort_title_oldest_created,
            sort_value_recently_created => sort_title_recently_created,
            sort_value_stars_desc       => sort_title_most_stars
          })

          options.each do |key, opt|
            expect(hash).to include(key)
            expect(hash[key]).to eq(opt)
          end
        end
      end

      describe '#projects_reverse_sort_options_hash' do 
        it 'returns a reversed hash of available sorting options' do
          reverse_hash = projects_reverse_sort_options_hash

          options = {
            sort_value_latest_activity  => sort_value_oldest_activity,
            sort_value_recently_created => sort_value_oldest_created,
            sort_value_name             => sort_value_name_desc,
            sort_value_stars_desc       => sort_value_stars_asc,
            sort_value_oldest_activity  => sort_value_latest_activity,
            sort_value_oldest_created   => sort_value_recently_created,
            sort_value_name_desc        => sort_value_name,
            sort_value_stars_asc        => sort_value_stars_desc
          }

          options.each do |key, opt|
            expect(reverse_hash).to include(key)
            expect(reverse_hash[key]).to eq(opt)
          end
        end
      end

      describe '#project_sort_direction_button' do
        # TODO: these don't look correct
        # it 'returns icon with sort-highest when sort is created_date' do
        #   expect(project_sort_direction_button('created_date')).to include('sort-highest')
        # end

        # it 'returns icon with sort-lowest when sort is asc' do
        #   expect(project_sort_direction_button('created_asc')).to include('sort-lowest')
        # end

        # it 'returns icon with sort-lowest when sorting by milestone' do
        #   expect(project_sort_direction_button('milestone')).to include('sort-lowest')
        # end

        # it 'returns icon with sort-lowest when sorting by due_date' do
        #   expect(project_sort_direction_button('due_date')).to include('sort-lowest')
        # end
      end
    end
  end
end